aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de (follow)
Commit message (Collapse)AuthorAgeFilesLines
* linkify subject + open xmpp directly w/o going through start conv activityChristian Schneppe2018-06-296-72/+153
|
* code clean up in contact details presence handlingChristian Schneppe2018-06-292-12/+8
|
* fixed some extended muc info handling. match what ejabberd doesChristian Schneppe2018-06-292-13/+21
|
* use room name (if available and != localpart) as group nameChristian Schneppe2018-06-294-52/+69
|
* show toast before finishing publish activityChristian Schneppe2018-06-291-7/+8
|
* Merge branch 'master' of https://github.com/kriztan/Pix-Art-MessengerChristian Schneppe2018-06-291-1/+1
|\
| * Fix for blank groupchat name issue when ShowPresenceColoredNames is selected ↵Ramesh Jangama2018-06-291-1/+1
| | | | | | | | (#209)
* | try to stop transcoding notification in some rare casesChristian Schneppe2018-06-291-0/+2
| |
* | fix crash in ListItemAdapterChristian Schneppe2018-06-291-1/+2
| |
* | WIP: set room avatar and slight redesign of group detailsChristian Schneppe2018-06-297-167/+370
|/ | | | *show jid in group details (in advanced mode)
* do not include read only chats in contact chooserChristian Schneppe2018-06-172-4/+9
|
* use Tor on http upload is account uses onion domainChristian Schneppe2018-06-177-20/+22
|
* deduplicate tags + translate 'blocked' tagChristian Schneppe2018-06-171-5/+8
|
* introduced config setting to hide error notificationChristian Schneppe2018-06-172-1/+5
|
* Improved URL matchingChristian Schneppe2018-06-172-19/+38
|
* add ‘paste as quote’ for api >= 23Christian Schneppe2018-06-163-16/+107
|
* fall back to search in other tab on search enterChristian Schneppe2018-06-161-0/+6
|
* Added expert setting for direct searchChristian Schneppe2018-06-161-1/+8
|
* permit empty values for subject and roster nameChristian Schneppe2018-06-164-19/+19
|
* fix geo uri regexChristian Schneppe2018-06-161-1/+1
| | | | | - only match valid float numbers - match uri with parameter
* fix cleanPrivateStorage()Christian Schneppe2018-06-161-24/+5
|
* attach editor content as fileChristian Schneppe2018-06-163-21/+6
|
* report unparsable limit as http upload availableChristian Schneppe2018-06-161-1/+1
|
* edit public=true/false property in mucsChristian Schneppe2018-06-161-0/+4
|
* catch NPE in AccountAdapterChristian Schneppe2018-06-161-1/+3
|
* catch NPE in exif detectionChristian Schneppe2018-06-161-1/+1
|
* catch OOM in FileObserverChristian Schneppe2018-06-161-1/+6
|
* use also rounded avatars in widgetChristian Schneppe2018-06-041-1/+3
|
* catch more exceptions in scheduleWakeUpCallChristian Schneppe2018-06-041-0/+2
|
* Revert "fade in images and avatars" because of strange flickeringChristian Schneppe2018-06-046-37/+0
| | | | This reverts commit 6bf3ef887a57d7427d4b4cccac3a1c1adcb14377.
* fade in images and avatarsChristian Schneppe2018-06-036-0/+37
|
* show MUC avatar in ConferenceDetailsActivityChristian Schneppe2018-06-011-0/+1
|
* add more logging to setIsInForegroundChristian Schneppe2018-06-013-1/+4
|
* rename useOwnProvider to useAdvancedMode in WelcomeActivityChristian Schneppe2018-06-011-2/+2
|
* OMEMO: remove omemo device from own list if bundle is brokenChristian Schneppe2018-06-011-70/+80
|
* make sure account is connected before attempting to download p1s3Christian Schneppe2018-06-012-2/+21
|
* catch NPEChristian Schneppe2018-06-011-2/+2
|
* show buttons to privacy policy and terms of use during account creation on ↵Christian Schneppe2018-05-271-0/+24
| | | | our server pix-art.de
* add missing else to show the availability of httpupload correctlyChristian Schneppe2018-05-261-2/+1
|
* improve active_since implementation (XEP-0319: Last User Interaction in ↵Christian Schneppe2018-05-262-1/+13
| | | | | | | Presence) * set contact to inactive if it becomes offline * send idle also in case app started in background
* Do not use TLS_FALLBACK_SCSVChristian Schneppe2018-05-261-0/+1
|
* add support for S3 file transfersChristian Schneppe2018-05-2620-180/+654
|
* add links to *Terms Of Use* and *Privacy Policy* to AboutActivityChristian Schneppe2018-05-241-0/+19
|
* use correct binding in EditAccountActivityChristian Schneppe2018-05-211-4/+2
|
* temporarly disable swipe gesturesChristian Schneppe2018-05-211-0/+3
|
* try to fix a crash during OTR verifyChristian Schneppe2018-05-211-0/+4
|
* set pragme secure delete properlyChristian Schneppe2018-05-211-1/+1
|
* explicitly set secure_delete pragma for SQLite databaseChristian Schneppe2018-05-211-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.
* make file observer listen for movesChristian Schneppe2018-05-211-1/+1
|
* move enabling of foreign key support to onConfigureChristian Schneppe2018-05-211-8/+5
| | | | | | This way we avoid repeating the code. Unlike getWritableDatabase, onConfigure is intended to be overridden. In fact, onConfigure documentation specifically says: "Called when the database connection is being configured, to enable features such as write-ahead logging or *foreign key support*."