aboutsummaryrefslogtreecommitdiffstats
path: root/MASShortcut+UserDefaults.m
AgeCommit message (Collapse)Author
2013-04-15Fixing the latest changes.Vadim Shpakovski
2013-04-15Fixing a problem with user defaults.Vadim Shpakovski
2013-03-06Fixing a bug with resetting user defaults.Vadim Shpakovski
2013-03-06Adding support for setting default user shortcut in preferences.Vadim Shpakovski
2012-11-10Now the component properly handles your trying to set another handler for an ↵Vadim Shpakovski
existing shortcut. Only the first assignable handler will be working, the second and other handlers all will be ignored. Also, previous workaround with calling performSelector:withObject:afterDelay: is removed, it seems to be working with an apprpriate use of objc_setAssociatedObject.
2012-10-08Fixes problem with view controllers.Vadim Shpakovski
When view controller is loaded from NIB, it posts a notification about changes in user defaults. This causes user defaults watcher to reload the hotkey. Some shortcut objects perform cleanup in -[dealloc], but this method may be called later then -[init] in new shortcut objects. It resulted in freeing just created keyboard shortcut referring to the same user defaults key. The problem has been fixed by moving creation of the replacement hotkey in the next run loop when -[dealloc] is guaranteed to be called in previous watcher.
2012-09-19Isolates monitoring code from data.1.1Vadim Shpakovski
2012-09-19Adds support for direct monitoring shortcuts.Vadim Shpakovski
2012-07-07Fixes all compatibility issues with Xcode 4.3.Vadim Shpakovski
2012-07-06Adds support for registering global shortcuts with handler.Vadim Shpakovski