summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-12-09Handle stream errors in client session.Remko Tronçon
2010-12-05Added plumbing for persistent certificate trust checking.Remko Tronçon
2010-11-28Change Chat Window titles when contacts are renamed.Kevin Smith
Resolves: #630 Release-Notes: Chat window titles will be updated when contacts are renamed.
2010-11-28Change error from optional to shared_ptr in GenericRequestRemko Tronçon
Resolves: #692
2010-11-28Rebind chat dialogs on just about anything.Kevin Smith
Resolves: #646 Release-Notes: Duplicate chat windows when contacts are using multiple clients should now be avoided.
2010-11-16Remember previous MUC service searches.Kevin Smith
Resolves: #615 Release-Notes: The MUC Search will now remember previously searched services.
2010-11-16Pass NetworkFactories as an explicit dependency into client.Remko Tronçon
2010-11-15Don't show unread events after signout.Kevin Smith
Resolves: #685 Release-Notes: Signing out with unread events will no longer trap your system tray with unread messages.
2010-11-15Sanitise the Roster widget on signout.Kevin Smith
This will hopefully avoid crashes in the RosterDelegate due to Qt believing that the RosterItems still exist and that it can read them. Unverified as I can't reproduce the crash on this machine, but hopefully Resolves: #678
2010-11-15Clean MUC joins slightly.Kevin Smith
In an attempt to catch errors, this doesn't Resolves: #691 but does add an assert that may help. It also fixes an error with created rooms not receiving updates presences. Release-Notes: Newly-created rooms will now receive your presence updates, consistent with existing rooms.
2010-11-12Persist toggle show offline.Kevin Smith
Resolves: #689 Release-Notes: The toggle state for showing offline contacts will now persist between restarts.
2010-11-11Avoided compilation warnings.Remko Tronçon
2010-11-09Only request new MUC context when rejoining.Kevin Smith
Resolves: #542 Release-Notes: On reconnects, existing MUC history now won't be replayed.
2010-11-08Brute force application of presence to roster items on add/modify.Kevin Smith
Resolves: #655 Resolves: #672 Release-Notes: The roster should no longer sometimes show online users as offline.
2010-11-07Refactoring certificates & certificate checking.Remko Tronçon
2010-11-06Use EntityCapsProvider in Swiften.Remko Tronçon
2010-11-03Centralizing predefined features in DiscoInfo.Remko Tronçon
2010-11-03Added ClientDiscoManager.Remko Tronçon
2010-11-03Refactoring Presence & MUC handling.Remko Tronçon
2010-11-01Disable bookmarks when offline.Kevin Smith
Resolves: #679 Release-Notes: You can no longer use bookmarks while offline.
2010-11-01Small tweaks to DummySystemTray & MemoryStoragesFactory.Remko Tronçon
2010-11-01Added dummy sound player & system tray.Remko Tronçon
2010-10-30When MUC notifications are clicked, open the MUC.Remko Tronçon
Release-Notes: When clicking notifications coming from rooms, bring up the room dialog. Resolves: #674
2010-10-30Disconnect client cleanly before quitting.Remko Tronçon
Resolves: #671, #420
2010-10-30Changed CoreClient::onError to CoreClient::onDisconnected.Remko Tronçon
The error parameter is optional.
2010-10-29Make ChatStateNotifier use StanzaChannel directly.Remko Tronçon
2010-10-28Correctly mark roster items with the highest priority status.Kevin Smith
Resolves: #668
2010-10-27Remove MainEventLoop singleton.Remko Tronçon
The event loop now needs to be explicitly passed to clients using it.
2010-10-25Remove the use of Shared<>.Remko Tronçon
2010-10-24Remove some unused code in MainController.Remko Tronçon
2010-10-24Moving more from Swift to Client.Remko Tronçon
2010-10-24Created Storages interface.Remko Tronçon
2010-10-24Moved MUCRegistry into client.Remko Tronçon
2010-10-24Moved PresenceSender to client.Remko Tronçon
2010-10-24Blind attempt at animated system trayKevin Smith
2010-10-24Rejoin MUCs on reconnect.Kevin Smith
Resolves: #625 Release-Notes: MUCs will once again be rejoined on reconnect.
2010-10-24Provide feedback in the status header when attempting to connect.Kevin Smith
Resolves: #657 Release-Notes: The status setter now shows when you're connecting.
2010-10-24Use the highest priority for a contact's roster item, not the newest.Kevin Smith
Resolves: #654 Release-Notes: Contacts online from several clients at once should now show the highest priority presence, not the most recent.
2010-10-24Creating abstract XMPPRoster base class.Remko Tronçon
2010-10-23Make sure presence isn't type error before updating roster.Kevin Smith
Resolves: #622 Release-Notes: Errors received from your contacts when setting your status will no longer cause the contacts to mirror your new status.
2010-10-23Don't lose notification enabledness when the user changes status.Remko Tronçon
Resolves: #651 Release-Notes: The notification toggle on Linux will now be respected.
2010-10-22Fixed memory leaks and segfault on signout.Remko Tronçon
2010-10-22Be smarter about combining JoinParts in MUCs.Kevin Smith
Resolves: 620 Release-Notes: Joins and parts in MUCs will now be merged in a more natural way.
2010-10-22Minor fixes to MUCs.Kevin Smith
Resolves: #626 Resolves: #632 Release-Notes: Notices will now be generated if someone says your nick in the MUC in any variant of capitalisation, and will not be generated if it was you that said it.
2010-10-22Don't send composing events to offline users.Kevin Smith
Resolves: #637
2010-10-21Don't show popups for message bounches.Remko Tronçon
Resolves: #647 Release-Notes: We no longer trigger popup notifications when a message bounches.
2010-10-21Moving queries & responders around.Remko Tronçon
2010-10-21Fixed authentication problems on reconnect.Remko Tronçon
Release-Notes: Fixed a bug where reconnecting to a different account after signout would fail authenticating.
2010-10-20Tell MUCController to handle disconnect/reconnect rejoins.Kevin Smith
This causes the MUCController to deal with reconnects by requesting a rejoin. It also prepares for doing time-based context requests. Although I've traced the code down, and confirmed that presenceSender->sendPresence(joinPresence); is being called, the stanza is never sent. This needs further investigation, as currently it prevents the rejoins working. Resolves: #625
2010-10-15Fixed a segfault with pending events.Remko Tronçon
Release-Notes: Fixed a potential crash on signout when events are pending.