aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-02-10Added basic German localization to the demo project.Tomáš Znamenáček
This makes it possible to test the German MASShortcut localization on the demo project.
2016-02-05Updated CHANGES.Tomáš Znamenáček
2016-02-05Merge pull request #84 from floschliep/masterVadim Shpakovski
Improve German Localization
2016-02-04Improved German LocalizationFlorian Schliep
I translated the missing strings and improved the existing ones.
2016-01-22Updated CHANGES.Tomáš Znamenáček
2016-01-22Merge pull request #83 from MichaelRow/masterTomáš Znamenáček
Simplified and traditional Chinese localizations.
2016-01-22Simplified and traditional Chinese localizations.MichaelRow
2016-01-09Version bump to 2.3.3.2.3.3Tomáš Znamenáček
2016-01-09Updated CHANGES.Tomáš Znamenáček
2016-01-09Whitespace fixes.Tomáš Znamenáček
2016-01-09Another approach to try a fix for the CocoaPods localization bundle problem ↵Nikita Ivanchikov
(#74). Checking if resources bundle was copied inside framework bundle, then falling back to old search methods
2015-12-06Updated changelog.Tomáš Znamenáček
2015-12-06Merge pull request #80 from magiclantern/magiclantern/french-localizationTomáš Znamenáček
Expanded Frech localization.
2015-12-06Some suggestions for frNikita Ourazbaev
Some suggestions for the gaps in the French localization
2015-12-03Documented that we don’t accept Option-Shift shortcuts by default.Tomáš Znamenáček
The reason is that Option-Shift shortcuts are often already used by system to insert some special characters. See `MASShortcutValidator` for details, including how to enable support for these shortcuts. Fixes #79.
2015-11-06Even more elaborate workaround for the CocoaPods localization problem (#74).Tomáš Znamenáček
Just testing if the CocoaPods bundle is present didn’t work, so now we even try to load a localized string from the bundle.
2015-11-04Trying a fix for the CocoaPods localization bundle problem (#74).Tomáš Znamenáček
This change simply doesn’t try to detect which bundle we should use and tries both bundles, the CocoaPods one first. The chosen bundle is then cached to avoid the overhead on subsequent requests.
2015-10-31Updated CHANGES.Tomáš Znamenáček
2015-10-14Merge pull request #77 from oreshinya/japanese_localizationVadim Shpakovski
Japanese localization
2015-10-14Japanese localizationshinya takahashi
2015-10-12Version bump to 2.3.2.2.3.2Tomáš Znamenáček
2015-10-12Silenced a potential “tautological compare” warning in MASShortcutView.Tomáš Znamenáček
Fixes #76. I considered putting the #pragma just around the particular compare line, but I think having it around the whole block is more readable and there’s little chance of having some legitimate warnings silenced.
2015-10-08Typo fix.Tomáš Znamenáček
2015-10-08Documented the CocoaPods localization fix.Tomáš Znamenáček
2015-10-08Merge pull request #75 from beaufour/masterTomáš Znamenáček
Fixed localization when used from CocoaPods.
2015-10-07fixes localized strings when using CocoaPodsAllan Beaufour
Puts strings inside a MASShortcut resource bundle, and looks for locallized strings inside that bundle when used as a CocoaPod
2015-09-10Updated localization and accessibility status in README.Tomáš Znamenáček
2015-09-10Release 2.3.1.2.3.1Tomáš Znamenáček
2015-09-10Changed MASLocalization.h to explicit import, trying to appease CocopaPods.Tomáš Znamenáček
2015-09-10Release 2.3.0.2.3.0Tomáš Znamenáček
2015-09-10Added basic localization for German, Spanish, French, Italian, and Japanese.Tomáš Znamenáček
2015-08-18Mentioned Carthage in the installation options.Tomáš Znamenáček
2015-08-18Use an absolute URL for the demo screenshot.Tomáš Znamenáček
An absolute URL works better on the CocoaPods website.
2015-08-18Updated contributing guidelines (backward compatibility, commit messages).Tomáš Znamenáček
2015-08-18Removed an obsolete Localizable.string file.Tomáš Znamenáček
2015-08-18Added Czech localization.Tomáš Znamenáček
2015-08-18Updated CHANGES, Info.plist and podspec for the 2.2.0 release.2.2.0Tomáš Znamenáček
2015-08-10Merge pull request #71 from Stillness-2/masterVadim Shpakovski
Some fix
2015-08-09fix for keyboard navigationRoman Sokolov
Tab key must pass through. This is important if you want to do keyboard navigation through this control.
2015-08-09FixRoman Sokolov
Fix problem: Set hotkey [TheSameHOTKEY], then mousedown on delete button, then set hotkey again [TheSameHOTKEY], then this hotkey do not work.
2015-04-10Merge pull request #69 from pfandrade/masterTomáš Znamenáček
Not declaring MASShortcutGlyph as a variable in the header. Prevents duplicate symbol errors.
2015-04-09Not declaring MASShortcutGlyph as a variable in the headerPaulo F. Andrade
2015-03-09Namespaced the testing build scheme name (Tests → MASShortcutTests).Tomáš Znamenáček
2015-03-09Updated CHANGES.Tomáš Znamenáček
2015-03-09Merge pull request #67 from brow/carthageVadim Shpakovski
Support installation with Carthage
2015-03-08add Carthage compatibility flag to READMETom Brow
2015-03-08missing import?Tom Brow
2015-03-08module mapTom Brow
2015-03-08DEFINES_MODULE = YESTom Brow
2015-03-05Removed support for dots and spaces in user defaults keys (#64).Tomáš Znamenáček
I could find no way to make the feature work, so I have pulled it from the code. I have also inserted asserts to warn library users who would attempt to use illegal characters in user defaults keys in the future. In short, you want your user defaults keys to be something identifier-like.