aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/services (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-23correct file locations for EmojiServiceChristian Schneppe1-26/+0
2019-09-23Google Play version use downloadable Emojis instead of bundledChristian Schneppe2-37/+15
2019-09-20improved logging for messages waiting for joinChristian Schneppe1-8/+23
2019-09-20migrate to AndroidXChristian Schneppe13-29/+28
2019-09-19fixed R8 weirdnessChristian Schneppe1-4/+3
2019-09-19fixed direct invites after adhocChristian Schneppe2-5/+20
2019-09-19cancel spinning wheel on muclumbus errorChristian Schneppe1-9/+13
2019-09-19fixed some minor NPEChristian Schneppe1-1/+6
2019-09-19clear notifications when deleting accountChristian Schneppe1-1/+2
2019-09-13keep track of previously edited idsChristian Schneppe1-2/+6
2019-09-13catch empty password exceptions in ExportBackupServiceChristian Schneppe1-2/+6
2019-09-12set Messenger identity as userAgent for RichPreview and ChannelDiscoveryChristian Schneppe1-0/+23
2019-09-12fixed 2 issues reported by new linterChristian Schneppe1-1/+1
2019-09-11include user into quote messageChristian Schneppe1-0/+1
2019-09-09add 1080p as video resolution and set default to 720pChristian Schneppe1-4/+8
2019-09-09include ticker information in notificationChristian Schneppe1-15/+15
2019-09-09catch exception in updaterChristian Schneppe1-11/+17
2019-09-07improve webpreviews during offline timesChristian Schneppe1-0/+1
2019-09-07send multiple downloads and uploads into queueChristian Schneppe1-0/+2
2019-09-03fix some crashesChristian Schneppe2-34/+44
2019-08-31include pgp sig and status in presence to non anon mucChristian Schneppe1-14/+2
2019-08-31do not put default nick into bookmark if none has been set beforeChristian Schneppe1-5/+12
2019-08-31refactored filename and extension parsingChristian Schneppe1-0/+19
2019-08-31make config flag for leave before joinChristian Schneppe1-2/+4
2019-08-31catch IllegalArgumentException when reading backup fileChristian Schneppe1-0/+2
2019-08-31do password empty check in dialog not in restore backup serviceChristian Schneppe1-9/+1
2019-08-31allow backup to be restored from selected fileChristian Schneppe1-19/+63
2019-08-31make short vibrate in open chat configurable and respect phone silent modeChristian Schneppe2-4/+10
2019-07-17create share button in backup done notificationChristian Schneppe1-61/+78
2019-07-17handle blocking and unblocking of full jidsChristian Schneppe2-11/+12
2019-07-03disable muc push on archive instead of leaveChristian Schneppe1-4/+4
leave can be triggered in conference details and doesn’t mean we don’t want pushes
2019-07-03correct webpreview cache pathsChristian Schneppe1-4/+3
2019-07-01migrate copy ond write list to synchronized hashset for pending mucsChristian Schneppe1-13/+38
2019-07-01rate limit muc pings / joins. never run two pings at same timeChristian Schneppe1-4/+26
2019-07-01attempt to unregister when receiving push for channel no longer joinedChristian Schneppe1-3/+24
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)
2019-07-01implement FCM push for group chatsChristian Schneppe1-7/+13
2019-07-01code cleanup & small fixesChristian Schneppe2-16/+11
2019-06-27catch NPEChristian Schneppe1-15/+22
2019-06-25implement client support for muc pushChristian Schneppe1-0/+35
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.
2019-06-25show taken time for deleted webpreview cacheChristian Schneppe1-1/+2
2019-06-25fix jingle file transferChristian Schneppe1-13/+10
fixes #360
2019-06-23make backup compatible to Conversations (only works for Android >= 8)Christian Schneppe1-1/+16
2019-06-23Revert "BackupExport format like Conversations (#342)"Christian Schneppe1-10/+2
This patch is not compatible with Android SDK < 26 (Android 8 / OREO) This reverts commit 514b63f48684ab82031b0291da8d303abe1d680c.
2019-06-23catch NPEChristian Schneppe1-0/+3
2019-06-22BackupExport format like Conversations (#342)genofire1-2/+10
This makes it possible to import/export backup files from/to Conversations
2019-06-22change behavior of unencrypted chats warningChristian Schneppe1-2/+1
2019-06-22performance improvement of message expiryChristian Schneppe1-3/+9
2019-06-21shedule webpreview cache deletionChristian Schneppe1-0/+20
2019-06-20show own account in chatlist/contacts/conferences if you are in multi ↵Christian Schneppe1-0/+5
account mode
2019-06-20attempt to keep messages waiting until muc is connectedChristian Schneppe1-3/+22