aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-01-28Version bump to 2.1.2.2.1.2Tomáš Znamenáček
2015-01-28Documented that keyCodeString depends on active keyboard layout.Tomáš Znamenáček
2015-01-28Talk about shortcut “formatting” instead of “rendering”.Tomáš Znamenáček
2015-01-28Better key equivalent handling on non-ASCII keyboard layouts.Dmitry Obukhov
See #60 for a discussion. In short, keyCodeStringForKeyEquivalent should be now correct even with non-ASCII keyboard layouts such as Russian.
2015-01-28Clarified the spec part about rendering shortcuts.Tomáš Znamenáček
2015-01-28Added a note about shortcut rendering in the spec.Tomáš Znamenáček
2015-01-26Added a short release guide.Tomáš Znamenáček
2015-01-19Improved screenshot quality.Tomáš Znamenáček
2015-01-19Mentioned installation via Git submodules.Tomáš Znamenáček
2015-01-19Linked to the API documentation.Tomáš Znamenáček
2015-01-19Smaller screenshot.Tomáš Znamenáček
2015-01-19Added a list of features and a screenshot of the demo project.Tomáš Znamenáček
2015-01-16Version bump to 2.1.1.2.1.1Tomáš Znamenáček
2015-01-16Decrease headerdoc indenting to appease appledoc (see #55).Tomáš Znamenáček
I think I have finally found out the reason for CocoaDocs ignoring our markup: I have indented the documentation by four spaces, which was interpreted as “code” by appledoc. Trying now without the indent, that should finally help.
2015-01-16Version bump to 2.1.0.2.1.0Tomáš Znamenáček
2015-01-16Merge pull request #57 from shpakovski/legacy-osx-supportTomáš Znamenáček
Legacy OS X support down to 10.6 included (fixes #56).
2015-01-16Removed section about ARC support from README.Tomáš Znamenáček
There are now two officially supported ways to use MASShortcut: through including the Xcode project in your app’s workspace and linking against MASShortcut.framework, and through CocoaPods. Both options work well in both ARC and MRC projects with no additional settings needed. (I use MASShortcut in a MRC project myself.)
2015-01-14Added test for hotkeys and shortcut monitor.Tomáš Znamenáček
2015-01-14Updating to current master.Tomáš Znamenáček
2015-01-14Use the clear glyph instead of backspace for clearing a shortcut.Tomáš Znamenáček
The recording control used to display the backspace glyph (U+232B) on the button that clears the shortcut. That’s a bit confusing, since the same backspace glyph can also appear inside the control, representing the recorded shortcut. The clear glyph (U+2715, diagonal cross) seems like a better fit – it’s already used in similar context throughout the Apple UIs like search bars.
2015-01-14Updated headerdoc markup for MASShortcutView+Bindings.Tomáš Znamenáček
2015-01-13Fix README.Vadim Shpakovski
2015-01-13Merge pull request #59 from aral/patch-1Vadim Shpakovski
Added explicit instructions for use in Swift
2015-01-13Added explicit instructions for use in SwiftAral Balkan
The explicit Cocoa import had tripped me up. Would be good to save someone the same hassle.
2015-01-13Merge branch 'master' into legacy-osx-support.Tomáš Znamenáček
Conflicts: CHANGES
2015-01-13Added the Travis build status badge to the README.Tomáš Znamenáček
2015-01-13Merge pull request #58 from zoul/travisVadim Shpakovski
Add support for Travis Continuous Integration server.
2015-01-13Added shared Xcode schemes to help Travis with the build.Tomáš Znamenáček
2015-01-13Added a barebones Travis config file.Tomáš Znamenáček
2015-01-13Changed headerdoc markup to work better with CocoaDocs (closes #55).Tomáš Znamenáček
2015-01-12Non-exclusive hotkey registration (#56).Tomáš Znamenáček
2015-01-12Updated Deployment Target setting in podspec.Tomáš Znamenáček
2015-01-12Added support for older OS X releases back to 10.6 included.Tomáš Znamenáček
Apart from turning off Auto Layout for the Demo project, the only thing remaining was several __weak qualifiers to prevent retain cycles in blocks. I have replaced them with __unsafe_unretained since __weak is not supported on 10.6. There should be no safety concerns here, since we are certain the pointers will remain valid.
2015-01-09Remove Xcode warnings and fix the hard-coded shortcut.Vadim Shpakovski
2015-01-09Removed an obsolete reference to the XCTest framework.Tomáš Znamenáček
2015-01-09Trivial podspec whitespace fixes.Tomáš Znamenáček
2015-01-09Fixed Podspec (silly me).2.0.1Tomáš Znamenáček
2015-01-09Updated CHANGES before 2.0.0.2.0.0Tomáš Znamenáček
2015-01-09Added myself to Podspec “authors” field.Tomáš Znamenáček
2015-01-09Markup fixes in README.Tomáš Znamenáček
2015-01-09Added a note about Shortcut Recorder compatibility (#54).Tomáš Znamenáček
2015-01-09Added CocoaPods installation instructions (#54).Tomáš Znamenáček
2015-01-09Expanded demo functionality (preparing for 2.0.0, see #54).Tomáš Znamenáček
Mostly back to the previous version with enable/disable checkboxes & one settable and one hard-coded shortcut. I have tried to come up with a nicer pattern to watch the enabled/disabled checkboxes, but without external dependencies like Facebook’s KVOController I didn’t come up with anything better than plain old KVO.
2015-01-08Simplified and updated the demo project.Tomáš Znamenáček
2015-01-08MASShortcutMonitor will silently skip nil shortcuts passed to ↵Tomáš Znamenáček
unregisterShortcut:.
2015-01-08Merge pull request #53 from zoul/2.0-candidateTomáš Znamenáček
Thank you very much!
2015-01-08Ignore disabled system shortcuts.Tomáš Znamenáček
This was implemented before in 0633545a, but lost during the rebase.
2015-01-08Documented the recording control behaviour and implemented Cmd-W/Q.Tomáš Znamenáček
2015-01-07Updated copyright & versioning info in the framework’s Info.plist.Tomáš Znamenáček
2015-01-07Added a CHANGES file to keep users posted about important changes.Tomáš Znamenáček