aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/services (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-08-02Using a generator approach for generating PresencePacketssteckbrief1-54/+14
2017-07-31Implements FS#245: Implement FiletransferHttp (upload and delete), some ↵steckbrief5-123/+59
minor bug fixes including to fail a JingleTransfer in case criterias are not met
2017-07-06Fixed 'Only one Looper may be created per thread' RuntimeException according ↵steckbrief1-1/+4
to https://stackoverflow.com/questions/23038682/java-lang-runtimeexception-only-one-looper-may-be-created-per-thread/24115631#24115631
2017-02-06relates FS#241: Implementation of http download based on okhttpsteckbrief15-27/+434
2017-01-11Improved error handling for filetransfer:http:delete, Check for httpupload ↵steckbrief4-17/+41
feature available extended to include filetransfer:http as well, method to check if http upload is available moved from data class 'Account' to 'AccountUtil'
2017-01-04Added columns to fileparams table: url, original file name, key and ivsteckbrief1-1/+1
auto download of files moved from MessageParser to MessageAdapter download and open file representation cleaned up
2016-09-29Implements FS#235: Deletion of remote files uploaded via httpuploadsteckbrief8-16/+37
2016-08-23Confirmation dialog added before sending delete command for remote filesteckbrief1-8/+25
2016-08-23services.filetransfer.httpupload moved to new namespace ↵steckbrief9-9/+9
services.filetransfer.http.upload; delete parts of services.filetransfer.http moved to .delete package
2016-08-23xmpp.httpupload moved to new namespace xmpp.filetransfer.http.upload; delete ↵steckbrief6-11/+8
parts of xmpp.filetransfer.http moved to .delete package
2016-08-22Basic filetransfer http delete implementation; Exceptions for IqPacketError ↵steckbrief3-0/+135
added
2016-06-06Related to FS#131, FS#129, FS#220:filetransfersteckbrief14-83/+472
- FileTransferFailureReason including types introduced. A failure can be recoverable, non-recoverable or limited recoverable - in case file transfer with the highest weight factor fails, the next file transfer method is used - improved logging - javadoc comments added
2016-05-29FileTransfer reworked (first steps - functionality as is), HttpUploadsteckbrief14-111/+709
separated, some bugfixes - HttpUpload moved into own package - FileTransfer managed by a central manager class, several FileTransferService implementation can be used - Security initializations moved to ConversationsPlusApplication - Access to PowerManager moved to ConversationsPlusApplication - Removed unused code fragments - Access to HttpConnectionManager is now static
2016-05-09XmppConnectionService.markMessage moved to MessageUtilsteckbrief1-84/+8
XmppConnectionService.attachLocationToConversation moved to ConversationUtil
2016-04-23Fixes FS#204: Observe all used directoriessteckbrief1-40/+3
- 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
2016-04-18Related to FS#199: Removed unnecessary build configuration variable to hide ↵steckbrief1-5/+3
disable button on foreground service notification
2016-04-17DatabaseBackend updated to serve Conversatiosn Database version and ↵steckbrief1-5/+0
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)
2016-04-06Implements FS#189: Move calls of getPreferences to ConversationsPlusPreferencessteckbrief2-65/+33
2016-03-30Logging for FS#80 to identify calling methodlookshe1-0/+1
2016-03-29Implements FS#173: Move access to colors to separate helper classsteckbrief1-1/+2
2016-03-22Fixes FS#87 - Crash on load messages after delete accountlookshe1-1/+5
2016-03-14once again: FS#34 - review all calls for String.trim()lookshe1-3/+3
2016-03-12Fixes FS#155: Check FileHelper vs. FileUtilssteckbrief1-3/+2
2016-03-11Fixes FS#139: Do not merge messages at allsteckbrief1-25/+15
2016-03-10Fixes FS#157: Trigger loading messages from MAM in MUC does not endsteckbrief2-35/+44
2016-02-09Fixes FS#135: condition NOT message.isRead() added to check if notification ↵steckbrief1-1/+1
should be shown for a message
2016-02-09Fixes FS#135: condition NOT message.isRead() added to check if notification ↵steckbrief1-6/+7
should be shown for a message
2016-01-15Introducing some specialized IqPacketGeneratorssteckbrief1-6/+7
- IqPacketGenerator - PubSubPacketGenerator - AvatarPacketGenerator
2016-01-15Moved all avatar related work to AvatarServicesteckbrief2-61/+58
- publishAvatar moved from XmppConnectionService to AvatarService
2016-01-13Moved all avatar related work to AvatarServicesteckbrief3-191/+191
- fetchAvatar, fetchAvatarPep, fetchAvatarVcard, checkForAvatar moved from XmppConnectionService to AvatarService - Several unused imports removed - XmppSendUtil introduced to enable presencePacket and iqPacket sending without using XmppConnectionService since the account has everything needed - UiUpdateHelper introduced to enable UI updates without using XmppConnectionService directly
2015-12-16Implements FS#19, FS#84; Introduces ImageResizeException, MessageUtil and ↵steckbrief1-102/+23
distinguishes between image resizing and compressing/saving
2015-12-10Moved logcat to a module, increased error robustness for loading last messagessteckbrief2-3/+3
2015-12-06Fix flagging no more messages on server for conversationsteckbrief1-1/+1
2015-12-04Fixes FS#75 - Change color names to reasonable namessteckbrief1-1/+1
2015-11-20Implements FS#67: Introduce central logging class to use log prefix, new ↵steckbrief2-49/+49
activity to show logcat output and button to copy contents
2015-11-06FileBackend splitted into several util classes for separate concerns: ↵steckbrief3-166/+138
AvatarUtil, StreamUtil, ImageUtil. Unused imports removed.
2015-11-03Implements FS#26: Introduction of dialog to choose whether to resize a ↵steckbrief1-30/+88
picture or not
2015-10-23Fixes FS#47: WiFi only setting in unencrypted chats bug fixed, typo in ↵steckbrief2-6/+3
values for the setting fixed, preferences involved in the decision for auto downloading image links moved to global Utility Class
2015-10-21Access to preferences moved to global utility class ↵steckbrief3-155/+111
ConversationsPlusPreferences. Unused imports removed. Unnecessary references to XmppConnectionService removed. Bug in call order in StartConversationActivity for the setting hide_offline fixed.
2015-10-15Fixes FS#81 - avoid jumps after loading messagessteckbrief1-22/+32
2015-10-05Fixes FS#70 - Introduction of a ConversationsPlusApplication to get global ↵steckbrief1-1/+2
access to app information
2015-06-19renaming eu.siacs.conversations to de.thedevstack.conversationsplussteckbrief6-0/+3704
"renaming eu.siacs.conversations to de.thedevstack.conversationsplus" package renaming completed