aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-01-24support registration via pars tokensChristian Schneppe8-51/+133
2020-01-24refactored xmpp uri parsing to expose all paramsChristian Schneppe1-71/+63
2020-01-24show number of participants in a MUCChristian Schneppe1-0/+1
2020-01-24try to heal Huawei's energy saving methodsChristian Schneppe1-0/+4
2020-01-14show toast message on PN if user is not in room/channelChristian Schneppe1-0/+5
2020-01-14show avatar correctlyChristian Schneppe2-0/+2
2020-01-14switch volume control between earpiece and speaker while listening audioChristian Schneppe2-2/+1
2020-01-02rework map view and update leaflet to 1.6.0Christian Schneppe2-16/+14
2020-01-02don’t crash when long pressing invalid geo-urisChristian Schneppe1-3/+7
2020-01-02reset XmppConnection to parentChristian Schneppe1-1/+1
2020-01-02don't create conversation while watching ContactDetailsChristian Schneppe2-19/+0
2020-01-02startup performance improvementsChristian Schneppe1-24/+31
2020-01-02reset file to normal message when attempting re-download after deleteChristian Schneppe1-0/+9
2020-01-02persist file size across abortsChristian Schneppe7-18/+43
2020-01-02make parts in Message.java finalChristian Schneppe1-1/+1
2020-01-02automatically set year in about messageChristian Schneppe1-0/+8
2019-12-24display '#' in generated channel avatarsChristian Schneppe1-7/+12
2019-12-24Implement download resumption for OMEMO encrypted filesChristian Schneppe2-22/+56
2019-12-24createOutputStream(): allow to disable decryptionChristian Schneppe2-15/+8
2019-12-24small contact details UI fixesChristian Schneppe1-42/+14
2019-12-23rework conference and contact detailsChristian Schneppe2-37/+91
* reduce avatar size * show big avatar on long click * reorder elements * show contact/muc JID in advanced mode fixes #423
2019-12-23small UI refresh changesChristian Schneppe2-3/+3
2019-12-17show nick for /me in 1:1 chatsChristian Schneppe1-2/+12
fixes #421
2019-12-13first step to remove OTR encryptionChristian Schneppe2-1/+4
* make OTR available via expert settings and disable it as default
2019-12-13rework adhocinviteChristian Schneppe2-24/+29
2019-12-13use setFlags instead of addFlags to grant uri permissionsChristian Schneppe9-10/+9
2019-12-13catch rare NPE while deleting bookmarkChristian Schneppe1-3/+8
2019-12-12small ui fixes for private messagesChristian Schneppe2-1/+2
2019-12-12increase mam messages catchup and don't abort on MAM_MAX_MESSAGESChristian Schneppe2-2/+2
2019-12-12add .heic to list of known mime typesChristian Schneppe1-6/+7
2019-12-12don’t use secure delete when migrating edit columnChristian Schneppe1-4/+9
2019-12-12small quotes fixesChristian Schneppe1-4/+7
2019-12-09jingle ibb: wait to receive ibbChristian Schneppe3-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.
2019-12-09properly restore LMC edits. switch to LMC v1.1Christian Schneppe5-91/+115
2019-12-08reduce cursor size back to 4m; now that the cause is fixedChristian Schneppe1-1/+1
2019-12-08use Base64.NO_WRAP instead of trim()Christian Schneppe3-6/+2
2019-12-08show jabber accounts from local address in Quicksy flavorChristian Schneppe1-4/+10
2019-12-08prevent crash when deleting account on servers that don't support omemoChristian Schneppe1-1/+2
2019-12-08increase cursor window size on Android P when restoring messagesChristian Schneppe3-5/+25
2019-12-08delete cached posh file after not being able to verifyChristian Schneppe1-44/+49
2019-12-08only show message deleted if LMC is activatedChristian Schneppe3-2/+9
2019-12-08add direct answer button in private muc messagesChristian Schneppe1-0/+23
2019-12-08use current time on resend messageChristian Schneppe1-0/+3
2019-12-08try to fix missing sendbuttonChristian Schneppe1-4/+3
2019-12-08fix shareWithActivityChristian Schneppe1-6/+7
2019-12-07fix rare crashChristian Schneppe1-0/+3
2019-12-07add missing permission requests for Android PChristian Schneppe11-48/+61
possibly fixes #410
2019-12-07fix updaterChristian Schneppe1-4/+4
2019-12-07don't show real username in quotesChristian Schneppe1-5/+1
fixes #415
2019-12-03Disable NewLines in Base64 values (#416)FH3-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.