summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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.
2010-10-10Moved presenceOracle inside Client.Remko Tronçon
2010-10-10Fix a crash when signing out.Remko Tronçon
Release-Notes: Don't crash when signing out.
2010-10-10Moved XMPP roster & controller from Swift to Client.Remko Tronçon
2010-10-10Move SoftwareVersion responder from Swift to Client.Remko Tronçon
2010-10-10Client refactoring.Remko Tronçon
Removing inheritance from StanzaChannel to trim down the public API.
2010-10-10Move SoftwareVersionResponder constructor arguments to setter.Remko Tronçon
2010-10-10Refactor responders to only start on start().Remko Tronçon
2010-10-09Move Settings to Swift/Controllers.Remko Tronçon
2010-10-09Added EchoBot walkthrough example.Remko Tronçon
2010-10-08Regrouping nick-less contacts now correctly renders them as a JID in the roster.Kevin Smith
Resolves: #606
2010-10-08Fixing assorted memory leaks.Kevin Smith
Resolves: #329
2010-10-08Fix for very unlikely timing-related crash when quitting during event handlingKevin Smith
2010-10-08Update roster header even when going offline.Kevin Smith
Resolves: #596 Release-Notes: The roster header will no longer show you with (No message) if you specify a message when you go offline.
2010-10-08Cancel chat state display when offline.Kevin Smith
Release-Notes: Contacts will no longer show as 'typing' if you go offline before they've sent the message. Resolves: #561
2010-10-07Code cleanup from recent commitsKevin Smith
2010-10-05Create 'Enable notifications' menu on Linux.Kevin Smith
I've not actually tested this on Linux... Resolves: #594
2010-10-04Disable the notifier when going to DND.Remko Tronçon
Resolves: #572
2010-10-04Implement getBoundJID() (as getJID())Remko Tronçon
Resolves: #582
2010-10-04Only bounce the dock (or flash the taskbar) on readable messages.Kevin Smith
Resolves: #453
2010-10-04Re-apply the contact's presence after roster changes.Kevin Smith
Resolves: #578
2010-10-03Don't treat role changes as a mergeable status changeKevin Smith
2010-10-03Show contacts as unavailable after subscription removal.Kevin Smith
Resolves: #455
2010-10-03Only jump the Mac dock when a Notice is generated.Kevin Smith
Release-Notes: The Mac Dock icon has stopped jumping when it shouldn't. Resolves: #444 Resolves: #453
2010-10-02Fix for group expandiness persistencyKevin Smith
2010-10-02Persist roster group expandiness.Kevin Smith
Release-Notes: Whether roster groups are expanded or collapsed is now persisted between sessions. Resolves: #399
2010-10-01Only show system tray message icon for message events.Kevin Smith
Resolves: #583
2010-10-01Improve spacing in status messages in chat dialogsKevin Smith
2010-10-01Reuse server-generated resources.Kevin Smith
Once a new method has been implemented in Client, this will re-use a server-generated resource for re-connections within the same Swift session. This provides a stable resource for the session, preventing MUC ghosts and similar artifacts due to server or network failures, without disclosing additional information like hostnames in the resource. Resolves: #563
2010-10-01Use caps for enabling chat state notifications.Kevin Smith
Resolves: #93