aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/persistance (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implements FS#245: Implement FiletransferHttp (upload and delete), some ↵steckbrief2017-07-311-10/+31
| | | | minor bug fixes including to fail a JingleTransfer in case criterias are not met
* Merge branch 'trz/rebase' into trz/renamesteckbrief2017-01-053-1/+53
|\
| * Added columns to fileparams table: url, original file name, key and ivsteckbrief2017-01-042-0/+41
| | | | | | | | | | auto download of files moved from MessageParser to MessageAdapter download and open file representation cleaned up
| * Merge remote-tracking branch 'remotes/origin/trz/rename' into trz/rebasesteckbrief2016-10-205-76/+319
| |\ | |/ |/|
| * Merge remote-tracking branch 'remotes/origin/trz/rename' into trz/rebasesteckbrief2016-04-235-1458/+17
| | | | | | | | | | | | | | | | | | Conflicts: src/main/java/de/thedevstack/conversationsplus/ConversationsPlusApplication.java src/main/java/de/thedevstack/conversationsplus/ui/dialogs/MessageDetailsDialog.java src/main/java/de/thedevstack/conversationsplus/utils/MessageUtil.java src/main/java/eu/siacs/conversations/generator/MessageGenerator.java src/main/java/eu/siacs/conversations/ui/SettingsActivity.java
* | Implements FS#235: Deletion of remote files uploaded via httpuploadsteckbrief2016-09-297-119/+388
| |
* | Fixes conditions for cplus db upgradessteckbrief2016-08-231-2/+2
| |
* | Javadoc added and access to xmppConnectionService movedsteckbrief2016-08-231-2/+3
| |
* | Implements FS#227: Store password encrypted in internal databasesteckbrief2016-07-161-1/+15
|/
* Fixes FS#204: Observe all used directoriessteckbrief2016-04-232-1/+86
| | | | | | | - Implementing the FileObserver in a separate class, with mask to watch only deletions not everything - Add observation of all directories which could contain a sent/received file - Change observers if the folder names are changed via settings - markMessage method moved from XmppConnectionService to MessageUtil
* Related to FS#134: check if oldversion is smaller then new version on ↵steckbrief2016-04-231-2/+1
| | | | upgrading c+ db
* Persist Message.treatAsDownloadablesteckbrief2016-04-192-2/+15
|
* DatabaseBackend updated to serve Conversatiosn Database version and ↵steckbrief2016-04-173-1/+309
| | | | | | | Conversations+ Database version HttpUpload Flag introduced for message to identify if a link was sent after httpupload message hint for httpupload added (message parsing and message generating)
* Merge branch 'trz/rebase' into trz/renamelookshe2016-04-051-3/+13
|
* Fixes FS#166 - Images cannot be opened since storing in private image folderlookshe2016-03-271-1/+1
|
* Merge branch 'trz/rebase' into trz/renamelookshe2016-03-251-0/+31
|
* Merge branch 'trz/rebase' (early part) into trz/renamelookshe2016-03-201-1/+3
|
* Fixes FS#167: Resized images are larger than original imagessteckbrief2016-03-181-2/+2
|
* Merge branch 'trz/rebase' into trz/renamelookshe2016-03-081-1/+6
|
* Merge branch 'trz/rebase' into trz/renamelookshe2016-03-062-163/+798
|
* Implements FS#111: Compress resized picture with PNG formatsteckbrief2016-01-151-3/+3
|
* Implements FS#19, FS#84; Introduces ImageResizeException, MessageUtil and ↵steckbrief2015-12-161-82/+23
| | | | distinguishes between image resizing and compressing/saving
* Moved logcat to a module, increased error robustness for loading last messagessteckbrief2015-12-102-2/+2
|
* Implements FS#67: Introduce central logging class to use log prefix, new ↵steckbrief2015-11-202-8/+8
| | | | activity to show logcat output and button to copy contents
* FileBackend splitted into several util classes for separate concerns: ↵steckbrief2015-11-061-367/+34
| | | | AvatarUtil, StreamUtil, ImageUtil. Unused imports removed.
* Implements FS#26: Introduction of dialog to choose whether to resize a ↵steckbrief2015-11-031-21/+37
| | | | picture or not
* Merge branch 'trz/rebase' into trz/renamelookshe2015-08-112-68/+176
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: build.gradle src/main/java/de/thedevstack/conversationsplus/crypto/OtrEngine.java src/main/java/de/thedevstack/conversationsplus/entities/Account.java src/main/java/de/thedevstack/conversationsplus/entities/Contact.java src/main/java/de/thedevstack/conversationsplus/entities/Downloadable.java src/main/java/de/thedevstack/conversationsplus/entities/DownloadableFile.java src/main/java/de/thedevstack/conversationsplus/entities/DownloadablePlaceholder.java src/main/java/de/thedevstack/conversationsplus/entities/Message.java src/main/java/de/thedevstack/conversationsplus/generator/IqGenerator.java src/main/java/de/thedevstack/conversationsplus/http/HttpConnection.java src/main/java/de/thedevstack/conversationsplus/http/HttpConnectionManager.java src/main/java/de/thedevstack/conversationsplus/parser/AbstractParser.java src/main/java/de/thedevstack/conversationsplus/parser/MessageParser.java src/main/java/de/thedevstack/conversationsplus/parser/PresenceParser.java src/main/java/de/thedevstack/conversationsplus/persistance/DatabaseBackend.java src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java src/main/java/de/thedevstack/conversationsplus/services/NotificationService.java src/main/java/de/thedevstack/conversationsplus/services/XmppConnectionService.java src/main/java/de/thedevstack/conversationsplus/ui/ConversationActivity.java src/main/java/de/thedevstack/conversationsplus/ui/ConversationFragment.java src/main/java/de/thedevstack/conversationsplus/ui/SettingsActivity.java src/main/java/de/thedevstack/conversationsplus/ui/StartConversationActivity.java src/main/java/de/thedevstack/conversationsplus/ui/adapter/AccountAdapter.java src/main/java/de/thedevstack/conversationsplus/ui/adapter/ConversationAdapter.java src/main/java/de/thedevstack/conversationsplus/ui/adapter/ListItemAdapter.java src/main/java/de/thedevstack/conversationsplus/ui/adapter/MessageAdapter.java src/main/java/de/thedevstack/conversationsplus/utils/UIHelper.java src/main/java/de/thedevstack/conversationsplus/xmpp/jingle/JingleConnection.java src/main/java/de/thedevstack/conversationsplus/xmpp/jingle/JingleConnectionManager.java src/main/java/de/thedevstack/conversationsplus/xmpp/jingle/JingleInbandTransport.java src/main/java/de/thedevstack/conversationsplus/xmpp/jingle/JingleSocks5Transport.java src/main/java/de/thedevstack/conversationsplus/xmpp/stanzas/MessagePacket.java src/main/java/eu/siacs/conversations/crypto/OtrEngine.java src/main/java/eu/siacs/conversations/crypto/OtrService.java src/main/java/eu/siacs/conversations/entities/DownloadablePlaceholder.java src/main/java/eu/siacs/conversations/entities/TransferablePlaceholder.java src/main/java/eu/siacs/conversations/http/HttpConnection.java src/main/java/eu/siacs/conversations/http/HttpDownloadConnection.java src/main/res/layout/activity_about.xml
* renaming eu.siacs.conversations to de.thedevstack.conversationsplussteckbrief2015-06-193-0/+930
"renaming eu.siacs.conversations to de.thedevstack.conversationsplus" package renaming completed