aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/ui (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* show only file size if http upload is availableChristian Schneppe2018-11-231-1/+1
|
* remove now unused password has changed in magic modeChristian Schneppe2018-11-231-18/+1
|
* show 'show password' toggle for all magically created accountsChristian Schneppe2018-11-231-5/+7
|
* use toastcompat library to catch BadTokenExceptionChristian Schneppe2018-11-231-1/+2
|
* do not display toast if activity is finishingChristian Schneppe2018-11-231-4/+3
|
* offer to copy error message to clipboardChristian Schneppe2018-11-231-3/+9
|
* make change nick toast use showToast helper methodChristian Schneppe2018-11-231-3/+10
|
* provide option to reject subscription request when long pressing 'allow'Christian Schneppe2018-11-232-20/+23
|
* catch illegal state exception on fragment transactionChristian Schneppe2018-11-231-3/+7
|
* fixed race condition that prevented bookmark nick to be usedChristian Schneppe2018-11-231-1/+1
|
* move default port to Resolver.javaChristian Schneppe2018-11-231-8/+6
|
* added interface to edit nickChristian Schneppe2018-11-231-0/+1
|
* add suggested contacts to roster on first messageChristian Schneppe2018-11-231-4/+4
|
* always do contact sync in backgroundChristian Schneppe2018-11-231-1/+1
|
* avatar code changesChristian Schneppe2018-11-231-10/+0
|
* use inContactList() instead inRoster() in the proper placesChristian Schneppe2018-11-232-2/+2
|
* show synced contacts in choose contact activityChristian Schneppe2018-11-232-3/+2
|
* refresh contacts when opening StartConversationsActivityChristian Schneppe2018-11-231-0/+1
|
* refactored phone contact loading in preperation for syncChristian Schneppe2018-11-231-3/+4
|
* fix manual update checkChristian Schneppe2018-11-231-2/+6
|
* fix crash with xmpp urisChristian Schneppe2018-11-211-1/+6
|
* do not show up navigation when opening edit account from notificationChristian Schneppe2018-11-151-12/+8
|
* do not show up navigation in start conversation screen if called with view ↵Christian Schneppe2018-11-153-2/+18
| | | | intent
* rename variableChristian Schneppe2018-11-152-2/+2
|
* refactored some ManageAccount, WelcomeActivity and a few other thingsChristian Schneppe2018-11-158-79/+58
|
* fix some lint errorsChristian Schneppe2018-11-112-3/+5
|
* implement message deletionChristian Schneppe2018-11-111-6/+11
| | | | fixed #208
* try to fix failing backups in multiaccount modeChristian Schneppe2018-11-111-4/+4
| | | | --> you have to enable multiaccount mode again and setup a password!!!
* try to fix a crash with emojicompatChristian Schneppe2018-11-111-2/+2
|
* add missing location permissions checksChristian Schneppe2018-11-101-0/+3
|
* code cleanupChristian Schneppe2018-11-081-2/+3
|
* don't show "Show QR Code" if no account is configuredChristian Schneppe2018-11-081-0/+2
|
* start ExportLogsService correctly on devices >= OREOChristian Schneppe2018-11-081-1/+10
|
* catch exception on invalid inputsChristian Schneppe2018-11-081-4/+8
|
* separate contacts and groups shared via xmpp urisChristian Schneppe2018-11-081-1/+6
|
* Merge pull request #262 from genofire/mini-redesignChristian Schneppe2018-11-082-3/+11
|\ | | | | design message border
| * use material colorsMartin/Geno2018-11-081-1/+9
| |
| * design message borderMartin/Geno2018-11-072-2/+2
| |
* | show max file size for httpupload in profile --> server infoChristian Schneppe2018-11-081-1/+30
| |
* | improve openkeychain error reportingChristian Schneppe2018-11-081-1/+1
|/
* add missing slash to make database import working againChristian Schneppe2018-10-241-2/+2
|
* write null bitmap to imageview to replace asyncdrawableChristian Schneppe2018-10-241-3/+3
|
* code cleanup, null check not necessary when using instance ofChristian Schneppe2018-10-241-9/+10
|
* ask for permission when committing attachmentsChristian Schneppe2018-10-241-10/+22
|
* do not provide up navigation in publish account when in setup modeChristian Schneppe2018-10-242-6/+10
|
* don't use internal updater if store != nullChristian Schneppe2018-10-243-43/+33
|
* bring back animated gif view in MediaViewerChristian Schneppe2018-10-221-2/+12
|
* fix bug in UpdaterChristian Schneppe2018-10-201-8/+4
|
* refactor magic creates password gen to CryptoHelperChristian Schneppe2018-10-201-14/+2
|
* Do not insert text shared over XMPP uri when already drafting messageChristian Schneppe2018-10-204-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.