aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/services/XmppConnectionService.java (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-04-06Implements FS#189: Move calls of getPreferences to ConversationsPlusPreferencessteckbrief1-64/+32
2016-03-30Logging for FS#80 to identify calling methodlookshe1-0/+1
2016-03-22Fixes FS#87 - Crash on load messages after delete accountlookshe1-1/+5
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 endsteckbrief1-19/+21
2016-01-15Moved all avatar related work to AvatarServicesteckbrief1-61/+0
- publishAvatar moved from XmppConnectionService to AvatarService
2016-01-13Moved all avatar related work to AvatarServicesteckbrief1-181/+9
- 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 messagessteckbrief1-1/+2
2015-11-20Implements FS#67: Introduce central logging class to use log prefix, new ↵steckbrief1-45/+45
activity to show logcat output and button to copy contents
2015-11-06FileBackend splitted into several util classes for separate concerns: ↵steckbrief1-142/+118
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 ↵steckbrief1-2/+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 ↵steckbrief1-127/+99
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-06-19renaming eu.siacs.conversations to de.thedevstack.conversationsplussteckbrief1-53/+53
"renaming eu.siacs.conversations to de.thedevstack.conversationsplus" package renaming completed
2015-06-05made i/o and memory intensive operations execute in serial orderDaniel Gultsch1-11/+18
2015-06-03reworked handeling of system contactsDaniel Gultsch1-3/+12
2015-05-26removed unnecessary / inacurate debug loggingDaniel Gultsch1-2/+1
2015-05-26update unread count badge only when necessaryDaniel Gultsch1-7/+11
2015-05-26added default iq handler to print some iq error messagesDaniel Gultsch1-4/+16
2015-05-26renamed OtrEngine to OtrServiceDaniel Gultsch1-3/+3
2015-05-25log connection age and reshedule ping checkDaniel Gultsch1-4/+11
2015-05-20added ShortcutBadger as a dependency to create unread counts on launcher iconDaniel Gultsch1-6/+18
2015-05-20provide helper function for getting the content of a child directlyDaniel Gultsch1-2/+1
2015-05-16let jingle connection and manager handle message statusDaniel Gultsch1-4/+0
2015-05-13clear avatar cache when uploading new avatarDaniel Gultsch1-0/+1
2015-05-12handle conference invites differently to deal with killed activities. fixes ↵Daniel Gultsch1-0/+1
#1188
2015-05-08config option to reset attempt counts when changing network (default=true)Daniel Gultsch1-8/+18
2015-05-07fixed npe when binval value of vcard avatar is nullDaniel Gultsch1-2/+3
2015-05-05avoid fetching avatars multiple times in parallelDaniel Gultsch1-8/+39
2015-05-05r/o support for vcard avatars. pep avatars will be preferedDaniel Gultsch1-9/+44
2015-04-23send invite to other instanzes after creating ad hoc conference. fixes #1136Daniel Gultsch1-0/+8
2015-04-21OTR: Fix onContactStatusChanged & dont archive OTRBrianBlade1-5/+15
- Fix session handling on contact status change: Do not reset potentially active sessions; check peer's OTR-resource on disconnect - use no-permanent-store hint instead of no-store to ensure finished messages are delivered to offline/disconnected clients - add no-permanent-store to ask compliant servers not to archive OTR messages
2015-04-14changed received and read confirmation setting to one list and put it to ↵lookshe1-9/+1
settings class
2015-04-12implementation for downloading only when enabled wlanlookshe1-0/+20
2015-04-11differ between received and read messagelookshe1-1/+5
2015-04-11Add option to use MTM without default TrustManagerBrianBlade1-3/+16
Add a new "Don't trust system CAs" preference under advanced options that will change the behaviour of the MemorizingTrustManager. All formerly unknown certificates will raise a warning if checked.
2015-04-09don't resume old session when changing resourceiNPUTmice1-0/+5
2015-04-08Enable end-conversation by swipe gestureBrianBlade1-0/+1
Add EnhancedListView library de.timroes.android:EnhancedListView:0.3.4 to enable swipe-out for ListViews Re-enable selectableItemBackground Dont end selectedConversation on swipe Call mConversationFragment.reinit() instead. Add separate undo string for swipe MUC. Add blacklistedConversation for undo swipe Update title_undo_swipe_* strings Fix undo(), rename blacklistedConversation Fix discardUndo(); re-init selectedConversation maintain scroll position after undo clear notification when dismissing a conversation modified / simplified maintain scroll position code simplify handling of selectedConversation change undo_muc string, remove notifyDataSetChanged()
2015-03-18# add delivery receipts for private muc msgsBrianBlade1-1/+1
# enable update last-seen for muc-msgs
2015-03-07display geo uris as location. show 'send loction' in share menu if request ↵iNPUTmice1-0/+18
location intent can be resolved
2015-03-05avoid unnecessary thread creationiNPUTmice1-16/+21
2015-03-02added methods to count number of unread messagesDaniel Gultsch1-0/+8
2015-03-01mark all sent messages up to a marker as displayedDaniel Gultsch1-9/+10
2015-02-23reset incoming chat state when going into backgroundiNPUTmice1-0/+3
2015-02-21added typing notifications through XEP-0085. fixed #210iNPUTmice1-0/+22
2015-02-18always go through reconnect method instead of just starting XmppConnection ↵iNPUTmice1-4/+1
threads
2015-02-17moved roster loading to async task as welliNPUTmice1-10/+22