| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-07 | Organized classes into Xcode folders. | Tomáš Znamenáček | |
| 2015-01-07 | Removed -data and shortcutWithData: from MASShortcut. | Tomáš Znamenáček | |
| Using NSKeyedUnarchiver and NSKeyedArchiver directly is almost the same amount of typing and it’s much clearer what goes on. | |||
| 2015-01-07 | Trivial refactoring. | Tomáš Znamenáček | |
| Forgot one `instancetype`, added `static` to NSString constants, removed unneccessary @synthesize directives. | |||
| 2015-01-07 | Removed [MASShortcut shouldBypass]. | Tomáš Znamenáček | |
| It was never used and the recording can already be cancelled by Esc. | |||
| 2015-01-07 | Introduced `instancetype` return type where appropriate. | Tomáš Znamenáček | |
| 2015-01-07 | Introduced a standalone MASShortcutValidator class to validate shortcuts. | Tomáš Znamenáček | |
| It’s a natural simplification of the MASShortcut class. All MASShortcutView objects use a shared validator by default, but can be reconfigured to use a different validator if needed through the shortcutValidator property. | |||
| 2015-01-07 | Converted keycode macros to plain functions. | Tomáš Znamenáček | |
| Plain functions are less prone to bugs, the compiler understands them better and can offer better error messages, and plain functions can be refactored more easily. | |||
| 2015-01-07 | Introduced a separate header file for keycode definitions. | Tomáš Znamenáček | |
| 2015-01-07 | Added a unit testing target. | Tomáš Znamenáček | |
| 2015-01-07 | Updated documentation to point to the Demo target. | Tomáš Znamenáček | |
| 2015-01-07 | Deleted an unneccessary prefix header for the framework target. | Tomáš Znamenáček | |
| 2015-01-07 | Created an umbrella header. | Tomáš Znamenáček | |
| Now you can just `#import <MASShortcut/Shortcut.h>`. | |||
| 2015-01-07 | Repackaged 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-24 | Merge pull request #52 from starkos/flat-button-stylemaintenance-1.x | Vadim Shpakovski | |
| Flat button style | |||
| 2014-11-24 | Fix indentation on previous commits: tabs to four spaces | Jason Perkins | |
| 2014-11-24 | Add new "flat" button style | Jason Perkins | |
| Hides the button border and background; good for placing several shortcut buttons into a table view. | |||
| 2014-11-21 | Merge pull request #51 from starkos/userdefaults-semicolon-fix | Vadim Shpakovski | |
| Fix "Parse issue: Semicolon before method body is ignored" | |||
| 2014-11-21 | Fix "Parse issue: Semicolon before method body is ignored" | Jason Perkins | |
| 2014-11-03 | Fixes possible memory leak. | Vadim Shpakovski | |
| 2014-09-22 | Final touches to Podspec. | Vadim Shpakovski | |
| 2014-09-22 | Fixed Podspec. | Vadim Shpakovski | |
| 2014-09-22 | Polished Pod spec.1.3.1 | Vadim Shpakovski | |
| 2014-09-22 | Updated podspec. | Vadim Shpakovski | |
| 2014-09-17 | Merge pull request #45 from pfandrade/master1.3 | Vadim Shpakovski | |
| Implemented initWithCoder: to fix #44 | |||
| 2014-09-17 | Implemented -initWithCoder: in MASShortcutView | Paulo F. Andrade | |
| 2014-09-17 | Updated MASShortcut | Paulo F. Andrade | |
| 2014-09-17 | Added support for secure coding | Paulo F. Andrade | |
| 2014-09-02 | Ignoring disabled system shortcuts. | Vadim Shpakovski | |
| 2014-08-27 | Merge pull request #43 from darwin/master | Vadim Shpakovski | |
| allow [MODIFIER]+ESC shortcuts | |||
| 2014-08-26 | allow [MODIFIER]+ESC shortcuts | Antonin Hildebrand | |
| only naked ESC without modifiers should cancel editing http://discuss.binaryage.com/t/cant-change-activation-key-to-control-esc tested in TotalTerminal codebase | |||
| 2014-07-22 | Merge pull request #40 from kainjow/master | Vadim Shpakovski | |
| Fixed compiling with projects that don't use a precompiled header. | |||
| 2014-07-22 | Merge pull request #39 from xhacker/podspec | Vadim Shpakovski | |
| Create MASShortcut.podspec for CocoaPods | |||
| 2014-07-20 | Fixed compiling with projects that don't use a precompiled header. | Kevin Wojniak | |
| 2014-07-18 | Create MASShortcut.podspec | LIU Dongyuan / 柳东原 | |
| 2014-06-14 | Merge pull request #35 from ShadowLightz/master | Vadim Shpakovski | |
| Replace deprecated NSRunCriticalAlertPanel with NSAlert | |||
| 2014-06-14 | Replace depr. NSRunCriticalAlertPanel with NSAlert | ShadowLightz | |
| - Now using modern API - The dialog is now shown as a modal sheet, which suits better - The alert style is changed to NSWarningAlertStyle, - NSCriticalAlertStyle was not required | |||
| 2014-04-06 | Merge pull request #32 from iluuu1994/master | Vadim Shpakovski | |
| Fixed string literal warning | |||
| 2014-04-03 | Replaced call to deprecated NSRunCriticalAlertPanel API | Paulo F. Andrade | |
| 2014-03-31 | Fixed string literal warning | Ilija Tovilo | |
| 2014-02-17 | Added support for secure coding | Paulo F. Andrade | |
| 2014-01-06 | Merge pull request #29 from ShadowLightz/master | Vadim Shpakovski | |
| Silenced compiler warnings, updated README | |||
| 2014-01-06 | update README | Jonathan Rahn | |
| 2014-01-06 | Silence compiler warning "No previous prototype for function..." and added ↵ | Jonathan Rahn | |
| an explicit typecast, update README with a hint to the view's height | |||
| 2013-12-25 | Adding new API for custom drawing.1.2.3 | Vadim Shpakovski | |
| 2013-12-25 | Adding support for custom drawing. | Vadim Shpakovski | |
| 2013-07-31 | Fixing errors in MASShortcutDemo.1.2.2 | Vadim Shpakovski | |
| 2013-06-16 | Improving README.1.2.1 | Vadim Shpakovski | |
| 2013-04-16 | Adding syntax highlighting to the usage section.1.2 | Vadim Shpakovski | |
| 2013-04-16 | Switching to NSUserDefaultsController. | Vadim Shpakovski | |
| NSUserDefaults does not support KVO officially. | |||
| 2013-04-16 | Merge pull request #25 from corybohon/master | Vadim Shpakovski | |
| Adding a Notification section to the documentation. | |||
