aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/eu/siacs/conversations/entities (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Use OpenPGP-API 9.0fiaxh2015-11-091-2/+36
|
* explicitly mark verified omemo keys in UIDaniel Gultsch2015-10-311-2/+2
|
* Merge pull request #1513 from fiaxh/pgp_background_decryptionDaniel Gultsch2015-10-302-0/+8
|\ | | | | PGP messages background decryption
| * Decrypt PGP messages in backgroundfiaxh2015-10-282-0/+8
| |
* | push CN into nick pep node when uploading certificate. subscribe to nick nodeDaniel Gultsch2015-10-291-3/+16
|/
* Don't synchronize on non-final fieldSam Whited2015-10-261-1/+1
|
* fixed read conversations showing up as notifications after a restartDaniel Gultsch2015-10-211-5/+4
|
* introduced code to verify omemo device keys with x509 certificates.Daniel Gultsch2015-10-161-0/+3
| | | | cleaned up TrustKeysActivity to automatically close if there is nothing to do
* make unread status and notifications presistent across restartsDaniel Gultsch2015-10-142-14/+30
|
* initial UI work to allow setting up accounts from certifcatesDaniel Gultsch2015-10-091-6/+10
|
* Show whether MAM is supported in MUCssaqura2015-10-061-0/+5
| | | | | The conference details in "Advanced Mode" now indicate whether MAM is supported by the conference server.
* fixed NPE when executing rename callback in mucDaniel Gultsch2015-09-281-1/+3
|
* added missing type='submit' to mam queriesDaniel Gultsch2015-09-152-9/+5
| | | | | fixed some nasty inheritance problems along the way fixes #1411
* added possibiltiy to set conferences as moderated (only visible in advanced ↵Daniel Gultsch2015-09-131-6/+20
| | | | mode)
* added mp4 to well known extensions. fixes #1403Daniel Gultsch2015-09-121-1/+1
|
* Issues with URLs with multiple dots in file. fixes #1373Daniel Gultsch2015-09-041-7/+15
|
* added special error state for dns timeoutDaniel Gultsch2015-09-011-1/+4
|
* fixed bug that prevented newly opened conversations to load the entire ↵Daniel Gultsch2015-08-301-0/+4
| | | | history via mam. fixes #1328
* be more restrictive about marking messages as sent_received in muc parserDaniel Gultsch2015-08-261-5/+16
|
* bugfix: next encryption is now being properly detectedDaniel Gultsch2015-08-231-2/+2
|
* Let UNTRUSTED/UNDECIDED keys become INACTIVEAndreas Straub2015-08-011-2/+2
|
* enable axolotl encryption for jingle supported file transfersDaniel Gultsch2015-08-011-17/+17
|
* improved 'next encryption' selectionDaniel Gultsch2015-07-312-28/+37
|
* Fix session logic: enforce same type of encryptionAndreas Straub2015-07-301-0/+31
|
* use gcm for file encryption over httpDaniel Gultsch2015-07-291-89/+8
|
* Tag carbon messages in parser, adapt session logicAndreas Straub2015-07-291-3/+21
| | | | | | Messages sent from another device of the own account are now explicitly tagged as carboned message. The session detection logic now uses this tag to find "session borders".
* Refactor out inner classes, cache trust storeAndreas Straub2015-07-291-2/+2
| | | | | | | 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.
* removed recursion in message.getMerged*()Daniel Gultsch2015-07-281-13/+19
|
* show warning when trying to highlight users that have left the conferenceDaniel Gultsch2015-07-221-0/+9
|
* treat private, non-anonymous mucs like 1:1 chats notification wiseDaniel Gultsch2015-07-221-0/+7
|
* Optimize importsAndreas Straub2015-07-203-10/+4
|
* Don't merge messages with different trust statusesAndreas Straub2015-07-191-1/+7
|
* Show trust status of messages' originating sessionAndreas Straub2015-07-191-0/+4
| | | | | Shade lock icon red if message was received in a session that has not been marked trusted by the user or fingerprint is unknown
* Overhauled Message taggingAndreas Straub2015-07-191-9/+10
| | | | | | Messages are now tagged with the IdentityKey fingerprint of the originating session. IdentityKeys have one of three trust states: undecided (default), trusted, and untrusted/not yet trusted.
* Fix displaying Contact IdentityKeysAndreas Straub2015-07-191-64/+0
| | | | | Migrate ContactDetailsActivity to use new SQL IdentityKeys storage, remove dead code from Contact class.
* Tag messages with originating sessionAndreas Straub2015-07-191-0/+4
| | | | | This can be used later in order to display trust status of messages, as well as for potential resending of messages in case of preKey conflicts.
* Fetch bundles on-demand, encrypt in backgroundAndreas Straub2015-07-191-3/+3
| | | | | | | | | | | Bundles are now fetched on demand when a session needs to be established. This should lessen the chance of changes to the bundles occuring before they're used, as well as lessen the load of fetching bundles. Also, the message encryption is now done in a background thread, as this can be somewhat costly if many sessions are present. This is probably not going to be an issue in real use, but it's good practice anyway.
* Reformat code to use tabsAndreas Straub2015-07-191-10/+10
| | | | This really sucks to do it like this. Sorry. :(
* Reworked axolotl protocol layerAndreas Straub2015-07-193-29/+54
| | | | Numerous fixes
* CryptoNext persistance layer mockupAndreas Straub2015-07-193-64/+135
| | | | | Initial sketch of the peripheral storage infrastructure for the new axolotl-based encryption scheme.
* account for downloaded http files in dup checkerDaniel Gultsch2015-07-181-8/+18
|
* renamed downloadable to transferableDaniel Gultsch2015-07-103-15/+15
|
* refactored sendMessage and merged with resendMessageDaniel Gultsch2015-07-051-0/+20
|
* avoid very rare npeDaniel Gultsch2015-07-031-0/+3
|
* also offer http download for some 'well known extensions'Daniel Gultsch2015-07-022-1/+4
|
* refactored message context menuDaniel Gultsch2015-07-021-1/+1
|
* changed mime type handlingDaniel Gultsch2015-07-012-39/+63
|
* made httpconnection (download) ready all kind of filesDaniel Gultsch2015-06-301-53/+55
|
* refactored bodyContainsDownloadable to be more flexibleDaniel Gultsch2015-06-301-33/+35
|
* show attach button in conferences when http upload is availableDaniel Gultsch2015-06-291-0/+4
|