Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | attempt to fix some rare crashes | Christian Schneppe | 2019-10-26 | 1 | -1/+1 |
| | |||||
* | update ui after bookmark change | Christian Schneppe | 2019-10-26 | 1 | -2/+3 |
| | |||||
* | bookmarks2. introduce #compat namespace | Christian Schneppe | 2019-10-26 | 1 | -2/+2 |
| | |||||
* | Bookmarks2: support retraction | Christian Schneppe | 2019-10-26 | 2 | -30/+46 |
| | |||||
* | WIP Bookmarks 2 support | Christian Schneppe | 2019-10-26 | 1 | -7/+70 |
| | |||||
* | LMC: find replacedMessages based on bare JID | Christian Schneppe | 2019-10-26 | 1 | -3/+6 |
| | |||||
* | mark cancelled jingle ft as such on both sides | Christian Schneppe | 2019-10-26 | 1 | -1/+2 |
| | |||||
* | migrate to AndroidX | Christian Schneppe | 2019-09-20 | 6 | -9/+9 |
| | |||||
* | parse LMC 1.1 | Christian Schneppe | 2019-09-13 | 2 | -2/+20 |
| | |||||
* | keep track of previously edited ids | Christian Schneppe | 2019-09-13 | 2 | -13/+103 |
| | |||||
* | show language in message bubble if multiple language variants were received | Christian Schneppe | 2019-09-12 | 2 | -6/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | introduce new file transfer status | Christian Schneppe | 2019-09-09 | 1 | -0/+1 |
| | |||||
* | fix some crashes | Christian Schneppe | 2019-09-03 | 2 | -4/+12 |
| | |||||
* | do not put default nick into bookmark if none has been set before | Christian Schneppe | 2019-08-31 | 1 | -6/+10 |
| | |||||
* | create empty disco result on error to fire advance stream features event | Christian Schneppe | 2019-08-31 | 1 | -0/+12 |
| | |||||
* | resetToWaiting should include http uploaded files | Christian Schneppe | 2019-08-31 | 1 | -1/+1 |
| | |||||
* | handle blocking and unblocking of full jids | Christian Schneppe | 2019-07-17 | 1 | -0/+92 |
| | |||||
* | migrate copy ond write list to synchronized hashset for pending mucs | Christian Schneppe | 2019-07-01 | 1 | -2/+2 |
| | |||||
* | rate limit muc pings / joins. never run two pings at same time | Christian Schneppe | 2019-07-01 | 1 | -0/+1 |
| | |||||
* | implement FCM push for group chats | Christian Schneppe | 2019-07-01 | 1 | -0/+1 |
| | |||||
* | code cleanup & small fixes | Christian Schneppe | 2019-07-01 | 1 | -1/+1 |
| | |||||
* | implement client support for muc push | Christian Schneppe | 2019-06-25 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Staying connected to a MUC room hosted on a remote server can be challenging. If a server reboots it will usually send a shut down notification to all participants. However even if a client knows that a server was shut down it doesn’t know when it comes up again. In some corner cases that shut down notification might not even be delivered successfully leaving the client in a state where it thinks it is connected but it really isn’t. The possible work around implemented in this commit is to register the clients full JID (user@domain.tld/Conversations.r4nd) as an App Server according to XEP-0357 with the room. (Conversations checks for the push:0 namespace on the room.) After cycling through a reboot the first message send to a room will trigger pubsub notifications to each registered full JID. This event will be used to trigger a XEP-0410 ping and if necessary a subsequent rejoin of the MUC. If the resource has become unavailable during down time of the MUC server the user’s server will respond with an IQ error which in turn leads to the MUC server disabling that push target. Leaving a MUC will send a `disable` command. If sending that disable command failed for some reason (network outage) and the client receives a pubsub notification for a room it is no longer joined in it will respond with an item-not-found IQ error which also disables subsequent pushes from the server. Note: We 0410-ping before a join to avoid unnecessary full joins which can be quite costly. Further client side optimizations will also suppress pings when a ping is already in flight to further save traffic. | ||||
* | show own account in chatlist/contacts/conferences if you are in multi ↵ | Christian Schneppe | 2019-06-20 | 3 | -6/+13 |
| | | | | account mode | ||||
* | attempt to keep messages waiting until muc is connected | Christian Schneppe | 2019-06-20 | 1 | -0/+1 |
| | |||||
* | synchronize around attributes in toContentValues() | Christian Schneppe | 2019-06-08 | 1 | -1/+3 |
| | |||||
* | performance improvements | Christian Schneppe | 2019-06-08 | 1 | -2/+1 |
| | |||||
* | performance improvements | Christian Schneppe | 2019-05-18 | 2 | -6/+8 |
| | |||||
* | go forward through cursor in message restore | Christian Schneppe | 2019-05-04 | 1 | -26/+13 |
| | | | | | 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 | ||||
* | small message optimizations | Christian Schneppe | 2019-05-04 | 1 | -2/+2 |
| | |||||
* | introduced type private_file_message to handle attachments in PMs | Christian Schneppe | 2019-05-03 | 2 | -14/+46 |
| | |||||
* | store correcting message in db | Christian Schneppe | 2019-05-03 | 1 | -5/+4 |
| | |||||
* | put PM hint above edittext | Christian Schneppe | 2019-05-03 | 1 | -0/+2 |
| | |||||
* | show users nick in chat if it's set | Christian Schneppe | 2019-04-12 | 1 | -1/+1 |
| | |||||
* | fix url detection for webpreviews | Christian Schneppe | 2019-03-31 | 1 | -1/+2 |
| | |||||
* | small fixes for web preview | Christian Schneppe | 2019-02-09 | 1 | -2/+2 |
| | | | | make links clickable and don't use transform links toLowerCase() | ||||
* | show web link previews in chat | Christian Schneppe | 2019-02-09 | 1 | -1/+15 |
| | | | | fixes #113 | ||||
* | optimize imports | Christian Schneppe | 2019-02-08 | 2 | -2/+0 |
| | |||||
* | hide lock icon in channels; modify muc user context | Christian Schneppe | 2019-02-08 | 2 | -13/+15 |
| | |||||
* | show different room settings for channels and groups | Christian Schneppe | 2019-02-07 | 1 | -4/+12 |
| | |||||
* | rename some variables | Christian Schneppe | 2019-02-04 | 1 | -1/+1 |
| | |||||
* | refactored group chat members into seperate screen | Christian Schneppe | 2019-01-27 | 1 | -3/+28 |
| | |||||
* | refactored avatar workers into single class | Christian Schneppe | 2019-01-27 | 6 | -4/+40 |
| | |||||
* | scan all files in case some files were previously marked as deleted by accident | Christian Schneppe | 2019-01-27 | 1 | -0/+20 |
| | |||||
* | normalize nicks before getting them from bookmarks or pep | Christian Schneppe | 2019-01-25 | 1 | -8/+21 |
| | |||||
* | resend presence to muc avatar update | Christian Schneppe | 2019-01-25 | 1 | -1/+5 |
| | |||||
* | 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 | -15/+5 |
| | |||||
* | fix display of deleted files | Christian Schneppe | 2019-01-25 | 2 | -8/+8 |
| | |||||
* | mark deleted files in database and not query them when querying for media | Christian Schneppe | 2019-01-25 | 4 | -47/+33 |
| | |||||
* | count muc participants correctly | Christian Schneppe | 2019-01-24 | 1 | -13/+0 |
| |