Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | introduce setting to completely disable (OMEMO) encryption | Christian Schneppe | 2019-11-02 | 1 | -0/+13 |
| | |||||
* | don’t mark pgp encrypted files received from dino as deleted | Christian Schneppe | 2019-10-26 | 1 | -0/+3 |
| | |||||
* | delete omemo keys when deleting account | Christian Schneppe | 2019-09-29 | 1 | -2/+10 |
| | |||||
* | improved logging for messages waiting for join | Christian Schneppe | 2019-09-20 | 1 | -1/+1 |
| | |||||
* | migrate to AndroidX | Christian Schneppe | 2019-09-20 | 3 | -5/+5 |
| | |||||
* | do not finish or repair sessions for untrusted senders | Christian Schneppe | 2019-09-19 | 1 | -12/+32 |
| | | | | | | | | | finishing (sending a key transport message in response to pre key message) as well as reparing sessions will leak resource and availability and might in certain situations in group chat leak the Jabber ID. Therefor we disable that. Leaking resource might not be considered harmful by a lot of people however we have always doing similar things with receipts. | ||||
* | when parsing omemo messages ensure we only find one element | Christian Schneppe | 2019-09-12 | 1 | -1/+1 |
| | |||||
* | show language in message bubble if multiple language variants were received | Christian Schneppe | 2019-09-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | XML and by inheritence XMPP has the feature of transmitting multiple language variants for the same content. This can be really useful if, for example, you are talking to an automated system. A chat bot could greet you in your own language. On the wire this will usually look like this: ```xml <message to="you"> <body>Good morning</body> <body xml:lang="de">Guten Morgen</body> </message> ``` However receiving such a message in a group chat can be very confusing and potentially dangerous if the sender puts conflicting information in there and different people get shown different strings. Disabling support for localization entirely isn’t an ideal solution as on principle it is still a good feature; and other clients might still show a localization even if Conversations would always show the default language. So instead we now show the displayed language in a corner of the message bubble if more than one translation has been received. If multiple languages are received we will attempt to find one in the language the operating system is set to. If no such translation can be found it will attempt to display the English string. If English can not be found either (for example a message that only has ru and fr on a phone that is set to de) it will display what ever language came first. Furthermore we will discard (not show at all) messages with with multiple bodies of the same language. (This is considered an invalid message) The language tag will not be shown if we receive a single body in a language not understood by the user. (For example operating system set to 'de' and message received with one body in 'ru' will just display that body as usual.) As a guide line to the user: If you are reading a message where it is important that this message is not interpreted differently by different people (like a vote (+1 / -1) in a chat room) make sure it has *no* language tag. | ||||
* | fix some crashes | Christian Schneppe | 2019-09-03 | 5 | -10/+51 |
| | |||||
* | made domain verifier case insensitive. | Christian Schneppe | 2019-08-31 | 1 | -9/+10 |
| | |||||
* | attempt to unregister when receiving push for channel no longer joined | Christian Schneppe | 2019-07-01 | 1 | -5/+5 |
| | | | | when receiving a FCM push message for a channel the user is no longer in (this can happen when the disable command failed) an attempt will be made to explicitly unregister from the app server (which in turn will then send item-not-found on next push) | ||||
* | introduced type private_file_message to handle attachments in PMs | Christian Schneppe | 2019-05-03 | 1 | -1/+1 |
| | |||||
* | be sure that default omemo encryption is set off | Christian Schneppe | 2019-02-21 | 1 | -3/+3 |
| | |||||
* | optimize imports | Christian Schneppe | 2019-02-08 | 2 | -2/+0 |
| | |||||
* | hide lock icon in channels; modify muc user context | Christian Schneppe | 2019-02-08 | 1 | -34/+0 |
| | |||||
* | explicitly set type=images for all media with an image mime type this is in ↵ | Christian Schneppe | 2019-01-25 | 1 | -1/+1 |
| | | | | preperation to be able to query the database for all images | ||||
* | check if encrypted pgp file get deleted | Christian Schneppe | 2019-01-25 | 1 | -1/+1 |
| | |||||
* | mark deleted files in database and not query them when querying for media | Christian Schneppe | 2019-01-25 | 1 | -1/+3 |
| | |||||
* | put images into MessageStyle notifications | Christian Schneppe | 2019-01-24 | 1 | -2/+6 |
| | |||||
* | handle decrypting/encrypting of omemo messages with duplicate device ids | Christian Schneppe | 2019-01-07 | 2 | -43/+77 |
| | |||||
* | fixed dead lock when sending pgp messages from quick reply | Christian Schneppe | 2018-12-14 | 1 | -1/+1 |
| | |||||
* | postpone prekey removal and republish to after mam | Christian Schneppe | 2018-12-14 | 2 | -10/+34 |
| | |||||
* | implement self healing omemo | Christian Schneppe | 2018-12-04 | 4 | -14/+105 |
| | | | | | | 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. | ||||
* | set access model to open when publishing avatar | Christian Schneppe | 2018-11-30 | 1 | -10/+9 |
| | |||||
* | do not show up navigation in start conversation screen if called with view ↵ | Christian Schneppe | 2018-11-15 | 1 | -3/+7 |
| | | | | intent | ||||
* | improve openkeychain error reporting | Christian Schneppe | 2018-11-08 | 1 | -4/+14 |
| | |||||
* | use bouncycastle provider up to api 27 | Christian Schneppe | 2018-10-20 | 1 | -2/+2 |
| | | | | | | | apparently using conscrypt on Android below version 7? throws an exception when using 16 byte IVs. so we now use BC when ever possible (excluding api 28) we don’t know why Conscrypt behaves differently on various android versions | ||||
* | go back to 16 byte IVs for OMEMO | Christian Schneppe | 2018-10-20 | 2 | -13/+13 |
| | | | | clients like Dino can’t handle 12 byte IVs | ||||
* | added a few TODOs in regards to the handling of inactive devices | Christian Schneppe | 2018-10-04 | 2 | -2/+4 |
| | |||||
* | prevent race condition when fetching device ids | Christian Schneppe | 2018-10-04 | 2 | -43/+47 |
| | |||||
* | use 12 byte IV for omemo and http upload | Christian Schneppe | 2018-10-04 | 1 | -1/+1 |
| | |||||
* | refresh ui after device list update only if list has changed | Christian Schneppe | 2018-10-04 | 1 | -2/+11 |
| | |||||
* | made xmpp domain verifier verify wildcard domains where domain is a sub.sub ↵ | Christian Schneppe | 2018-10-02 | 1 | -58/+65 |
| | | | | domain | ||||
* | fixed auth | Christian Schneppe | 2018-10-01 | 1 | -8/+8 |
| | |||||
* | Fix auth when upgrading from SCRAM-SHA-1 to -256 | Christian Schneppe | 2018-10-01 | 1 | -52/+52 |
| | |||||
* | do not use BC provider on android 22+ | Christian Schneppe | 2018-09-26 | 1 | -2/+3 |
| | |||||
* | open trust key screen when download is in progress | Christian Schneppe | 2018-07-09 | 1 | -1/+1 |
| | |||||
* | do not include white listed domains in room list | Christian Schneppe | 2018-06-29 | 1 | -1/+1 |
| | |||||
* | OMEMO: remove omemo device from own list if bundle is broken | Christian Schneppe | 2018-06-01 | 1 | -70/+80 |
| | |||||
* | do not include body in simple status updates to not trigger fts update | Christian Schneppe | 2018-05-17 | 1 | -1/+1 |
| | |||||
* | make session completion work with untrusted devices as well | Christian Schneppe | 2018-05-16 | 3 | -7/+11 |
| | |||||
* | improved logging for node configuration change | Christian Schneppe | 2018-05-05 | 1 | -4/+9 |
| | |||||
* | do not invoke onPushFailed() on timeout | Christian Schneppe | 2018-05-02 | 1 | -4/+9 |
| | |||||
* | very much unoptimized search functionality | Christian Schneppe | 2018-04-30 | 2 | -2/+2 |
| | |||||
* | code cleanup in AxolotlService.fetchDeviceIds() | Christian Schneppe | 2018-04-24 | 1 | -25/+29 |
| | |||||
* | load currently open conversation faster | Christian Schneppe | 2018-04-24 | 1 | -1/+0 |
| | |||||
* | make error message for 'not encrypted for this device' | Christian Schneppe | 2018-04-23 | 1 | -2/+9 |
| | |||||
* | create dedicated exception for not encrypted for this device | Christian Schneppe | 2018-04-23 | 2 | -1/+36 |
| | |||||
* | introduced tri state omemo setting (off by default, on by default, always) | Christian Schneppe | 2018-04-13 | 1 | -0/+74 |
| | |||||
* | figure out fallbacks with omemo source id | Christian Schneppe | 2018-04-12 | 2 | -0/+29 |
| |