aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of https://github.com/kriztan/Pix-Art-MessengerChristian Schneppe2019-06-271-1/+3
|\
| * Merge pull request #367 from kriztan/l10n_masterChristian Schneppe2019-06-271-1/+3
| |\ | | | | | | New Crowdin translations
| | * New translations strings.xml (Chinese Simplified)Christian Schneppe2019-06-261-1/+3
| | |
* | | catch NPEChristian Schneppe2019-06-271-15/+22
|/ /
* | Merge pull request #365 from kriztan/l10n_masterChristian Schneppe2019-06-251-0/+4
|\| | | | | New Crowdin translations
| * New translations strings.xml (Italian)Christian Schneppe2019-06-251-0/+4
| |
* | Revert "Networkstack - let OS decide IPv4 or IPv6 (#267)"Christian Schneppe2019-06-255-24/+369
|/ | | | | | This reverts commit e6a15597904019f68c02e6fd8f61fb6de0b13324. If there is IPv6 available but the server doesn't listen to it, the connection will not be established
* implement client support for muc pushChristian Schneppe2019-06-256-10/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* fix broken updaterChristian Schneppe2019-06-251-0/+6
|
* show taken time for deleted webpreview cacheChristian Schneppe2019-06-251-1/+2
|
* fix welcome screensChristian Schneppe2019-06-253-9/+29
| | | | fixes #361
* Merge branch 'master' of https://github.com/kriztan/Pix-Art-MessengerChristian Schneppe2019-06-252-1/+2
|\
| * New translations strings.xml (German)Christian Schneppe2019-06-251-1/+1
| |
| * New translations strings.xml (German)Christian Schneppe2019-06-251-1/+1
| |
| * New translations strings.xml (Spanish)Christian Schneppe2019-06-231-0/+1
| |
* | fix jingle file transferChristian Schneppe2019-06-255-19/+16
|/ | | | fixes #360
* make backup compatible to Conversations (only works for Android >= 8)Christian Schneppe2019-06-231-1/+16
|
* Revert "BackupExport format like Conversations (#342)"Christian Schneppe2019-06-231-10/+2
| | | | | This patch is not compatible with Android SDK < 26 (Android 8 / OREO) This reverts commit 514b63f48684ab82031b0291da8d303abe1d680c.
* Merge branch 'master' of https://github.com/kriztan/Pix-Art-MessengerChristian Schneppe2019-06-231-1/+1
|\
| * Fixed typoesu232019-06-221-1/+1
| |
* | catch NPEChristian Schneppe2019-06-231-0/+3
|/
* New Crowdin translations (#353)Christian Schneppe2019-06-224-104/+123
|
* fix typoChristian Schneppe2019-06-221-1/+1
|
* BackupExport format like Conversations (#342)genofire2019-06-221-2/+10
| | | This makes it possible to import/export backup files from/to Conversations
* changed string to generated password dialog in MagicCreateActivityChristian Schneppe2019-06-222-0/+3
| | | | fixes #296
* change behavior of unencrypted chats warningChristian Schneppe2019-06-223-13/+39
|
* performance improvement of message expiryChristian Schneppe2019-06-223-8/+56
|
* shedule webpreview cache deletionChristian Schneppe2019-06-212-14/+21
|
* show own account in chatlist/contacts/conferences if you are in multi ↵Christian Schneppe2019-06-2013-13/+68
| | | | account mode
* ping muc after receiving not-acceptable errorChristian Schneppe2019-06-201-0/+12
|
* attempt to keep messages waiting until muc is connectedChristian Schneppe2019-06-202-3/+23
|
* small improvement of welcome screenChristian Schneppe2019-06-1812-11/+23
|
* self ping (xep-0410) after receiving invite to mucChristian Schneppe2019-06-184-5/+29
|
* syntax clean upChristian Schneppe2019-06-171-1/+1
|
* disallow subsequent session-acceptChristian Schneppe2019-06-171-13/+13
|
* use ibb if other party doesn’t annouce s5b featureChristian Schneppe2019-06-175-226/+207
|
* accept direct ibb jingle offersChristian Schneppe2019-06-172-15/+58
|
* don’t crash when attempting to publish bookmarks while offlineChristian Schneppe2019-06-171-1/+2
|
* handle some rare npeChristian Schneppe2019-06-172-6/+12
|
* MessageStyle notifications replace car extenderChristian Schneppe2019-06-171-21/+13
|
* use socks instead of http proxy for http uploadChristian Schneppe2019-06-173-7/+7
| | | | http proxy doesn’t seem to work with onion v3
* fix some NPEChristian Schneppe2019-06-172-5/+14
|
* reduce image quality a bitChristian Schneppe2019-06-161-1/+1
|
* Networkstack - let OS decide IPv4 or IPv6 (#267)genofire2019-06-085-360/+23
| | | | | | | | * Networkstack - let OS decide IPv4 or IPv6 * Drop own implementation of DNS-Server selection * remove dns resolver cache
* update translationsChristian Schneppe2019-06-085-436/+924
| | | | | | | | | | | | | | | | | | | | | | | | * New translations strings.xml (Catalan) * New translations strings.xml (Catalan) * New translations strings.xml (Catalan) * New translations strings.xml (Catalan) * New translations strings.xml (Catalan) * New translations strings.xml (Romanian) * New translations strings.xml (Portuguese, Brazilian) * New translations strings.xml (Polish) * New translations strings.xml (Cebuano) * New translations strings.xml (Azerbaijani) * New translations strings.xml (Portuguese)
* fix some more NPEChristian Schneppe2019-06-085-7/+14
|
* put geo uri in attachment preview when sharedChristian Schneppe2019-06-083-5/+17
|
* show negative max files size (unknown/unlimited) simply as availableChristian Schneppe2019-06-081-2/+7
|
* fixed some NPEChristian Schneppe2019-06-081-3/+6
|
* synchronize around attributes in toContentValues()Christian Schneppe2019-06-081-1/+3
|