aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/eu/siacs/conversations/ui/ConversationActivity.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* open market if share location plugin isn't installedDaniel Gultsch2015-05-041-0/+15
|
* replace send button with quick action button as long as no text has been enteredDaniel Gultsch2015-05-021-6/+17
|
* made material icons smaller (24dp)Daniel Gultsch2015-04-281-1/+1
|
* revert undo timeout to a more reasonable valueDaniel Gultsch2015-04-281-1/+1
|
* handle returning from camera without pictureDaniel Gultsch2015-04-271-0/+3
|
* some code clean up to fix some rare NPE’sDaniel Gultsch2015-04-191-4/+4
|
* increased undo delayiNPUTmice2015-04-171-1/+1
|
* shut up linteriNPUTmice2015-04-131-0/+1
|
* allow sharing multiple images at once. fixes #1090iNPUTmice2015-04-111-40/+69
|
* Enable end-conversation by swipe gestureBrianBlade2015-04-081-9/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add EnhancedListView library de.timroes.android:EnhancedListView:0.3.4 to enable swipe-out for ListViews Re-enable selectableItemBackground Dont end selectedConversation on swipe Call mConversationFragment.reinit() instead. Add separate undo string for swipe MUC. Add blacklistedConversation for undo swipe Update title_undo_swipe_* strings Fix undo(), rename blacklistedConversation Fix discardUndo(); re-init selectedConversation maintain scroll position after undo clear notification when dismissing a conversation modified / simplified maintain scroll position code simplify handling of selectedConversation change undo_muc string, remove notifyDataSetChanged()
* display geo uris as location. show 'send loction' in share menu if request ↵iNPUTmice2015-03-071-47/+91
| | | | location intent can be resolved
* init mode (first start) for StartConversationActivity (no up button) and ↵iNPUTmice2015-02-221-8/+26
| | | | avoid being started multiple times. fixed #995
* launch edit account activity when starting Conversations for the first time ↵iNPUTmice2015-02-191-5/+9
| | | | (fixed regression)
* limit ui refresh rateiNPUTmice2015-02-171-33/+16
|
* refresh list view more ofteniNPUTmice2015-02-171-1/+1
|
* use time instead of uptime for unmuteiNPUTmice2015-02-121-3/+1
|
* Merge branch 'development' of https://github.com/siacs/Conversations into ↵iNPUTmice2015-01-291-2/+7
|\ | | | | | | development
| * Use Material Design Icons on API 21+Sam Whited2015-01-291-2/+7
| |
* | properly clear notifications. fixed #921iNPUTmice2015-01-291-2/+8
|/
* always allow access to contact details. provide add button in contact detailsiNPUTmice2015-01-211-21/+1
|
* Add block/unblock to contact details menuSam Whited2015-01-211-4/+0
| | | | See #889
* Add download button on notification if applicableSam Whited2015-01-161-6/+14
|
* sending read marker when resuming activity and conversation is openiNPUTmice2015-01-151-1/+4
|