aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-06-29non functional muc edit buttonChristian Schneppe2-32/+76
2018-06-29do not include white listed domains in room listChristian Schneppe4-17/+16
2018-06-29use TextInputLayout in quickedit dialogChristian Schneppe4-21/+22
2018-06-29linkify subject + open xmpp directly w/o going through start conv activityChristian Schneppe6-72/+153
2018-06-29code clean up in contact details presence handlingChristian Schneppe2-12/+8
2018-06-29fixed some extended muc info handling. match what ejabberd doesChristian Schneppe2-13/+21
2018-06-29use room name (if available and != localpart) as group nameChristian Schneppe4-52/+69
2018-06-29show toast before finishing publish activityChristian Schneppe1-7/+8
2018-06-29Fix for blank groupchat name issue when ShowPresenceColoredNames is selected ↵Ramesh Jangama1-1/+1
(#209)
2018-06-29try to stop transcoding notification in some rare casesChristian Schneppe1-0/+2
2018-06-29fix crash in ListItemAdapterChristian Schneppe1-1/+2
2018-06-29WIP: set room avatar and slight redesign of group detailsChristian Schneppe7-167/+370
*show jid in group details (in advanced mode)
2018-06-17do not include read only chats in contact chooserChristian Schneppe2-4/+9
2018-06-17use Tor on http upload is account uses onion domainChristian Schneppe7-20/+22
2018-06-17deduplicate tags + translate 'blocked' tagChristian Schneppe1-5/+8
2018-06-17introduced config setting to hide error notificationChristian Schneppe2-1/+5
2018-06-17Improved URL matchingChristian Schneppe2-19/+38
2018-06-16add ‘paste as quote’ for api >= 23Christian Schneppe3-16/+107
2018-06-16fall back to search in other tab on search enterChristian Schneppe1-0/+6
2018-06-16Added expert setting for direct searchChristian Schneppe1-1/+8
2018-06-16permit empty values for subject and roster nameChristian Schneppe4-19/+19
2018-06-16fix geo uri regexChristian Schneppe1-1/+1
- only match valid float numbers - match uri with parameter
2018-06-16fix cleanPrivateStorage()Christian Schneppe1-24/+5
2018-06-16attach editor content as fileChristian Schneppe3-21/+6
2018-06-16report unparsable limit as http upload availableChristian Schneppe1-1/+1
2018-06-16edit public=true/false property in mucsChristian Schneppe1-0/+4
2018-06-16catch NPE in AccountAdapterChristian Schneppe1-1/+3
2018-06-16catch NPE in exif detectionChristian Schneppe1-1/+1
2018-06-16catch OOM in FileObserverChristian Schneppe1-1/+6
2018-06-04use also rounded avatars in widgetChristian Schneppe1-1/+3
2018-06-04catch more exceptions in scheduleWakeUpCallChristian Schneppe1-0/+2
2018-06-04Revert "fade in images and avatars" because of strange flickeringChristian Schneppe6-37/+0
This reverts commit 6bf3ef887a57d7427d4b4cccac3a1c1adcb14377.
2018-06-03fade in images and avatarsChristian Schneppe6-0/+37
2018-06-01show MUC avatar in ConferenceDetailsActivityChristian Schneppe1-0/+1
2018-06-01add more logging to setIsInForegroundChristian Schneppe3-1/+4
2018-06-01rename useOwnProvider to useAdvancedMode in WelcomeActivityChristian Schneppe1-2/+2
2018-06-01OMEMO: remove omemo device from own list if bundle is brokenChristian Schneppe1-70/+80
2018-06-01make sure account is connected before attempting to download p1s3Christian Schneppe2-2/+21
2018-06-01catch NPEChristian Schneppe1-2/+2
2018-05-27show buttons to privacy policy and terms of use during account creation on ↵Christian Schneppe1-0/+24
our server pix-art.de
2018-05-26add missing else to show the availability of httpupload correctlyChristian Schneppe1-2/+1
2018-05-26improve active_since implementation (XEP-0319: Last User Interaction in ↵Christian Schneppe2-1/+13
Presence) * set contact to inactive if it becomes offline * send idle also in case app started in background
2018-05-26Do not use TLS_FALLBACK_SCSVChristian Schneppe1-0/+1
2018-05-26add support for S3 file transfersChristian Schneppe20-180/+654
2018-05-24add links to *Terms Of Use* and *Privacy Policy* to AboutActivityChristian Schneppe1-0/+19
2018-05-21use correct binding in EditAccountActivityChristian Schneppe1-4/+2
2018-05-21temporarly disable swipe gesturesChristian Schneppe1-0/+3
2018-05-21try to fix a crash during OTR verifyChristian Schneppe1-0/+4
2018-05-21set pragme secure delete properlyChristian Schneppe1-1/+1
2018-05-21explicitly set secure_delete pragma for SQLite databaseChristian Schneppe1-0/+1
Conversations stores sensitive data, such as SQLiteAxolotlStore tables, in its database. secure_delete=ON is the default for newer Android devices: https://android-review.googlesource.com/c/platform/external/sqlite/+/209123 However, older devices had it disabled by default, so any database created than has this setting disabled and it will not be updated automatically. Also, the default might be changed in the future (for example, to "FAST", added in 2017), so it is safer to set it explicitly.