Skip to content

Commit

Permalink
Updated to latest ShortcutRecorder.
Browse files Browse the repository at this point in the history
  • Loading branch information
flit committed Jan 26, 2020
1 parent 02d4773 commit 667cef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShortcutRecorder
Submodule ShortcutRecorder updated 77 files
+2 −0 .codecov.yml
+5 −1 .gitignore
+27 −0 .travis.yml
+17 −0 CHANGES.md
+4 −4 Documentation.playground/Pages/Integration with Interface Builder.xcplaygroundpage/Contents.swift
+54 −10 Documentation.playground/Pages/Shortcut, Validation and Monitoring.xcplaygroundpage/Contents.swift
+535 −0 Documentation.playground/Pages/Showcase.xcplaygroundpage/Contents.swift
+1 −0 Documentation.playground/Pages/Using the Control.xcplaygroundpage/Contents.swift
+2 −1 Documentation.playground/contents.xcplayground
+18 −5 Inspector/App.swift
+30 −30 Inspector/LayoutInspectorController.xib
+7 −7 Inspector/Main.storyboard
+8 −8 Inspector/Views.swift
+0 −93 LICENSE.md
+337 −0 LICENSE.txt
+4 −4 Library/Info.plist
+33 −2 Library/SRCommon.h
+7 −28 Library/SRCommon.m
+30 −0 Library/SRKeyBindingTransformer.h
+224 −0 Library/SRKeyBindingTransformer.m
+6 −1 Library/SRKeyCodeTransformer.h
+346 −116 Library/SRKeyCodeTransformer.m
+7 −0 Library/SRKeyEquivalentModifierMaskTransformer.h
+8 −1 Library/SRKeyEquivalentTransformer.h
+3 −0 Library/SRModifierFlagsTransformer.h
+16 −16 Library/SRModifierFlagsTransformer.m
+5 −6 Library/SRRecorderControl.h
+50 −32 Library/SRRecorderControl.m
+30 −0 Library/SRRecorderControlStyle.h
+54 −26 Library/SRRecorderControlStyle.m
+7 −0 Library/SRShortcut.h
+14 −8 Library/SRShortcut.m
+467 −0 Library/SRShortcutAction.h
+1,359 −0 Library/SRShortcutAction.m
+9 −12 Library/SRShortcutController.h
+26 −23 Library/SRShortcutController.m
+0 −183 Library/SRShortcutRegistration.h
+0 −655 Library/SRShortcutRegistration.m
+11 −15 Library/SRShortcutValidator.m
+2 −1 Library/ShortcutRecorder.h
+34 −22 README.md
+ Resources/ca.lproj/ShortcutRecorder.strings
+ Resources/cs.lproj/ShortcutRecorder.strings
+ Resources/de.lproj/ShortcutRecorder.strings
+ Resources/el.lproj/ShortcutRecorder.strings
+ Resources/en.lproj/ShortcutRecorder.strings
+ Resources/es-MX.lproj/ShortcutRecorder.strings
+ Resources/es.lproj/ShortcutRecorder.strings
+ Resources/fr.lproj/ShortcutRecorder.strings
+ Resources/it.lproj/ShortcutRecorder.strings
+ Resources/ja.lproj/ShortcutRecorder.strings
+ Resources/ko.lproj/ShortcutRecorder.strings
+ Resources/nb.lproj/ShortcutRecorder.strings
+ Resources/nl.lproj/ShortcutRecorder.strings
+ Resources/pl.lproj/ShortcutRecorder.strings
+ Resources/pt-BR.lproj/ShortcutRecorder.strings
+ Resources/pt.lproj/ShortcutRecorder.strings
+ Resources/ro.lproj/ShortcutRecorder.strings
+ Resources/ru.lproj/ShortcutRecorder.strings
+ Resources/sk.lproj/ShortcutRecorder.strings
+ Resources/sv.lproj/ShortcutRecorder.strings
+ Resources/th.lproj/ShortcutRecorder.strings
+ Resources/zh-Hans.lproj/ShortcutRecorder.strings
+ Resources/zh-Hant.lproj/ShortcutRecorder.strings
+10 −8 ShortcutRecorder.podspec
+56 −45 ShortcutRecorder.xcodeproj/project.pbxproj
+15 −17 ShortcutRecorder.xcodeproj/xcshareddata/xcschemes/Inspector.xcscheme
+16 −18 ShortcutRecorder.xcodeproj/xcshareddata/xcschemes/ShortcutRecorder.framework.xcscheme
+27 −0 Unit Tests/SRKeyBindingTransformerTests.swift
+434 −26 Unit Tests/SRKeyCodeTransformerTests.swift
+0 −6 Unit Tests/SRKeyEquivalentModifierMaskTransformerTests.swift
+1 −7 Unit Tests/SRKeyEquivalentTransformerTests.swift
+1 −1 Unit Tests/SRModifierFlagsTransformerTests.swift
+786 −0 Unit Tests/SRShortcutActionTests.swift
+13 −11 Unit Tests/SRShortcutControllerTests.swift
+0 −182 Unit Tests/SRShortcutRegistrationTests.swift
+1 −1 Unit Tests/Utility.swift

0 comments on commit 667cef8

Please sign in to comment.