terminal-notifier 1.6.1 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/terminal-notifier.rb +2 -2
- data/vendor/terminal-notifier/Ruby/Rakefile +9 -9
- data/vendor/terminal-notifier/Ruby/lib/terminal-notifier.rb +2 -2
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.pbxproj +4 -0
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.xcworkspace/xcshareddata/Terminal Notifier.xccheckout +41 -0
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/xcshareddata/xcschemes/Terminal Notifier.xcscheme +1 -1
- data/vendor/terminal-notifier/Terminal Notifier/Terminal Notifier-Info.plist +2 -2
- data/vendor/terminal-notifier/Terminal Notifier/en.lproj/MainMenu.xib +217 -21
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/Info.plist +9 -9
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/MacOS/terminal-notifier +0 -0
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6420104ac52e5455d13b92461b2a9a18d4788e3
|
4
|
+
data.tar.gz: 41b655846b9d7e83f246cc093b148d36c8eccad3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69e1373385c99b778b905fe4cb21e236c030902c6e6f53fa28793cf116cfa7a74cac943da32b27993ec5496c2d79c74f2d54f088759328374350525c3700433e
|
7
|
+
data.tar.gz: 9eee293a152cb079f3690fd2c0d90649dfba0d9651e9672761e6a8c5c1352efa331c07cbdfaaf815c0ef32912cd652bf9e53363df9a19ab9173f59a13275c847
|
data/lib/terminal-notifier.rb
CHANGED
@@ -6,7 +6,7 @@ module TerminalNotifier
|
|
6
6
|
class UnsupportedPlatformError < StandardError; end
|
7
7
|
# Returns wether or not the current platform is Mac OS X 10.8, or higher.
|
8
8
|
def self.available?
|
9
|
-
@available ||= Gem::Version.new(version) > Gem::Version.new('10.8')
|
9
|
+
@available ||= (/darwin/ =~ RUBY_PLATFORM) && Gem::Version.new(version) > Gem::Version.new('10.8')
|
10
10
|
end
|
11
11
|
|
12
12
|
def self.version
|
@@ -25,7 +25,7 @@ module TerminalNotifier
|
|
25
25
|
end
|
26
26
|
result
|
27
27
|
else
|
28
|
-
|
28
|
+
STDERR.print "terminal-notifier is only supported on Mac OS X 10.8, or higher."
|
29
29
|
end
|
30
30
|
end
|
31
31
|
|
@@ -15,34 +15,34 @@ end
|
|
15
15
|
|
16
16
|
task :clean do
|
17
17
|
rm zipfile
|
18
|
-
rm_rf
|
18
|
+
rm_rf 'vendor'
|
19
19
|
end
|
20
20
|
|
21
|
-
desc
|
21
|
+
desc 'Fetch latest build from the GitHub releases'
|
22
22
|
task :update_build do
|
23
23
|
unless File.exist?(zipfile)
|
24
24
|
sh "curl -L -O 'https://github.com/alloy/terminal-notifier/archive/#{zipfile}'"
|
25
25
|
end
|
26
26
|
|
27
|
-
rm_rf
|
28
|
-
mkdir
|
27
|
+
rm_rf 'vendor'
|
28
|
+
mkdir 'vendor'
|
29
29
|
|
30
30
|
sh "unzip -o -d vendor #{zipfile}"
|
31
31
|
mv "vendor/#{filename}", 'vendor/terminal-notifier'
|
32
32
|
|
33
|
-
|
33
|
+
sh 'cd .. && xcodebuild -target terminal-notifier SYMROOT=build -verbose && cd -'
|
34
34
|
mv '../build/Release/terminal-notifier.app', 'vendor/terminal-notifier/'
|
35
35
|
chmod 0755, 'vendor/terminal-notifier/terminal-notifier.app/Contents/MacOS/terminal-notifier'
|
36
36
|
end
|
37
37
|
|
38
|
-
desc
|
38
|
+
desc 'Build gem'
|
39
39
|
task :gem => :update_build do
|
40
|
-
sh
|
40
|
+
sh 'gem build terminal-notifier.gemspec'
|
41
41
|
end
|
42
42
|
|
43
|
-
desc
|
43
|
+
desc 'Run specs'
|
44
44
|
task :spec do
|
45
|
-
sh
|
45
|
+
sh 'bundle exec ruby spec/terminal-notifier_spec.rb'
|
46
46
|
end
|
47
47
|
|
48
48
|
task :default => :spec
|
@@ -6,7 +6,7 @@ module TerminalNotifier
|
|
6
6
|
class UnsupportedPlatformError < StandardError; end
|
7
7
|
# Returns wether or not the current platform is Mac OS X 10.8, or higher.
|
8
8
|
def self.available?
|
9
|
-
@available ||= Gem::Version.new(version) > Gem::Version.new('10.8')
|
9
|
+
@available ||= (/darwin/ =~ RUBY_PLATFORM) && Gem::Version.new(version) > Gem::Version.new('10.8')
|
10
10
|
end
|
11
11
|
|
12
12
|
def self.version
|
@@ -25,7 +25,7 @@ module TerminalNotifier
|
|
25
25
|
end
|
26
26
|
result
|
27
27
|
else
|
28
|
-
|
28
|
+
STDERR.print "terminal-notifier is only supported on Mac OS X 10.8, or higher."
|
29
29
|
end
|
30
30
|
end
|
31
31
|
|
@@ -265,8 +265,10 @@
|
|
265
265
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
266
266
|
GCC_PREFIX_HEADER = "Terminal Notifier/Terminal Notifier-Prefix.pch";
|
267
267
|
INFOPLIST_FILE = "Terminal Notifier/Terminal Notifier-Info.plist";
|
268
|
+
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
268
269
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
269
270
|
PROVISIONING_PROFILE = "";
|
271
|
+
SDKROOT = macosx;
|
270
272
|
WRAPPER_EXTENSION = app;
|
271
273
|
};
|
272
274
|
name = Debug;
|
@@ -278,8 +280,10 @@
|
|
278
280
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
279
281
|
GCC_PREFIX_HEADER = "Terminal Notifier/Terminal Notifier-Prefix.pch";
|
280
282
|
INFOPLIST_FILE = "Terminal Notifier/Terminal Notifier-Info.plist";
|
283
|
+
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
281
284
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
282
285
|
PROVISIONING_PROFILE = "";
|
286
|
+
SDKROOT = macosx;
|
283
287
|
WRAPPER_EXTENSION = app;
|
284
288
|
};
|
285
289
|
name = Release;
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>IDESourceControlProjectFavoriteDictionaryKey</key>
|
6
|
+
<false/>
|
7
|
+
<key>IDESourceControlProjectIdentifier</key>
|
8
|
+
<string>A55309C1-2ABD-460A-B080-5A322DCAF4B5</string>
|
9
|
+
<key>IDESourceControlProjectName</key>
|
10
|
+
<string>Terminal Notifier</string>
|
11
|
+
<key>IDESourceControlProjectOriginsDictionary</key>
|
12
|
+
<dict>
|
13
|
+
<key>9F67DD19109869B0F5A85172DA9B0D3E8F7EF383</key>
|
14
|
+
<string>github.com:alloy/terminal-notifier.git</string>
|
15
|
+
</dict>
|
16
|
+
<key>IDESourceControlProjectPath</key>
|
17
|
+
<string>Terminal Notifier.xcodeproj</string>
|
18
|
+
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
|
19
|
+
<dict>
|
20
|
+
<key>9F67DD19109869B0F5A85172DA9B0D3E8F7EF383</key>
|
21
|
+
<string>../..</string>
|
22
|
+
</dict>
|
23
|
+
<key>IDESourceControlProjectURL</key>
|
24
|
+
<string>github.com:alloy/terminal-notifier.git</string>
|
25
|
+
<key>IDESourceControlProjectVersion</key>
|
26
|
+
<integer>111</integer>
|
27
|
+
<key>IDESourceControlProjectWCCIdentifier</key>
|
28
|
+
<string>9F67DD19109869B0F5A85172DA9B0D3E8F7EF383</string>
|
29
|
+
<key>IDESourceControlProjectWCConfigurations</key>
|
30
|
+
<array>
|
31
|
+
<dict>
|
32
|
+
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
|
33
|
+
<string>public.vcs.git</string>
|
34
|
+
<key>IDESourceControlWCCIdentifierKey</key>
|
35
|
+
<string>9F67DD19109869B0F5A85172DA9B0D3E8F7EF383</string>
|
36
|
+
<key>IDESourceControlWCCName</key>
|
37
|
+
<string>terminal-notifier</string>
|
38
|
+
</dict>
|
39
|
+
</array>
|
40
|
+
</dict>
|
41
|
+
</plist>
|
@@ -44,7 +44,7 @@
|
|
44
44
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
45
45
|
launchStyle = "0"
|
46
46
|
useCustomWorkingDirectory = "NO"
|
47
|
-
buildConfiguration = "
|
47
|
+
buildConfiguration = "Release"
|
48
48
|
ignoresPersistentStateOnLaunch = "NO"
|
49
49
|
debugDocumentVersioning = "NO"
|
50
50
|
allowLocationSimulation = "YES">
|
@@ -17,11 +17,11 @@
|
|
17
17
|
<key>CFBundlePackageType</key>
|
18
18
|
<string>APPL</string>
|
19
19
|
<key>CFBundleShortVersionString</key>
|
20
|
-
<string>1.6.
|
20
|
+
<string>1.6.2</string>
|
21
21
|
<key>CFBundleSignature</key>
|
22
22
|
<string>????</string>
|
23
23
|
<key>CFBundleVersion</key>
|
24
|
-
<string>
|
24
|
+
<string>13</string>
|
25
25
|
<key>LSMinimumSystemVersion</key>
|
26
26
|
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
27
27
|
<key>LSUIElement</key>
|
@@ -2,13 +2,13 @@
|
|
2
2
|
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
3
3
|
<data>
|
4
4
|
<int key="IBDocument.SystemTarget">1080</int>
|
5
|
-
<string key="IBDocument.SystemVersion">
|
6
|
-
<string key="IBDocument.InterfaceBuilderVersion">
|
7
|
-
<string key="IBDocument.AppKitVersion">
|
8
|
-
<string key="IBDocument.HIToolboxVersion">
|
5
|
+
<string key="IBDocument.SystemVersion">14A388a</string>
|
6
|
+
<string key="IBDocument.InterfaceBuilderVersion">6250</string>
|
7
|
+
<string key="IBDocument.AppKitVersion">1343.14</string>
|
8
|
+
<string key="IBDocument.HIToolboxVersion">755.00</string>
|
9
9
|
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
10
10
|
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
11
|
-
<string key="NS.object.0">
|
11
|
+
<string key="NS.object.0">6250</string>
|
12
12
|
</object>
|
13
13
|
<array key="IBDocument.IntegratedClassDependencies">
|
14
14
|
<string>NSCustomObject</string>
|
@@ -50,6 +50,7 @@
|
|
50
50
|
<string key="NSResourceName">NSMenuMixedState</string>
|
51
51
|
</object>
|
52
52
|
<string key="NSAction">submenuAction:</string>
|
53
|
+
<reference key="NSTarget" ref="110575045"/>
|
53
54
|
<object class="NSMenu" key="NSSubmenu" id="110575045">
|
54
55
|
<string key="NSTitle">Terminal Notifier</string>
|
55
56
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -101,6 +102,7 @@
|
|
101
102
|
<reference key="NSOnImage" ref="35465992"/>
|
102
103
|
<reference key="NSMixedImage" ref="502551668"/>
|
103
104
|
<string key="NSAction">submenuAction:</string>
|
105
|
+
<reference key="NSTarget" ref="752062318"/>
|
104
106
|
<object class="NSMenu" key="NSSubmenu" id="752062318">
|
105
107
|
<string key="NSTitle">Services</string>
|
106
108
|
<array class="NSMutableArray" key="NSMenuItems"/>
|
@@ -178,6 +180,7 @@
|
|
178
180
|
<reference key="NSOnImage" ref="35465992"/>
|
179
181
|
<reference key="NSMixedImage" ref="502551668"/>
|
180
182
|
<string key="NSAction">submenuAction:</string>
|
183
|
+
<reference key="NSTarget" ref="720053764"/>
|
181
184
|
<object class="NSMenu" key="NSSubmenu" id="720053764">
|
182
185
|
<string key="NSTitle">File</string>
|
183
186
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -208,6 +211,7 @@
|
|
208
211
|
<reference key="NSOnImage" ref="35465992"/>
|
209
212
|
<reference key="NSMixedImage" ref="502551668"/>
|
210
213
|
<string key="NSAction">submenuAction:</string>
|
214
|
+
<reference key="NSTarget" ref="1065607017"/>
|
211
215
|
<object class="NSMenu" key="NSSubmenu" id="1065607017">
|
212
216
|
<string key="NSTitle">Open Recent</string>
|
213
217
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -303,6 +307,7 @@
|
|
303
307
|
<reference key="NSOnImage" ref="35465992"/>
|
304
308
|
<reference key="NSMixedImage" ref="502551668"/>
|
305
309
|
<string key="NSAction">submenuAction:</string>
|
310
|
+
<reference key="NSTarget" ref="789758025"/>
|
306
311
|
<object class="NSMenu" key="NSSubmenu" id="789758025">
|
307
312
|
<string key="NSTitle">Edit</string>
|
308
313
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -409,6 +414,7 @@
|
|
409
414
|
<reference key="NSOnImage" ref="35465992"/>
|
410
415
|
<reference key="NSMixedImage" ref="502551668"/>
|
411
416
|
<string key="NSAction">submenuAction:</string>
|
417
|
+
<reference key="NSTarget" ref="963351320"/>
|
412
418
|
<object class="NSMenu" key="NSSubmenu" id="963351320">
|
413
419
|
<string key="NSTitle">Find</string>
|
414
420
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -483,6 +489,7 @@
|
|
483
489
|
<reference key="NSOnImage" ref="35465992"/>
|
484
490
|
<reference key="NSMixedImage" ref="502551668"/>
|
485
491
|
<string key="NSAction">submenuAction:</string>
|
492
|
+
<reference key="NSTarget" ref="769623530"/>
|
486
493
|
<object class="NSMenu" key="NSSubmenu" id="769623530">
|
487
494
|
<string key="NSTitle">Spelling and Grammar</string>
|
488
495
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -552,6 +559,7 @@
|
|
552
559
|
<reference key="NSOnImage" ref="35465992"/>
|
553
560
|
<reference key="NSMixedImage" ref="502551668"/>
|
554
561
|
<string key="NSAction">submenuAction:</string>
|
562
|
+
<reference key="NSTarget" ref="698887838"/>
|
555
563
|
<object class="NSMenu" key="NSSubmenu" id="698887838">
|
556
564
|
<string key="NSTitle">Substitutions</string>
|
557
565
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -630,6 +638,7 @@
|
|
630
638
|
<reference key="NSOnImage" ref="35465992"/>
|
631
639
|
<reference key="NSMixedImage" ref="502551668"/>
|
632
640
|
<string key="NSAction">submenuAction:</string>
|
641
|
+
<reference key="NSTarget" ref="579392910"/>
|
633
642
|
<object class="NSMenu" key="NSSubmenu" id="579392910">
|
634
643
|
<string key="NSTitle">Transformations</string>
|
635
644
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -669,6 +678,7 @@
|
|
669
678
|
<reference key="NSOnImage" ref="35465992"/>
|
670
679
|
<reference key="NSMixedImage" ref="502551668"/>
|
671
680
|
<string key="NSAction">submenuAction:</string>
|
681
|
+
<reference key="NSTarget" ref="785027613"/>
|
672
682
|
<object class="NSMenu" key="NSSubmenu" id="785027613">
|
673
683
|
<string key="NSTitle">Speech</string>
|
674
684
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -704,6 +714,7 @@
|
|
704
714
|
<reference key="NSOnImage" ref="35465992"/>
|
705
715
|
<reference key="NSMixedImage" ref="502551668"/>
|
706
716
|
<string key="NSAction">submenuAction:</string>
|
717
|
+
<reference key="NSTarget" ref="941447902"/>
|
707
718
|
<object class="NSMenu" key="NSSubmenu" id="941447902">
|
708
719
|
<string key="NSTitle">Format</string>
|
709
720
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -715,6 +726,7 @@
|
|
715
726
|
<reference key="NSOnImage" ref="35465992"/>
|
716
727
|
<reference key="NSMixedImage" ref="502551668"/>
|
717
728
|
<string key="NSAction">submenuAction:</string>
|
729
|
+
<reference key="NSTarget" ref="786677654"/>
|
718
730
|
<object class="NSMenu" key="NSSubmenu" id="786677654">
|
719
731
|
<string key="NSTitle">Font</string>
|
720
732
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -804,6 +816,7 @@
|
|
804
816
|
<reference key="NSOnImage" ref="35465992"/>
|
805
817
|
<reference key="NSMixedImage" ref="502551668"/>
|
806
818
|
<string key="NSAction">submenuAction:</string>
|
819
|
+
<reference key="NSTarget" ref="175441468"/>
|
807
820
|
<object class="NSMenu" key="NSSubmenu" id="175441468">
|
808
821
|
<string key="NSTitle">Kern</string>
|
809
822
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -850,6 +863,7 @@
|
|
850
863
|
<reference key="NSOnImage" ref="35465992"/>
|
851
864
|
<reference key="NSMixedImage" ref="502551668"/>
|
852
865
|
<string key="NSAction">submenuAction:</string>
|
866
|
+
<reference key="NSTarget" ref="1058217995"/>
|
853
867
|
<object class="NSMenu" key="NSSubmenu" id="1058217995">
|
854
868
|
<string key="NSTitle">Ligatures</string>
|
855
869
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -888,6 +902,7 @@
|
|
888
902
|
<reference key="NSOnImage" ref="35465992"/>
|
889
903
|
<reference key="NSMixedImage" ref="502551668"/>
|
890
904
|
<string key="NSAction">submenuAction:</string>
|
905
|
+
<reference key="NSTarget" ref="18263474"/>
|
891
906
|
<object class="NSMenu" key="NSSubmenu" id="18263474">
|
892
907
|
<string key="NSTitle">Baseline</string>
|
893
908
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -993,6 +1008,7 @@
|
|
993
1008
|
<reference key="NSOnImage" ref="35465992"/>
|
994
1009
|
<reference key="NSMixedImage" ref="502551668"/>
|
995
1010
|
<string key="NSAction">submenuAction:</string>
|
1011
|
+
<reference key="NSTarget" ref="446991534"/>
|
996
1012
|
<object class="NSMenu" key="NSSubmenu" id="446991534">
|
997
1013
|
<string key="NSTitle">Text</string>
|
998
1014
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -1049,6 +1065,7 @@
|
|
1049
1065
|
<reference key="NSOnImage" ref="35465992"/>
|
1050
1066
|
<reference key="NSMixedImage" ref="502551668"/>
|
1051
1067
|
<string key="NSAction">submenuAction:</string>
|
1068
|
+
<reference key="NSTarget" ref="956096989"/>
|
1052
1069
|
<object class="NSMenu" key="NSSubmenu" id="956096989">
|
1053
1070
|
<string key="NSTitle">Writing Direction</string>
|
1054
1071
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -1182,6 +1199,7 @@
|
|
1182
1199
|
<reference key="NSOnImage" ref="35465992"/>
|
1183
1200
|
<reference key="NSMixedImage" ref="502551668"/>
|
1184
1201
|
<string key="NSAction">submenuAction:</string>
|
1202
|
+
<reference key="NSTarget" ref="466310130"/>
|
1185
1203
|
<object class="NSMenu" key="NSSubmenu" id="466310130">
|
1186
1204
|
<string key="NSTitle">View</string>
|
1187
1205
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -1215,6 +1233,7 @@
|
|
1215
1233
|
<reference key="NSOnImage" ref="35465992"/>
|
1216
1234
|
<reference key="NSMixedImage" ref="502551668"/>
|
1217
1235
|
<string key="NSAction">submenuAction:</string>
|
1236
|
+
<reference key="NSTarget" ref="835318025"/>
|
1218
1237
|
<object class="NSMenu" key="NSSubmenu" id="835318025">
|
1219
1238
|
<string key="NSTitle">Window</string>
|
1220
1239
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -1268,6 +1287,7 @@
|
|
1268
1287
|
<reference key="NSOnImage" ref="35465992"/>
|
1269
1288
|
<reference key="NSMixedImage" ref="502551668"/>
|
1270
1289
|
<string key="NSAction">submenuAction:</string>
|
1290
|
+
<reference key="NSTarget" ref="992780483"/>
|
1271
1291
|
<object class="NSMenu" key="NSSubmenu" id="992780483">
|
1272
1292
|
<string key="NSTitle">Help</string>
|
1273
1293
|
<array class="NSMutableArray" key="NSMenuItems">
|
@@ -1295,7 +1315,7 @@
|
|
1295
1315
|
</object>
|
1296
1316
|
</array>
|
1297
1317
|
<object class="IBObjectContainer" key="IBDocument.Objects">
|
1298
|
-
<array
|
1318
|
+
<array key="connectionRecords">
|
1299
1319
|
<object class="IBConnectionRecord">
|
1300
1320
|
<object class="IBActionConnection" key="connection">
|
1301
1321
|
<string key="label">terminate:</string>
|
@@ -3119,24 +3139,40 @@
|
|
3119
3139
|
<object class="IBPartialClassDescription">
|
3120
3140
|
<string key="className">AppDelegate</string>
|
3121
3141
|
<string key="superclassName">NSObject</string>
|
3122
|
-
<object class="
|
3123
|
-
<string key="
|
3124
|
-
<string key="
|
3142
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3143
|
+
<string key="majorKey">IBProjectSource</string>
|
3144
|
+
<string key="minorKey">../Terminal Notifier/AppDelegate.h</string>
|
3125
3145
|
</object>
|
3126
|
-
|
3127
|
-
|
3128
|
-
|
3129
|
-
|
3130
|
-
|
3131
|
-
|
3146
|
+
</object>
|
3147
|
+
</array>
|
3148
|
+
<array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
3149
|
+
<object class="IBPartialClassDescription">
|
3150
|
+
<string key="className">NSApplication</string>
|
3151
|
+
<string key="superclassName">NSResponder</string>
|
3152
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3153
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3154
|
+
<string key="minorKey">AppKit.framework/Headers/NSApplication.h</string>
|
3132
3155
|
</object>
|
3156
|
+
</object>
|
3157
|
+
<object class="IBPartialClassDescription">
|
3158
|
+
<string key="className">NSBrowser</string>
|
3159
|
+
<string key="superclassName">NSControl</string>
|
3133
3160
|
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3134
|
-
<string key="majorKey">
|
3135
|
-
<string key="minorKey"
|
3161
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3162
|
+
<string key="minorKey">AppKit.framework/Headers/NSBrowser.h</string>
|
3163
|
+
</object>
|
3164
|
+
</object>
|
3165
|
+
<object class="IBPartialClassDescription">
|
3166
|
+
<string key="className">NSControl</string>
|
3167
|
+
<string key="superclassName">NSView</string>
|
3168
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3169
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3170
|
+
<string key="minorKey">AppKit.framework/Headers/NSControl.h</string>
|
3136
3171
|
</object>
|
3137
3172
|
</object>
|
3138
3173
|
<object class="IBPartialClassDescription">
|
3139
3174
|
<string key="className">NSDocument</string>
|
3175
|
+
<string key="superclassName">NSObject</string>
|
3140
3176
|
<dictionary class="NSMutableDictionary" key="actions">
|
3141
3177
|
<string key="printDocument:">id</string>
|
3142
3178
|
<string key="revertDocumentToSaved:">id</string>
|
@@ -3172,19 +3208,179 @@
|
|
3172
3208
|
</object>
|
3173
3209
|
</dictionary>
|
3174
3210
|
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3175
|
-
<string key="majorKey">
|
3176
|
-
<string key="minorKey"
|
3211
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3212
|
+
<string key="minorKey">AppKit.framework/Headers/NSDocument.h</string>
|
3213
|
+
</object>
|
3214
|
+
</object>
|
3215
|
+
<object class="IBPartialClassDescription">
|
3216
|
+
<string key="className">NSDocumentController</string>
|
3217
|
+
<string key="superclassName">NSObject</string>
|
3218
|
+
<dictionary class="NSMutableDictionary" key="actions">
|
3219
|
+
<string key="clearRecentDocuments:">id</string>
|
3220
|
+
<string key="newDocument:">id</string>
|
3221
|
+
<string key="openDocument:">id</string>
|
3222
|
+
<string key="saveAllDocuments:">id</string>
|
3223
|
+
</dictionary>
|
3224
|
+
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
3225
|
+
<object class="IBActionInfo" key="clearRecentDocuments:">
|
3226
|
+
<string key="name">clearRecentDocuments:</string>
|
3227
|
+
<string key="candidateClassName">id</string>
|
3228
|
+
</object>
|
3229
|
+
<object class="IBActionInfo" key="newDocument:">
|
3230
|
+
<string key="name">newDocument:</string>
|
3231
|
+
<string key="candidateClassName">id</string>
|
3232
|
+
</object>
|
3233
|
+
<object class="IBActionInfo" key="openDocument:">
|
3234
|
+
<string key="name">openDocument:</string>
|
3235
|
+
<string key="candidateClassName">id</string>
|
3236
|
+
</object>
|
3237
|
+
<object class="IBActionInfo" key="saveAllDocuments:">
|
3238
|
+
<string key="name">saveAllDocuments:</string>
|
3239
|
+
<string key="candidateClassName">id</string>
|
3240
|
+
</object>
|
3241
|
+
</dictionary>
|
3242
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3243
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3244
|
+
<string key="minorKey">AppKit.framework/Headers/NSDocumentController.h</string>
|
3245
|
+
</object>
|
3246
|
+
</object>
|
3247
|
+
<object class="IBPartialClassDescription">
|
3248
|
+
<string key="className">NSFontManager</string>
|
3249
|
+
<string key="superclassName">NSObject</string>
|
3250
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3251
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3252
|
+
<string key="minorKey">AppKit.framework/Headers/NSFontManager.h</string>
|
3253
|
+
</object>
|
3254
|
+
</object>
|
3255
|
+
<object class="IBPartialClassDescription">
|
3256
|
+
<string key="className">NSFormatter</string>
|
3257
|
+
<string key="superclassName">NSObject</string>
|
3258
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3259
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3260
|
+
<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
|
3261
|
+
</object>
|
3262
|
+
</object>
|
3263
|
+
<object class="IBPartialClassDescription">
|
3264
|
+
<string key="className">NSMatrix</string>
|
3265
|
+
<string key="superclassName">NSControl</string>
|
3266
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3267
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3268
|
+
<string key="minorKey">AppKit.framework/Headers/NSMatrix.h</string>
|
3269
|
+
</object>
|
3270
|
+
</object>
|
3271
|
+
<object class="IBPartialClassDescription">
|
3272
|
+
<string key="className">NSMenu</string>
|
3273
|
+
<string key="superclassName">NSObject</string>
|
3274
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3275
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3276
|
+
<string key="minorKey">AppKit.framework/Headers/NSMenu.h</string>
|
3277
|
+
</object>
|
3278
|
+
</object>
|
3279
|
+
<object class="IBPartialClassDescription">
|
3280
|
+
<string key="className">NSMenuItem</string>
|
3281
|
+
<string key="superclassName">NSObject</string>
|
3282
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3283
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3284
|
+
<string key="minorKey">AppKit.framework/Headers/NSMenuItem.h</string>
|
3285
|
+
</object>
|
3286
|
+
</object>
|
3287
|
+
<object class="IBPartialClassDescription">
|
3288
|
+
<string key="className">NSMovieView</string>
|
3289
|
+
<string key="superclassName">NSView</string>
|
3290
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3291
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3292
|
+
<string key="minorKey">AppKit.framework/Headers/NSMovieView.h</string>
|
3293
|
+
</object>
|
3294
|
+
</object>
|
3295
|
+
<object class="IBPartialClassDescription">
|
3296
|
+
<string key="className">NSPopover</string>
|
3297
|
+
<string key="superclassName">NSResponder</string>
|
3298
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3299
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3300
|
+
<string key="minorKey">AppKit.framework/Headers/NSPopover.h</string>
|
3301
|
+
</object>
|
3302
|
+
</object>
|
3303
|
+
<object class="IBPartialClassDescription">
|
3304
|
+
<string key="className">NSResponder</string>
|
3305
|
+
<string key="superclassName">NSObject</string>
|
3306
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3307
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3308
|
+
<string key="minorKey">AppKit.framework/Headers/NSResponder.h</string>
|
3309
|
+
</object>
|
3310
|
+
</object>
|
3311
|
+
<object class="IBPartialClassDescription">
|
3312
|
+
<string key="className">NSTableView</string>
|
3313
|
+
<string key="superclassName">NSControl</string>
|
3314
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3315
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3316
|
+
<string key="minorKey">AppKit.framework/Headers/NSTableView.h</string>
|
3317
|
+
</object>
|
3318
|
+
</object>
|
3319
|
+
<object class="IBPartialClassDescription">
|
3320
|
+
<string key="className">NSText</string>
|
3321
|
+
<string key="superclassName">NSView</string>
|
3322
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3323
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3324
|
+
<string key="minorKey">AppKit.framework/Headers/NSText.h</string>
|
3325
|
+
</object>
|
3326
|
+
</object>
|
3327
|
+
<object class="IBPartialClassDescription">
|
3328
|
+
<string key="className">NSTextView</string>
|
3329
|
+
<string key="superclassName">NSText</string>
|
3330
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3331
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3332
|
+
<string key="minorKey">AppKit.framework/Headers/NSTextView.h</string>
|
3333
|
+
</object>
|
3334
|
+
</object>
|
3335
|
+
<object class="IBPartialClassDescription">
|
3336
|
+
<string key="className">NSView</string>
|
3337
|
+
<string key="superclassName">NSResponder</string>
|
3338
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3339
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3340
|
+
<string key="minorKey">AppKit.framework/Headers/NSView.h</string>
|
3341
|
+
</object>
|
3342
|
+
</object>
|
3343
|
+
<object class="IBPartialClassDescription">
|
3344
|
+
<string key="className">NSViewController</string>
|
3345
|
+
<string key="superclassName">NSResponder</string>
|
3346
|
+
<object class="NSMutableDictionary" key="outlets">
|
3347
|
+
<string key="NS.key.0">view</string>
|
3348
|
+
<string key="NS.object.0">NSView</string>
|
3349
|
+
</object>
|
3350
|
+
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
3351
|
+
<string key="NS.key.0">view</string>
|
3352
|
+
<object class="IBToOneOutletInfo" key="NS.object.0">
|
3353
|
+
<string key="name">view</string>
|
3354
|
+
<string key="candidateClassName">NSView</string>
|
3355
|
+
</object>
|
3356
|
+
</object>
|
3357
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3358
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3359
|
+
<string key="minorKey">AppKit.framework/Headers/NSViewController.h</string>
|
3360
|
+
</object>
|
3361
|
+
</object>
|
3362
|
+
<object class="IBPartialClassDescription">
|
3363
|
+
<string key="className">NSWindow</string>
|
3364
|
+
<string key="superclassName">NSResponder</string>
|
3365
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3366
|
+
<string key="majorKey">IBFrameworkSource</string>
|
3367
|
+
<string key="minorKey">AppKit.framework/Headers/NSWindow.h</string>
|
3177
3368
|
</object>
|
3178
3369
|
</object>
|
3179
3370
|
</array>
|
3180
3371
|
</object>
|
3181
3372
|
<int key="IBDocument.localizationMode">0</int>
|
3182
3373
|
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
3374
|
+
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">NO</bool>
|
3375
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
3376
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
3377
|
+
<integer value="4600" key="NS.object.0"/>
|
3378
|
+
</object>
|
3183
3379
|
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
3184
3380
|
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
3185
3381
|
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
3186
|
-
<string key="NSMenuCheckmark">{
|
3187
|
-
<string key="NSMenuMixedState">{10,
|
3382
|
+
<string key="NSMenuCheckmark">{12, 12}</string>
|
3383
|
+
<string key="NSMenuMixedState">{10, 2}</string>
|
3188
3384
|
</dictionary>
|
3189
3385
|
<bool key="IBDocument.UseAutolayout">YES</bool>
|
3190
3386
|
</data>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<plist version="1.0">
|
4
4
|
<dict>
|
5
5
|
<key>BuildMachineOSBuild</key>
|
6
|
-
<string>
|
6
|
+
<string>14A388a</string>
|
7
7
|
<key>CFBundleDevelopmentRegion</key>
|
8
8
|
<string>en</string>
|
9
9
|
<key>CFBundleExecutable</key>
|
@@ -19,31 +19,31 @@
|
|
19
19
|
<key>CFBundlePackageType</key>
|
20
20
|
<string>APPL</string>
|
21
21
|
<key>CFBundleShortVersionString</key>
|
22
|
-
<string>1.6.
|
22
|
+
<string>1.6.2</string>
|
23
23
|
<key>CFBundleSignature</key>
|
24
24
|
<string>????</string>
|
25
25
|
<key>CFBundleVersion</key>
|
26
|
-
<string>
|
26
|
+
<string>13</string>
|
27
27
|
<key>DTCompiler</key>
|
28
28
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
29
29
|
<key>DTPlatformBuild</key>
|
30
|
-
<string>
|
30
|
+
<string>6A1052d</string>
|
31
31
|
<key>DTPlatformVersion</key>
|
32
32
|
<string>GM</string>
|
33
33
|
<key>DTSDKBuild</key>
|
34
|
-
<string>
|
34
|
+
<string>14A382</string>
|
35
35
|
<key>DTSDKName</key>
|
36
|
-
<string>macosx10.
|
36
|
+
<string>macosx10.10</string>
|
37
37
|
<key>DTXcode</key>
|
38
|
-
<string>
|
38
|
+
<string>0610</string>
|
39
39
|
<key>DTXcodeBuild</key>
|
40
|
-
<string>
|
40
|
+
<string>6A1052d</string>
|
41
41
|
<key>LSMinimumSystemVersion</key>
|
42
42
|
<string>10.8</string>
|
43
43
|
<key>LSUIElement</key>
|
44
44
|
<true/>
|
45
45
|
<key>NSHumanReadableCopyright</key>
|
46
|
-
<string>Copyright © 2012 Eloy
|
46
|
+
<string>Copyright © 2012 Eloy Durán. All rights reserved.</string>
|
47
47
|
<key>NSMainNibFile</key>
|
48
48
|
<string>MainMenu</string>
|
49
49
|
<key>NSPrincipalClass</key>
|
Binary file
|
data/vendor/terminal-notifier/terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: terminal-notifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bacon
|
@@ -76,6 +76,8 @@ files:
|
|
76
76
|
- vendor/terminal-notifier/Ruby/terminal-notifier.gemspec
|
77
77
|
- vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.pbxproj
|
78
78
|
- vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
79
|
+
- vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.xcworkspace/xcshareddata/Terminal
|
80
|
+
Notifier.xccheckout
|
79
81
|
- vendor/terminal-notifier/Terminal Notifier.xcodeproj/xcshareddata/xcschemes/Terminal
|
80
82
|
Notifier.xcscheme
|
81
83
|
- vendor/terminal-notifier/Terminal Notifier/AppDelegate.h
|