aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-11-21fix crash with xmpp urisChristian Schneppe1-1/+6
2018-11-15do not show up navigation when opening edit account from notificationChristian Schneppe2-13/+10
2018-11-15do not show up navigation in start conversation screen if called with view ↵Christian Schneppe8-10/+42
intent
2018-11-15rename variableChristian Schneppe2-2/+2
2018-11-15refactored some ManageAccount, WelcomeActivity and a few other thingsChristian Schneppe14-107/+179
2018-11-11fix some lint errorsChristian Schneppe3-4/+6
2018-11-11also respect deleted messages in readable logsChristian Schneppe1-2/+2
2018-11-11implement message deletionChristian Schneppe5-24/+56
fixed #208
2018-11-11try to fix failing backups in multiaccount modeChristian Schneppe2-5/+5
--> you have to enable multiaccount mode again and setup a password!!!
2018-11-11try to fix a crash with emojicompatChristian Schneppe1-2/+2
2018-11-10add missing location permissions checksChristian Schneppe1-0/+3
2018-11-08code cleanupChristian Schneppe1-2/+3
2018-11-08don't show "Show QR Code" if no account is configuredChristian Schneppe1-0/+2
2018-11-08start ExportLogsService correctly on devices >= OREOChristian Schneppe2-3/+21
2018-11-08catch exception on invalid inputsChristian Schneppe1-4/+8
2018-11-08separate contacts and groups shared via xmpp urisChristian Schneppe1-1/+6
2018-11-08NotificationService: open chatlist if there were multiple notificationsChristian Schneppe1-1/+1
2018-11-08show max file size for httpupload in profile --> server infoChristian Schneppe2-2/+31
2018-11-08use material colorsMartin/Geno1-1/+9
2018-11-08improve openkeychain error reportingChristian Schneppe2-5/+15
2018-11-08refined nick matching patter. word boundry (\b) doesn’t match on words ↵Christian Schneppe1-1/+1
ending in a boundry
2018-11-07design message borderMartin/Geno2-2/+2
2018-10-24add missing slash to make database import working againChristian Schneppe1-2/+2
2018-10-24write null bitmap to imageview to replace asyncdrawableChristian Schneppe2-4/+4
2018-10-24code cleanup, null check not necessary when using instance ofChristian Schneppe1-9/+10
2018-10-24ask for permission when committing attachmentsChristian Schneppe1-10/+22
2018-10-24do not provide up navigation in publish account when in setup modeChristian Schneppe2-6/+10
2018-10-24play short vibrate while your are inside the chatChristian Schneppe1-0/+1
2018-10-24try to catch a NPE on iterator.removeChristian Schneppe1-3/+7
2018-10-24reformat XmppConnection.javaChristian Schneppe1-37/+30
2018-10-24don't use internal updater if store != nullChristian Schneppe4-51/+40
2018-10-24don't use compression for HttpDownloadsChristian Schneppe1-0/+2
2018-10-22bring back animated gif view in MediaViewerChristian Schneppe1-2/+12
2018-10-20fix bug in UpdaterChristian Schneppe1-8/+4
2018-10-20fix some build errorsChristian Schneppe1-1/+3
2018-10-20refactor magic creates password gen to CryptoHelperChristian Schneppe2-19/+15
2018-10-20Do not insert text shared over XMPP uri when already drafting messageChristian Schneppe4-15/+35
XMPP uris in the style of `xmpp:test@domain.tld?body=Something` can be used to directly share a message with a specific contact. Previously the text was always appended to the message currently in draft. The message was never send automatically. Essentially those links where treated like normal text share intents (for example when sharing a URL from the browser) but without the contact selection. There is a concern (CVE-2018-18467) that when this URI is invoked automatically and the user is currently drafting a long message to that particular contact the text could be inserted in the draft field (input box) without the user noticing. To circumvent that the text shared over XMPP uris that contain a particular contact is now appended only if the draft box is currently empty. Sharing text normally (**with** manual contact selection) is still treated the same; meaning the shared text will be appended to the current draft. This is intended behaviour to make the 'Hey I have this cool link here;' *open browser*, *share link* - secenario work.
2018-10-20removed unused paramater 'newTask' from switchToConversation apiChristian Schneppe3-30/+12
2018-10-20revert back to 16 byte IVs for omemo since ChatSecure doesn't support 12 byteChristian Schneppe1-1/+1
2018-10-20only store non hardcoded resolver result in dbChristian Schneppe1-1/+1
2018-10-20fixed NPE after attempt to store user@ip style jid resolver resultChristian Schneppe1-2/+3
2018-10-20fixed cache cleaning cleaning all confercenes instead of where contact isChristian Schneppe1-2/+1
2018-10-20do not show 'open website' button after info has changedChristian Schneppe1-3/+4
2018-10-20use bouncycastle provider up to api 27Christian Schneppe3-6/+6
apparently using conscrypt on Android below version 7? throws an exception when using 16 byte IVs. so we now use BC when ever possible (excluding api 28) we don’t know why Conscrypt behaves differently on various android versions
2018-10-20offer either 'cancel download' or 'delete file' but not bothChristian Schneppe1-3/+4
2018-10-20Lower foreground service notification priorityChristian Schneppe1-1/+1
2018-10-20make 'cancelled' work for jingle ftChristian Schneppe4-18/+24
2018-10-20show snackbar for remote server timeout in mucsChristian Schneppe3-0/+10
2018-10-20show cancelled instead of delivery failed if user requested to abort transferChristian Schneppe3-7/+11
2018-10-20Do not attempt to draw overlay on null bitmapChristian Schneppe2-2/+3