aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* don’t crash when long pressing invalid geo-urisChristian Schneppe2020-01-021-3/+7
|
* reset XmppConnection to parentChristian Schneppe2020-01-021-1/+1
|
* don't create conversation while watching ContactDetailsChristian Schneppe2020-01-022-19/+0
|
* startup performance improvementsChristian Schneppe2020-01-021-24/+31
|
* reset file to normal message when attempting re-download after deleteChristian Schneppe2020-01-021-0/+9
|
* persist file size across abortsChristian Schneppe2020-01-027-18/+43
|
* make parts in Message.java finalChristian Schneppe2020-01-021-1/+1
|
* automatically set year in about messageChristian Schneppe2020-01-021-0/+8
|
* display '#' in generated channel avatarsChristian Schneppe2019-12-241-7/+12
|
* Implement download resumption for OMEMO encrypted filesChristian Schneppe2019-12-242-22/+56
|
* createOutputStream(): allow to disable decryptionChristian Schneppe2019-12-242-15/+8
|
* small contact details UI fixesChristian Schneppe2019-12-241-42/+14
|
* rework conference and contact detailsChristian Schneppe2019-12-232-37/+91
| | | | | | | | | * reduce avatar size * show big avatar on long click * reorder elements * show contact/muc JID in advanced mode fixes #423
* small UI refresh changesChristian Schneppe2019-12-232-3/+3
|
* show nick for /me in 1:1 chatsChristian Schneppe2019-12-171-2/+12
| | | | fixes #421
* first step to remove OTR encryptionChristian Schneppe2019-12-132-1/+4
| | | | * make OTR available via expert settings and disable it as default
* rework adhocinviteChristian Schneppe2019-12-132-24/+29
|
* use setFlags instead of addFlags to grant uri permissionsChristian Schneppe2019-12-139-10/+9
|
* catch rare NPE while deleting bookmarkChristian Schneppe2019-12-131-3/+8
|
* small ui fixes for private messagesChristian Schneppe2019-12-122-1/+2
|
* increase mam messages catchup and don't abort on MAM_MAX_MESSAGESChristian Schneppe2019-12-122-2/+2
|
* add .heic to list of known mime typesChristian Schneppe2019-12-121-6/+7
|
* don’t use secure delete when migrating edit columnChristian Schneppe2019-12-121-4/+9
|
* small quotes fixesChristian Schneppe2019-12-121-4/+7
|
* jingle ibb: wait to receive ibbChristian Schneppe2019-12-093-36/+53
| | | | | | previously we signalled succesfull file reception after receiving enough bytes on ibb; however that causes us to race with the session-info file hash. now the recipient will wait for <close/> and the sender will make sure to send the session-info before sending close.
* properly restore LMC edits. switch to LMC v1.1Christian Schneppe2019-12-095-91/+115
|
* reduce cursor size back to 4m; now that the cause is fixedChristian Schneppe2019-12-081-1/+1
|
* use Base64.NO_WRAP instead of trim()Christian Schneppe2019-12-083-6/+2
|
* show jabber accounts from local address in Quicksy flavorChristian Schneppe2019-12-081-4/+10
|
* prevent crash when deleting account on servers that don't support omemoChristian Schneppe2019-12-081-1/+2
|
* increase cursor window size on Android P when restoring messagesChristian Schneppe2019-12-083-5/+25
|
* delete cached posh file after not being able to verifyChristian Schneppe2019-12-081-44/+49
|
* only show message deleted if LMC is activatedChristian Schneppe2019-12-083-2/+9
|
* add direct answer button in private muc messagesChristian Schneppe2019-12-081-0/+23
|
* use current time on resend messageChristian Schneppe2019-12-081-0/+3
|
* try to fix missing sendbuttonChristian Schneppe2019-12-081-4/+3
|
* fix shareWithActivityChristian Schneppe2019-12-081-6/+7
|
* fix rare crashChristian Schneppe2019-12-071-0/+3
|
* add missing permission requests for Android PChristian Schneppe2019-12-0711-48/+61
| | | | possibly fixes #410
* fix updaterChristian Schneppe2019-12-071-4/+4
|
* don't show real username in quotesChristian Schneppe2019-12-071-5/+1
| | | | fixes #415
* Disable NewLines in Base64 values (#416)FH2019-12-033-8/+8
| | | | | | Smack gets confused and throws NullPointerException when Base64 contains newlines. Therefor disable newlines in Base64. I assume newlines in Base64 are also not expected by other implementations.
* fix user in textselection quotesChristian Schneppe2019-11-172-15/+22
|
* add possibility to block muc user from mucChristian Schneppe2019-11-163-5/+41
|
* fix color mixing in ChannelDiscoveryActivityChristian Schneppe2019-11-161-2/+0
|
* rework design colors and make it compatible with older ROMsChristian Schneppe2019-11-164-36/+60
|
* make exporting backup compatible with conversationsChristian Schneppe2019-11-161-1/+2
|
* fix duplicate accounts in EnterJidDialogChristian Schneppe2019-11-153-46/+36
|
* introduce new orange theme colorChristian Schneppe2019-11-157-31/+97
|
* Fix empty grey box for unknown file types (#405)TheOneric2019-11-152-22/+21
| | | | | | Previously if files, whose mime-type was not recognized by MimeUtils, were being sent to a Pix-Art-Client only a grey box without text would be shown. With this commit the general "open file" text is now shown for these files. Previously this text was only shown for files with recognized mime-types, not being specially handled (like images). Also the Advanced SSA (*.ass) subtitle format was added to MimeUtils as 'text/plain'.