aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/ui/ConversationFragment.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* show file too large instead of generic delivery failedChristian Schneppe2019-02-211-2/+10
|
* Deduplicate presencesChristian Schneppe2019-02-211-1/+1
| | | | possibly fixes #303
* improve RichPreviewChristian Schneppe2019-02-201-86/+0
|
* show MediaBrowser icon in chat viewChristian Schneppe2019-02-091-0/+7
|
* optimize importsChristian Schneppe2019-02-081-2/+0
|
* hide lock icon in channels; modify muc user contextChristian Schneppe2019-02-081-22/+15
|
* allow corrections in all mucsChristian Schneppe2019-02-071-2/+1
|
* provide the same fab submenu for both tabs. rename tab to bookmarkChristian Schneppe2019-02-071-1/+1
|
* fixed context menu on self contactChristian Schneppe2019-02-041-1/+1
|
* add ability to delete last sent message also on remote devicesChristian Schneppe2019-01-271-1/+24
| | | | if message correction is supported and available
* show context menu when long pressing own account pictureChristian Schneppe2019-01-271-18/+28
|
* add context menu for muc user adapterChristian Schneppe2019-01-271-1/+1
|
* rework backup & restoreChristian Schneppe2019-01-261-27/+3
| | | | use the implementation from Conversations
* extend open with to audio filesChristian Schneppe2019-01-251-1/+6
|
* check if we have storage permission before marking a file as deleted on resendChristian Schneppe2019-01-251-3/+6
|
* offer 'open with' in context menu for geo urisChristian Schneppe2019-01-251-0/+15
|
* check if encrypted pgp file get deletedChristian Schneppe2019-01-251-1/+1
|
* fix display of deleted filesChristian Schneppe2019-01-251-3/+3
|
* fixed downloading of deleted filesChristian Schneppe2019-01-251-1/+1
|
* mark deleted files in database and not query them when querying for mediaChristian Schneppe2019-01-251-3/+6
|
* try to fix faulty chooser intentChristian Schneppe2019-01-071-7/+5
|
* clear conversationsuuid and pending attachments when opening new conversationChristian Schneppe2019-01-031-0/+6
|
* fixed some rare crashes caused by race conditionsChristian Schneppe2018-12-271-1/+1
|
* limit video transcoding to api >= 18 and other api 16 fixesChristian Schneppe2018-12-141-1/+3
|
* show warning snackbar before joining anon-non-private roomChristian Schneppe2018-12-141-0/+16
|
* fixed some rare NPE caused by race for saveInstanceState()Christian Schneppe2018-12-141-2/+2
|
* show context menu when long clicking avatar in 1:1Christian Schneppe2018-12-041-55/+86
|
* implement self healing omemoChristian Schneppe2018-12-041-1/+1
| | | | | | after receiving a SignalMessage that can’t be decrypted because of broken sessions Conversations will attempt to grab a new pre key bundle and send a new PreKeySignalMessage wrapped in a key transport message.
* make sure that conversation is 1:1 before offering to select presence on ↵Christian Schneppe2018-11-301-0/+1
| | | | file resend
* offer to copy error message to clipboardChristian Schneppe2018-11-231-3/+9
|
* provide option to reject subscription request when long pressing 'allow'Christian Schneppe2018-11-231-19/+22
|
* implement message deletionChristian Schneppe2018-11-111-6/+11
| | | | fixed #208
* Merge pull request #262 from genofire/mini-redesignChristian Schneppe2018-11-081-1/+1
|\ | | | | design message border
| * design message borderMartin/Geno2018-11-071-1/+1
| |
* | improve openkeychain error reportingChristian Schneppe2018-11-081-1/+1
|/
* ask for permission when committing attachmentsChristian Schneppe2018-10-241-10/+22
|
* Do not insert text shared over XMPP uri when already drafting messageChristian Schneppe2018-10-201-3/+10
| | | | | | | | | | | | | | | | | | | | | | | 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.
* offer either 'cancel download' or 'delete file' but not bothChristian Schneppe2018-10-201-3/+4
|
* make 'cancelled' work for jingle ftChristian Schneppe2018-10-201-3/+3
|
* show snackbar for remote server timeout in mucsChristian Schneppe2018-10-201-0/+7
|
* add confirmation dialog for deleting filesChristian Schneppe2018-10-201-7/+14
|
* Do weOwnFile security check only when attachingChristian Schneppe2018-10-041-1/+14
| | | | The general security check is recommend so a third party can not ask us to send an internal file. But we don’t need to do this for files we attach ourself from within the app
* use fab.hide() and fab.show() - this will animate the processChristian Schneppe2018-10-041-2/+2
|
* run through sendMessage() procedure instead of taking shortcut after ↵Christian Schneppe2018-10-041-9/+6
| | | | | | returning from TrustKeys The shortcut didn't take care of message edits and some other things
* remove unused SimpleFingerGestures_Android_LibraryChristian Schneppe2018-10-031-44/+0
|
* rework MediaViewerActivityChristian Schneppe2018-10-031-1/+1
|
* hide icons for muc/contact details in phone mode and only show them in ↵Christian Schneppe2018-10-021-3/+11
| | | | tablet mode
* store avatars received over muc presence in contactChristian Schneppe2018-09-271-1/+1
|
* fixed text sharing in direct sharingChristian Schneppe2018-09-271-1/+1
|
* check omemo keys when attachments are commit instead of beforeChristian Schneppe2018-09-261-12/+7
|