Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix compatibility issue on startup | Christian Schneppe | 2019-01-26 | 1 | -1/+17 |
| | |||||
* | make new backup and restore possible with old databases | Christian Schneppe | 2019-01-26 | 1 | -1/+6 |
| | |||||
* | rework backup & restore | Christian Schneppe | 2019-01-26 | 1 | -2/+2 |
| | | | | use the implementation from Conversations | ||||
* | null checks when deleting old files | Christian Schneppe | 2019-01-25 | 1 | -2/+2 |
| | |||||
* | explicitly set type=images for all media with an image mime type this is in ↵ | Christian Schneppe | 2019-01-25 | 1 | -15/+6 |
| | | | | preperation to be able to query the database for all images | ||||
* | check if encrypted pgp file get deleted | Christian Schneppe | 2019-01-25 | 1 | -10/+19 |
| | |||||
* | fix display of deleted files | Christian Schneppe | 2019-01-25 | 1 | -1/+1 |
| | |||||
* | don’t check if files exists when loading attachments | Christian Schneppe | 2019-01-25 | 1 | -7/+2 |
| | |||||
* | mark deleted files in database and not query them when querying for media | Christian Schneppe | 2019-01-25 | 2 | -2/+79 |
| | |||||
* | put images into MessageStyle notifications | Christian Schneppe | 2019-01-24 | 1 | -2/+45 |
| | |||||
* | introduced 'original' as video and image quality and do not ignorer error | Christian Schneppe | 2019-01-03 | 1 | -2/+5 |
| | |||||
* | added epub and azw mime types. try to resolve application/octet-stream by ↵ | Christian Schneppe | 2018-12-27 | 1 | -1/+1 |
| | | | | file extension instead. added preview icons for ebooks | ||||
* | limit video transcoding to api >= 18 and other api 16 fixes | Christian Schneppe | 2018-12-14 | 1 | -1/+8 |
| | |||||
* | postpone prekey removal and republish to after mam | Christian Schneppe | 2018-12-14 | 1 | -2/+2 |
| | |||||
* | implement self healing omemo | Christian Schneppe | 2018-12-04 | 1 | -1/+1 |
| | | | | | | after receiving a SignalMessage that can’t be decrypted because of broken sessions Conversations will attempt to grab a new pre key bundle and send a new PreKeySignalMessage wrapped in a key transport message. | ||||
* | fix apk name detection | Christian Schneppe | 2018-11-30 | 1 | -4/+5 |
| | |||||
* | catch npe while detecting apk names | Christian Schneppe | 2018-11-30 | 1 | -7/+12 |
| | |||||
* | catch cursor window allocation exception | Christian Schneppe | 2018-11-23 | 1 | -4/+10 |
| | |||||
* | refresh synced contacts even if offline | Christian Schneppe | 2018-11-23 | 1 | -1/+1 |
| | |||||
* | also respect deleted messages in readable logs | Christian Schneppe | 2018-11-11 | 1 | -2/+2 |
| | |||||
* | implement message deletion | Christian Schneppe | 2018-11-11 | 1 | -15/+17 |
| | | | | fixed #208 | ||||
* | write null bitmap to imageview to replace asyncdrawable | Christian Schneppe | 2018-10-24 | 1 | -1/+1 |
| | |||||
* | Do not attempt to draw overlay on null bitmap | Christian Schneppe | 2018-10-20 | 2 | -2/+3 |
| | |||||
* | rework MediaViewerActivity | Christian Schneppe | 2018-10-03 | 1 | -4/+8 |
| | |||||
* | do not compress/resize images with strange aspect ratios | Christian Schneppe | 2018-09-27 | 1 | -0/+12 |
| | |||||
* | store avatars received over muc presence in contact | Christian Schneppe | 2018-09-27 | 1 | -1/+1 |
| | |||||
* | do not show media overview in contact/conference details when missing ↵ | Christian Schneppe | 2018-09-26 | 1 | -1/+3 |
| | | | | storage permission | ||||
* | introduce media browser activity | Christian Schneppe | 2018-09-26 | 1 | -2/+2 |
| | |||||
* | show conversation media in contact/conference details | Christian Schneppe | 2018-09-26 | 2 | -32/+69 |
| | |||||
* | preview media before sending them and allow sharing and attaching of ↵ | Christian Schneppe | 2018-09-23 | 1 | -5/+46 |
| | | | | multiple files | ||||
* | catch illegalargument exception when discovering extension from url | Christian Schneppe | 2018-09-11 | 1 | -1/+6 |
| | |||||
* | try to catch out of memory exception | Christian Schneppe | 2018-08-26 | 1 | -1/+5 |
| | |||||
* | integrated locally message deletion from #208 | Christian Schneppe | 2018-07-09 | 1 | -0/+11 |
| | | | | thanks @acw81 | ||||
* | persist muc avatar and show in bookmarks | Christian Schneppe | 2018-07-09 | 1 | -1/+1 |
| | |||||
* | WIP: set room avatar and slight redesign of group details | Christian Schneppe | 2018-06-29 | 1 | -0/+21 |
| | | | | *show jid in group details (in advanced mode) | ||||
* | attach editor content as file | Christian Schneppe | 2018-06-16 | 1 | -10/+1 |
| | |||||
* | set pragme secure delete properly | Christian Schneppe | 2018-05-21 | 1 | -1/+1 |
| | |||||
* | explicitly set secure_delete pragma for SQLite database | Christian Schneppe | 2018-05-21 | 1 | -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. | ||||
* | move enabling of foreign key support to onConfigure | Christian Schneppe | 2018-05-21 | 1 | -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*." | ||||
* | do not use trigger but delete message index entries manually | Christian Schneppe | 2018-05-17 | 1 | -83/+90 |
| | |||||
* | add primary key to fts table | Christian Schneppe | 2018-05-17 | 1 | -2/+3 |
| | |||||
* | do not include body in simple status updates to not trigger fts update | Christian Schneppe | 2018-05-17 | 1 | -1/+6 |
| | |||||
* | fix exceptions | Christian Schneppe | 2018-05-16 | 1 | -3/+3 |
| | |||||
* | do not load conversations with null jid | Christian Schneppe | 2018-05-16 | 1 | -2/+10 |
| | |||||
* | don’t scale images to a 0 width or height | Christian Schneppe | 2018-05-16 | 1 | -6/+8 |
| | |||||
* | handle invalid image bounds | Christian Schneppe | 2018-05-03 | 1 | -1/+7 |
| | |||||
* | only search text messages | Christian Schneppe | 2018-05-02 | 1 | -1/+1 |
| | |||||
* | search term parsing + highlighting | Christian Schneppe | 2018-05-02 | 1 | -2/+8 |
| | |||||
* | create fts table | Christian Schneppe | 2018-05-02 | 1 | -2/+16 |
| | |||||
* | get video dimensions from bitmap instead of meta data | Christian Schneppe | 2018-05-02 | 1 | -12/+24 |
| |