aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/eu/siacs/conversations/ui/ConversationActivity.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* don't ask for resource when server uses http upload v0.1Daniel Gultsch2016-04-021-2/+1
|
* check max http file size when attaching filesDaniel Gultsch2016-04-011-5/+25
|
* added logging in case fragment wasn't attachedDaniel Gultsch2016-03-131-0/+5
|
* don't show opt-out of battery optimization dialog when push is enabledDaniel Gultsch2016-03-061-1/+13
|
* let users confirm each member in a conference even if that contact is ↵Daniel Gultsch2016-03-011-1/+3
| | | | already trusted
* refactored omemo to take multiple recipientsDaniel Gultsch2016-02-291-9/+12
|
* changed single_account config into more simple lock_settingsDaniel Gultsch2016-02-271-1/+1
|
* made hard coded choice for encryptions more flexible and disable parsingDaniel Gultsch2016-02-241-4/+6
|
* removed unnecessary conditions when sending read markerDaniel Gultsch2016-02-151-5/+1
|
* only show load more messages button when mam is availableDaniel Gultsch2016-02-141-0/+1
| | | | also update ui after that button has been pressed. fixes #1695
* prevent previoulsly cleared messages from reloading. fixes #1110Daniel Gultsch2016-02-041-0/+6
|
* fixed 'unencrypted' not showing up for conferences when encryption is forcedDaniel Gultsch2016-02-021-1/+1
|
* use extract account from intent method and final EXTRA_ACCOUNT variableDaniel Gultsch2016-01-221-2/+2
|
* added config variable to allow non-tls connectionsDaniel Gultsch2016-01-221-1/+1
|
* Merge pull request #1655 from adithyaphilip/pgp-fixDaniel Gultsch2016-01-161-1/+4
|\ | | | | Fixes having to choose PGP twice, upgrades openpgp-api to 10
| * fixed PGP having to be selected twiceAdithya Abraham Philip2016-01-161-1/+4
| |
* | make ConversationsActivity more resistent against being restartedDaniel Gultsch2016-01-161-3/+9
|/
* hide prepare image toasts when attaching multiple imagesDaniel Gultsch2016-01-151-11/+12
|
* fixed typo when reading battery_op settingDaniel Gultsch2016-01-141-1/+1
|
* check for file storage permission before selecting avatarDaniel Gultsch2016-01-131-15/+1
|
* ask to be excluded from battery optimizationDaniel Gultsch2016-01-111-43/+80
|
* show trust keys activties if own keys are undecidedDaniel Gultsch2016-01-041-4/+5
|
* only offer plain and omemo encryption when x509 verification is enabledDaniel Gultsch2015-12-191-2/+3
|
* splite PARANOIA_MODE into three different optionsDaniel Gultsch2015-12-141-1/+1
|
* request storage permission when needed on Android 6.0Daniel Gultsch2015-12-071-1/+55
|
* hide prepare file toast after preparing the fileDaniel Gultsch2015-12-061-0/+1
|
* be more carefull with pending urisDaniel Gultsch2015-12-051-8/+16
|
* introduced build-time paranoia mode that disables unencrypted chats and ↵Daniel Gultsch2015-12-011-0/+1
| | | | forces TOR
* fixed crashes when activity got destroyed when selecting pgp keyDaniel Gultsch2015-12-011-5/+22
|
* pgp fixes and revert configuration changesDaniel Gultsch2015-11-251-5/+16
|
* Use OpenPGP-API 9.0fiaxh2015-11-091-1/+11
|
* Decrypt PGP messages in backgroundfiaxh2015-10-281-2/+4
|
* open manage account + certificate chooser when cbe mode is enabledDaniel Gultsch2015-10-201-24/+19
|
* make unread status and notifications presistent across restartsDaniel Gultsch2015-10-141-2/+1
|
* catch IndexOutOfBoundsException when swiping away conversationsDaniel Gultsch2015-09-171-1/+5
|
* added possibiltiy to set conferences as moderated (only visible in advanced ↵Daniel Gultsch2015-09-131-1/+1
| | | | mode)
* added alt as possible modifier key. use mod+(0..9) to jump to a conversationDaniel Gultsch2015-09-091-26/+45
|
* added rotation detection to up/down navigationDaniel Gultsch2015-09-071-4/+23
|
* added some key bindingDaniel Gultsch2015-09-071-4/+82
| | | | | * ctrl + tab will open the conversations overview (when available) * ctrl + up / down will navigate between conversations
* show an send button instead of the enter key in softkeyboards when ↵Daniel Gultsch2015-09-041-0/+1
| | | | enterIsSend and showEnterKey are both set
* added setting to allow for white backgrounds in incoming message bubblesDaniel Gultsch2015-08-241-2/+9
|
* hide multi-end and otr encryption in conferencesDaniel Gultsch2015-08-061-2/+3
|
* added config.java variable to hide openpgp as an encryption methodDaniel Gultsch2015-08-051-0/+1
|
* Let UNTRUSTED/UNDECIDED keys become INACTIVEAndreas Straub2015-08-011-2/+2
|
* Refactor axolotl message processing workflowAndreas Straub2015-07-311-1/+1
| | | | | | | | | | | | | | XmppAxolotlMessage is now entirely responsible for handling encryption and decryption of messages, only leveraging XmppAxolotlSession as a packing/unpacking primitive for payload keys. Removed pseudo-dead session generation code step from prepareMessage function, as sessions have been created by invoking the TrustKeysActivity for a while now. Added prepareKeyTransportMessage function, which creates a message with no payload. The key that is packed into the header keyElements can then be used for other purposes (e.g. encrypted file transfer).
* improved 'next encryption' selectionDaniel Gultsch2015-07-311-17/+6
|
* Rerender message bubbles on encryption changeAndreas Straub2015-07-291-0/+1
|
* Refactor out inner classes, cache trust storeAndreas Straub2015-07-291-1/+1
| | | | | | | Moves SQLiteAxolotlStore and XmppAxolotlSession into proper classes. IdentityKeys trust statuses are now cached in an LruCache to prevent hammering the database when rendering the UI.
* allow for private messages being started from muc details in anonymous mucsDaniel Gultsch2015-07-211-4/+18
|
* Start TrustKeysActivity if no keys are TRUSTEDAndreas Straub2015-07-201-2/+7
| | | | | If there are no UNDECIDED keys, but none of the contact's keys are trusted, redirect the user to the TrustKeysActivity