aboutsummaryrefslogtreecommitdiffstats
path: root/MASShortcut+UserDefaults.m
AgeCommit message (Collapse)Author
2015-01-07Repackaged the code as a framework and included the demo.Tomáš Znamenáček
Packaging the code as a framework is mostly just a formality. It doesn’t really change much, it just turns the code into a regular component. What it does change is that the code now has its own Xcode settings, which could make compatibility easier in the long run. Including the demo in the main repository makes it easier to hack on the library, since you can try the changes immediately. It also shows how to bundle the framework into an app that uses it.
2014-11-21Fix "Parse issue: Semicolon before method body is ignored"Jason Perkins
2014-09-22Polished Pod spec.1.3.1Vadim Shpakovski
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