aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/eu/siacs/conversations/ui/ConversationActivity.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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 ↵show_send_button_in_softkeyboardDaniel 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
* rely on refreshUi/refreshUiReal and make sure it is being used everywhereDaniel Gultsch2015-07-201-6/+1
|
* Optimize importsAndreas Straub2015-07-201-1/+1
|
* Ask for key trust when sending messagesAndreas Straub2015-07-191-11/+45
| | | | | | If the contact (or the own account) has keys that have UNDECIDED trust, we now drop the user into the new TrustKeysActivity, where they have to decide for each new key whether it should be TRUSTED or UNTRUSTED.
* Disable Axolotl option if not usableAndreas Straub2015-07-191-10/+10
| | | | | In MUCs or if contact is not axolotl capable, disable axolotl menu option
* Reformat code to use tabsAndreas Straub2015-07-191-5/+5
| | | | This really sucks to do it like this. Sorry. :(
* Added axolotl activation code to UIAndreas Straub2015-07-191-0/+18
|
* fixed some npesDaniel Gultsch2015-07-161-4/+11
|
* made lock button reflect encryption status of the next messages instead of ↵Daniel Gultsch2015-07-121-16/+10
| | | | the last
* display toast in ui on failed http downloadDaniel Gultsch2015-07-101-1/+12
| | | | fixes #954
* show attach button in conferences when http upload is availableDaniel Gultsch2015-06-291-4/+7
|
* added choose picture as another quick action. fixes #1221Daniel Gultsch2015-05-261-0/+3
|
* fixed with attaching wrong files when returning to activity and background ↵Daniel Gultsch2015-05-211-1/+1
| | | | service is still alive
* added fall back package id for voice recorder pluginDaniel Gultsch2015-05-201-0/+1
|
* handle conference invites differently to deal with killed activities. fixes ↵Daniel Gultsch2015-05-121-0/+6
| | | | #1188
* don't reinit conversation when coming back to activity. avoids unnecessary ↵Daniel Gultsch2015-05-121-3/+1
| | | | scrolling
* clean up in attachment chooser code. fixed #1168Daniel Gultsch2015-05-041-51/+51
|