Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9266e38517 | |||
| ddab66d2c0 |
@@ -54,12 +54,6 @@
|
||||
NSString *_observableKeyPath;
|
||||
}
|
||||
|
||||
@synthesize monitor = _monitor;
|
||||
@synthesize handler = _handler;
|
||||
@synthesize userDefaultsKey = _userDefaultsKey;
|
||||
|
||||
#pragma mark -
|
||||
|
||||
void *MASShortcutUserDefaultsContext = &MASShortcutUserDefaultsContext;
|
||||
|
||||
- (id)initWithUserDefaultsKey:(NSString *)userDefaultsKey handler:(void (^)())handler
|
||||
|
||||
+10
-10
@@ -1,13 +1,13 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.platform = :osx
|
||||
s.name = 'MASShortcut'
|
||||
s.version = '1.2.3'
|
||||
s.summary = 'Modern framework for managing global keyboard shortcuts compatible with Mac App Store'
|
||||
s.homepage = 'https://github.com/sonoramac/MASShortcut'
|
||||
s.authors = { 'Vadim Shpakovski' => 'vadim@shpakovski.com' }
|
||||
s.license = 'BSD 2-clause'
|
||||
|
||||
s.source = { :git => 'git@github.com:shpakovski/MASShortcut.git', :tag => '1.2.3' }
|
||||
s.source_files = '*.{h,m}'
|
||||
s.framework = 'Carbon'
|
||||
s.requires_arc = true
|
||||
s.version = '1.3'
|
||||
s.summary = 'Modern framework for managing global keyboard shortcuts compatible with Mac App Store'
|
||||
s.homepage = 'https://github.com/shpakovski/MASShortcut'
|
||||
s.authors = { 'Vadim Shpakovski' => 'vadim@shpakovski.com' }
|
||||
s.license = 'BSD 2-clause'
|
||||
s.source = { :git => 'https://github.com/shpakovski/MASShortcut.git', :tag => '1.3' }
|
||||
s.source_files = '*.{h,m}'
|
||||
s.osx.frameworks = 'Carbon', 'AppKit'
|
||||
s.requires_arc = true
|
||||
end
|
||||
|
||||
@@ -45,11 +45,6 @@ void *MASAssociatedDefaultsObserver = &MASAssociatedDefaultsObserver;
|
||||
BOOL _internalShortcutChange;
|
||||
}
|
||||
|
||||
@synthesize userDefaultsKey = _userDefaultsKey;
|
||||
@synthesize shortcutView = _shortcutView;
|
||||
|
||||
#pragma mark -
|
||||
|
||||
- (id)initWithShortcutView:(MASShortcutView *)shortcutView userDefaultsKey:(NSString *)userDefaultsKey
|
||||
{
|
||||
self = [super init];
|
||||
|
||||
Reference in New Issue
Block a user