v3.0.4
Enhancements
- Added
keyEquivalent
property toKeyCombo
. ( #50 )KeyCombo.characters
returns the string that is entered when the modifier is actually pressed. (e.g.:⌘V
→v
,⇧V
→V
,⌥V
→√
)KeyCombo.keyEquivalent
returns a string which takes into account only the Shift key. (e.g.:⌘V
→v
,⇧V
→V
,⌥V
→v
,⌥⇧V
→V
)
To make keyEquivalent
case-sensitive, use keyEquivalent.uppercased()
if you want to use it in uppercase.
Bugfixes
- Renamed
convertSupportCococaModifiers
toconvertSupportCocoaModifiers
. ( #50 )