Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | show overlay to set avatar at the right bottom corner | Christian Schneppe | 2019-11-10 | 1 | -2/+14 |
| | |||||
* | use variable for app directory in FileBackend | Christian Schneppe | 2019-11-06 | 1 | -6/+7 |
| | |||||
* | catch all exceptions when closing closable | Christian Schneppe | 2019-10-26 | 1 | -1/+4 |
| | |||||
* | show resource prompt when sending uncompressed video | Christian Schneppe | 2019-09-29 | 1 | -1/+3 |
| | |||||
* | added overlay to avatar in EditAccountActivity | Christian Schneppe | 2019-09-20 | 1 | -3/+30 |
| | | | | in addition to #390 | ||||
* | migrate to AndroidX | Christian Schneppe | 2019-09-20 | 1 | -2/+2 |
| | |||||
* | keep track of previously edited ids | Christian Schneppe | 2019-09-13 | 1 | -3/+0 |
| | |||||
* | show language in message bubble if multiple language variants were received | Christian Schneppe | 2019-09-12 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | 2 | -9/+23 |
| | |||||
* | bare minimum direct connections | Christian Schneppe | 2019-09-03 | 1 | -0/+9 |
| | |||||
* | use helper method to close socket | Christian Schneppe | 2019-07-17 | 1 | -2/+2 |
| | |||||
* | code cleanup & small fixes | Christian Schneppe | 2019-07-01 | 3 | -14/+14 |
| | |||||
* | Revert "Networkstack - let OS decide IPv4 or IPv6 (#267)" | Christian Schneppe | 2019-06-25 | 1 | -2/+54 |
| | | | | | | This reverts commit e6a15597904019f68c02e6fd8f61fb6de0b13324. If there is IPv6 available but the server doesn't listen to it, the connection will not be established | ||||
* | performance improvement of message expiry | Christian Schneppe | 2019-06-22 | 1 | -3/+45 |
| | |||||
* | fix some NPE | Christian Schneppe | 2019-06-17 | 1 | -1/+6 |
| | |||||
* | Networkstack - let OS decide IPv4 or IPv6 (#267) | genofire | 2019-06-08 | 1 | -45/+1 |
| | | | | | | | | * Networkstack - let OS decide IPv4 or IPv6 * Drop own implementation of DNS-Server selection * remove dns resolver cache | ||||
* | fix some more NPE | Christian Schneppe | 2019-06-08 | 1 | -6/+6 |
| | |||||
* | separate received and sent files | Christian Schneppe | 2019-05-19 | 1 | -7/+40 |
| | | | | fixes #140 | ||||
* | performance improvements | Christian Schneppe | 2019-05-18 | 2 | -5/+12 |
| | |||||
* | go forward through cursor in message restore | Christian Schneppe | 2019-05-04 | 1 | -7/+8 |
| | | | | | We have seen some weird CursorIndexNotFoundException that we were unable to reproduce. We assume that going forward (moveToNext()) through the cursor instead of (moveToPrevious() fixes that issue | ||||
* | introduced type private_file_message to handle attachments in PMs | Christian Schneppe | 2019-05-03 | 2 | -10/+11 |
| | |||||
* | fix backup creation for older installations | Christian Schneppe | 2019-03-14 | 1 | -3/+2 |
| | | | | If you had problems importing the backup you need to create a new backup after this patch | ||||
* | fixed security exception when attempting to display image in notification | Christian Schneppe | 2019-03-06 | 1 | -5/+10 |
| | |||||
* | only show images and videos in media browser | Christian Schneppe | 2019-03-06 | 1 | -1/+3 |
| | |||||
* | fix some more NPEs | Christian Schneppe | 2019-02-18 | 1 | -1/+9 |
| | |||||
* | optimize imports | Christian Schneppe | 2019-02-08 | 1 | -1/+0 |
| | |||||
* | scan all files in case some files were previously marked as deleted by accident | Christian Schneppe | 2019-01-27 | 1 | -4/+32 |
| | |||||
* | fix compatibility issue on startup | Christian Schneppe | 2019-01-26 | 1 | -1/+17 |
| | |||||
* | make new backup and restore possible with old databases | Christian Schneppe | 2019-01-26 | 1 | -1/+6 |
| | |||||
* | rework backup & restore | Christian Schneppe | 2019-01-26 | 1 | -2/+2 |
| | | | | use the implementation from Conversations | ||||
* | null checks when deleting old files | Christian Schneppe | 2019-01-25 | 1 | -2/+2 |
| | |||||
* | explicitly set type=images for all media with an image mime type this is in ↵ | Christian Schneppe | 2019-01-25 | 1 | -15/+6 |
| | | | | preperation to be able to query the database for all images | ||||
* | check if encrypted pgp file get deleted | Christian Schneppe | 2019-01-25 | 1 | -10/+19 |
| | |||||
* | fix display of deleted files | Christian Schneppe | 2019-01-25 | 1 | -1/+1 |
| | |||||
* | don’t check if files exists when loading attachments | Christian Schneppe | 2019-01-25 | 1 | -7/+2 |
| | |||||
* | mark deleted files in database and not query them when querying for media | Christian Schneppe | 2019-01-25 | 2 | -2/+79 |
| | |||||
* | put images into MessageStyle notifications | Christian Schneppe | 2019-01-24 | 1 | -2/+45 |
| | |||||
* | introduced 'original' as video and image quality and do not ignorer error | Christian Schneppe | 2019-01-03 | 1 | -2/+5 |
| | |||||
* | added epub and azw mime types. try to resolve application/octet-stream by ↵ | Christian Schneppe | 2018-12-27 | 1 | -1/+1 |
| | | | | file extension instead. added preview icons for ebooks | ||||
* | limit video transcoding to api >= 18 and other api 16 fixes | Christian Schneppe | 2018-12-14 | 1 | -1/+8 |
| | |||||
* | postpone prekey removal and republish to after mam | Christian Schneppe | 2018-12-14 | 1 | -2/+2 |
| | |||||
* | implement self healing omemo | Christian Schneppe | 2018-12-04 | 1 | -1/+1 |
| | | | | | | 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. | ||||
* | fix apk name detection | Christian Schneppe | 2018-11-30 | 1 | -4/+5 |
| | |||||
* | catch npe while detecting apk names | Christian Schneppe | 2018-11-30 | 1 | -7/+12 |
| | |||||
* | catch cursor window allocation exception | Christian Schneppe | 2018-11-23 | 1 | -4/+10 |
| | |||||
* | refresh synced contacts even if offline | Christian Schneppe | 2018-11-23 | 1 | -1/+1 |
| | |||||
* | also respect deleted messages in readable logs | Christian Schneppe | 2018-11-11 | 1 | -2/+2 |
| | |||||
* | implement message deletion | Christian Schneppe | 2018-11-11 | 1 | -15/+17 |
| | | | | fixed #208 | ||||
* | write null bitmap to imageview to replace asyncdrawable | Christian Schneppe | 2018-10-24 | 1 | -1/+1 |
| | |||||
* | Do not attempt to draw overlay on null bitmap | Christian Schneppe | 2018-10-20 | 2 | -2/+3 |
| |