public this repo is viewable by everyone
Description: A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for downloads and screenshots.
Homepage: http://alternateidea.com
Clone URL: git://github.com/Caged/gitnub.git
Click here to lend your support to: gitnub and make a donation at www.pledgie.com !
Will now accept the pwd from a seperate command line program as the repo 
location.  Seperate commandline app coming next commit
Caged (author)
2 months ago
commit  78d3665c5d9cab85c6ce0cce8f6eafee2a5012fd
tree    e22314699c6db219ee7060f9bea4c158a51c9500
parent  459d8dc16d09e890cb614833ab7ef62b262c1e90
...
14
15
16
17
 
 
 
 
 
 
 
 
 
 
18
 
19
20
21
...
14
15
16
 
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
0
@@ -14,8 +14,18 @@ include OSX
0
 OSX.ns_import 'ImageTextCell'
0
 
0
 class ApplicationController < OSX::NSObject
0
- ib_outlet :commits_table, :commits_controller
0
+ ib_outlet :commits_table, :commits_controller, :window
0
+
0
+ # def applicationDidFinishLaunching(notification)
0
+ # puts "PINFO: #{NSProcessInfo.processInfo.arguments}"
0
+ # end
0
+
0
+ def applicationShouldTerminateAfterLastWindowClosed(notification)
0
+ return true
0
+ end
0
+
0
   def awakeFromNib
0
+ @window.delegate = self
0
     column = @commits_table.tableColumns[0]
0
     cell = ImageTextCell.alloc.init
0
     column.dataCell = cell
...
10
11
12
13
14
15
16
17
18
 
19
20
21
 
 
 
 
 
 
 
22
23
24
...
28
29
30
31
32
33
34
35
 
36
37
38
39
 
 
40
41
42
43
44
 
45
46
47
...
51
52
53
54
 
55
56
57
...
10
11
12
 
 
 
 
13
14
15
16
17
 
18
19
20
21
22
23
24
25
26
27
...
31
32
33
 
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
...
57
58
59
 
60
61
62
63
0
@@ -10,15 +10,18 @@ require 'osx/cocoa'
0
 require 'md5'
0
 
0
 class CommitsController < OSX::NSObject
0
- attr_reader :commits
0
- attr_reader :commit
0
- attr_reader :branches
0
-
0
   ib_outlet :commits_table
0
   ib_outlet :branch_select
0
+ ib_outlet :app_controller
0
   
0
   def awakeFromNib
0
- @repo = Grit::Repo.new("/Users/Caged/dev/onceuponatime/xtt")
0
+ @repo_location = ENV['PWD'].nil? ? '' : ENV['PWD']
0
+ begin
0
+ @repo = Grit::Repo.new(@repo_location)
0
+ rescue Grit::InvalidGitRepositoryError
0
+ return
0
+ end
0
+
0
     @commits = @repo.commits('master', 50)
0
     @commits_table.reloadData
0
     
0
@@ -28,20 +31,23 @@ class CommitsController < OSX::NSObject
0
     end
0
   end
0
   
0
- # DataSource Methods
0
   def tableViewSelectionDidChange(notification)
0
     
0
   end
0
   
0
+ # DataSource Methods
0
   def numberOfRowsInTableView(table_view)
0
     @commits ? @commits.size : 0
0
   end
0
   
0
+ # There is something fishy with ImageTextCell and this method so
0
+ # we set the commit object to be used in dataElementForCell and return nil
0
   def tableView_objectValueForTableColumn_row(table_view, table_column, row)
0
     @commit = @commits[row]
0
     return nil
0
   end
0
   
0
+ # ImageTextCell data methods
0
   def primaryTextForCell_data(cell, data)
0
     return data.message.to_s
0
   end
0
@@ -51,7 +57,7 @@ class CommitsController < OSX::NSObject
0
   end
0
   
0
   def iconForCell_data(icon, data)
0
- NSImage.alloc.initWithContentsOfURL(NSURL.URLWithString("http://www.gravatar.com/avatar.php?gravatar_id=#{MD5.hexdigest(data.committer.email)}&size=36"))
0
+ return NSImage.alloc.initWithContentsOfURL(NSURL.URLWithString("http://www.gravatar.com/avatar.php?gravatar_id=#{MD5.hexdigest(data.committer.email)}&size=36"))
0
   end
0
   
0
   def dataElementForCell(cell)
...
9
10
11
12
 
13
14
15
...
53
54
55
56
 
57
58
59
...
72
73
74
75
76
 
 
77
78
79
80
 
 
81
82
83
...
95
96
97
98
99
 
 
100
101
102
...
106
107
108
109
110
 
 
111
112
113
...
152
153
154
155
 
156
157
158
...
162
163
164
165
 
166
167
168
...
180
181
182
183
 
184
185
 
186
187
188
189
190
 
191
192
 
193
194
195
...
254
255
256
257
 
258
259
260
...
264
265
266
267
 
268
269
270
271
272
273
 
274
275
276
277
278
 
279
280
281
 
282
283
 
284
285
 
286
287
288
...
304
305
306
307
308
 
 
309
310
311
...
316
317
318
319
320
 
 
321
322
323
...
325
326
327
328
329
 
 
330
331
332
...
336
337
338
339
340
 
 
341
342
343
...
345
346
347
348
349
 
 
350
351
352
...
366
367
368
369
370
 
 
371
372
373
...
375
376
377
378
379
 
 
380
381
382
...
384
385
386
387
388
 
 
389
390
391
...
393
394
395
396
397
 
 
398
399
400
...
404
405
406
407
408
 
 
409
410
411
...
413
414
415
416
417
 
 
418
419
420
...
425
426
427
428
 
429
430
431
 
432
433
434
...
476
477
478
479
 
480
481
482
...
484
485
486
487
 
488
489
490
...
492
493
494
495
 
496
497
498
...
522
523
524
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
525
526
527
...
563
564
565
566
 
567
568
569
...
769
770
771
772
 
773
774
775
 
776
777
778
779
780
781
782
 
 
783
784
785
...
906
907
908
909
910
 
 
911
912
913
 
914
915
916
...
940
941
942
943
 
944
945
946
947
948
949
950
 
 
951
952
953
...
959
960
961
962
 
963
 
 
 
964
965
966
 
 
 
967
968
969
970
971
 
 
972
973
974
975
976
 
 
977
978
979
...
998
999
1000
1001
1002
 
 
1003
1004
1005
...
1011
1012
1013
1014
 
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
 
 
1028
1029
1030
1031
 
1032
1033
1034
...
1041
1042
1043
1044
 
1045
 
 
 
1046
1047
1048
 
 
 
1049
1050
1051
1052
1053
 
 
1054
1055
1056
1057
1058
 
 
1059
1060
1061
...
1075
1076
1077
1078
1079
 
 
1080
1081
1082
1083
1084
 
 
1085
1086
1087
...
1106
1107
1108
1109
1110
 
 
1111
1112
1113
...
1119
1120
1121
1122
 
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
 
 
1136
1137
1138
...
1157
1158
1159
1160
 
1161
1162
1163
...
1168
1169
1170
1171
 
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1361
1362
1363
...
9
10
11
 
12
13
14
15
...
53
54
55
 
56
57
58
59
...
72
73
74
 
 
75
76
77
78
 
 
79
80
81
82
83
...
95
96
97
 
 
98
99
100
101
102
...
106
107
108
 
 
109
110
111
112
113
...
152
153
154
 
155
156
157
158
...
162
163
164
 
165
166
167
168
...
180
181
182
 
183
184
 
185
186
187
188
189
 
190
191
 
192
193
194
195
...
254
255
256
 
257
258
259
260
...
264
265
266
 
267
268
269
270
271
272
 
273
274
275
276
277
 
278
279
280
 
281
282
 
283
284
 
285
286
287
288
...
304
305
306
 
 
307
308
309
310
311
...
316
317
318
 
 
319
320
321
322
323
...
325
326
327
 
 
328
329
330
331
332
...
336
337
338
 
 
339
340
341
342
343
...
345
346
347
 
 
348
349
350
351
352
...
366
367
368
 
 
369
370
371
372
373
...
375
376
377
 
 
378
379
380
381
382
...
384
385
386
 
 
387
388
389
390
391
...
393
394
395
 
 
396
397
398
399
400
...
404
405
406
 
 
407
408
409
410
411
...
413
414
415
 
 
416
417
418
419
420
...
425
426
427
 
428
429
430
 
431
432
433
434
...
476
477
478
 
479
480
481
482
...
484
485
486
 
487
488
489
490
...
492
493
494
 
495
496
497
498
...
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
...
587
588
589
 
590
591
592
593
...
793
794
795
 
796
797
798
 
799
800
801
802
803
804
 
 
805
806
807
808
809
...
930
931
932
 
 
933
934
935
936
 
937
938
939
940
...
964
965
966
 
967
968
969
970
971
972
 
 
973
974
975
976
977
...
983
984
985
 
986
987
988
989
990
991
992
993
994
995
996
997
998
999
 
 
1000
1001
1002
1003
1004
 
 
1005
1006
1007
1008
1009
...
1028
1029
1030
 
 
1031
1032
1033
1034
1035
...
1041
1042
1043
 
1044
1045
 
 
1046
1047
1048
 
 
1049
1050
1051
 
 
1052
1053
1054
1055
1056
 
1057
1058
1059
1060
...
1067
1068
1069
 
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
 
 
1084
1085
1086
1087
1088
 
 
1089
1090
1091
1092
1093
...
1107
1108
1109
 
 
1110
1111
1112
1113
1114
 
 
1115
1116
1117
1118
1119
...
1138
1139
1140
 
 
1141
1142
1143
1144
1145
...
1151
1152
1153
 
1154
1155
 
 
1156
1157
1158
 
 
1159
1160
1161
 
 
1162
1163
1164
1165
1166
...
1185
1186
1187
 
1188
1189
1190
1191
...
1196
1197
1198
 
1199
1200
1201
1202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
0
@@ -9,7 +9,7 @@
0
     <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
0
       <bool key="EncodedWithXMLCoder">YES</bool>
0
       <integer value="29"/>
0
-      <integer value="255"/>
0
+      <integer value="2"/>
0
     </object>
0
     <object class="NSArray" key="IBDocument.PluginDependencies">
0
       <bool key="EncodedWithXMLCoder">YES</bool>
0
@@ -53,7 +53,7 @@
0
                 <int key="NSCellFlags">71433792</int>
0
                 <int key="NSCellFlags2">2048</int>
0
                 <object class="NSFont" key="NSSupport" id="98627494">
0
-                  <string key="NSName" id="718026817">LucidaGrande</string>
0
+                  <string key="NSName" id="611373228">LucidaGrande</string>
0
                   <double key="NSSize">1.300000e+01</double>
0
                   <int key="NSfFlags">1044</int>
0
                 </object>
0
@@ -72,12 +72,12 @@
0
                   <int key="NSKeyEquivModMask">1048576</int>
0
                   <int key="NSMnemonicLoc">2147483647</int>
0
                   <int key="NSState">1</int>
0
-                  <object class="NSCustomResource" key="NSOnImage" id="384539492">
0
-                    <string key="NSClassName" id="106920914">NSImage</string>
0
+                  <object class="NSCustomResource" key="NSOnImage" id="282721819">
0
+                    <string key="NSClassName" id="116156564">NSImage</string>
0
                     <string key="NSResourceName">NSMenuCheckmark</string>
0
                   </object>
0
-                  <object class="NSCustomResource" key="NSMixedImage" id="153546257">
0
-                    <reference key="NSClassName" ref="106920914"/>
0
+                  <object class="NSCustomResource" key="NSMixedImage" id="1022158122">
0
+                    <reference key="NSClassName" ref="116156564"/>
0
                     <string key="NSResourceName">NSMenuMixedState</string>
0
                   </object>
0
                   <string key="NSAction">_popUpItemAction:</string>
0
@@ -95,8 +95,8 @@
0
                       <reference key="NSKeyEquiv" ref="1005950920"/>
0
                       <int key="NSKeyEquivModMask">1048576</int>
0
                       <int key="NSMnemonicLoc">2147483647</int>
0
-                      <reference key="NSOnImage" ref="384539492"/>
0
-                      <reference key="NSMixedImage" ref="153546257"/>
0
+                      <reference key="NSOnImage" ref="282721819"/>
0
+                      <reference key="NSMixedImage" ref="1022158122"/>
0
                       <string key="NSAction">_popUpItemAction:</string>
0
                       <reference key="NSTarget" ref="399670599"/>
0
                     </object>
0
@@ -106,8 +106,8 @@
0
                       <reference key="NSKeyEquiv" ref="1005950920"/>
0
                       <int key="NSKeyEquivModMask">1048576</int>
0
                       <int key="NSMnemonicLoc">2147483647</int>
0
-                      <reference key="NSOnImage" ref="384539492"/>
0
-                      <reference key="NSMixedImage" ref="153546257"/>
0
+                      <reference key="NSOnImage" ref="282721819"/>
0
+                      <reference key="NSMixedImage" ref="1022158122"/>
0
                       <string key="NSAction">_popUpItemAction:</string>
0
                       <reference key="NSTarget" ref="399670599"/>
0
                     </object>
0
@@ -152,7 +152,7 @@
0
                             <int key="NSCellFlags2">0</int>
0
                             <reference key="NSContents" ref="1005950920"/>
0
                             <object class="NSFont" key="NSSupport">
0
-                              <reference key="NSName" ref="718026817"/>
0
+                              <reference key="NSName" ref="611373228"/>
0
                               <double key="NSSize">1.100000e+01</double>
0
                               <int key="NSfFlags">3100</int>
0
                             </object>
0
@@ -162,7 +162,7 @@
0
                             </object>
0
                             <object class="NSColor" key="NSTextColor">
0
                               <int key="NSColorSpace">6</int>
0
-                              <string key="NSCatalogName" id="500882601">System</string>
0
+                              <string key="NSCatalogName" id="706147756">System</string>
0
                               <string key="NSColorName">headerTextColor</string>
0
                               <object class="NSColor" key="NSColor" id="96157912">
0
                                 <int key="NSColorSpace">3</int>
0
@@ -180,16 +180,16 @@
0
                             <int key="NSTextBezelStyle">1</int>
0
                             <object class="NSColor" key="NSBackgroundColor" id="1046813822">
0
                               <int key="NSColorSpace">6</int>
0
-                              <reference key="NSCatalogName" ref="500882601"/>
0
+                              <reference key="NSCatalogName" ref="706147756"/>
0
                               <string key="NSColorName">controlBackgroundColor</string>
0
-                              <object class="NSColor" key="NSColor" id="173350078">
0
+                              <object class="NSColor" key="NSColor" id="533728670">
0
                                 <int key="NSColorSpace">3</int>
0
                                 <bytes key="NSWhite">MC42NjY2NjY2OQA</bytes>
0
                               </object>
0
                             </object>
0
-                            <object class="NSColor" key="NSTextColor" id="905087507">
0
+                            <object class="NSColor" key="NSTextColor" id="144851188">
0
                               <int key="NSColorSpace">6</int>
0
-                              <reference key="NSCatalogName" ref="500882601"/>
0
+                              <reference key="NSCatalogName" ref="706147756"/>
0
                               <string key="NSColorName">controlTextColor</string>
0
                               <reference key="NSColor" ref="96157912"/>
0
                             </object>
0
@@ -254,7 +254,7 @@
0
               <reference key="NSContentView" ref="648361966"/>
0
               <bytes key="NSScrollAmts">QSAAAEEgAABCGAAAQhgAAA</bytes>
0
             </object>
0
-            <object class="NSTextField" id="89021317">
0
+            <object class="NSTextField" id="344267093">
0
               <reference key="NSNextResponder" ref="831824449"/>
0
               <int key="NSvFlags">292</int>
0
               <string key="NSFrame">{{17, 16}, {51, 17}}</string>
0
@@ -264,25 +264,25 @@
0
               <object class="NSShadow" key="NSViewShadow">
0
                 <double key="NSShadowHoriz">1.000000e+00</double>
0
                 <double key="NSShadowVert">-1.000000e+00</double>
0
-                <object class="NSColor" key="NSShadowColor" id="482731741">
0
+                <object class="NSColor" key="NSShadowColor" id="817501253">
0
                   <int key="NSColorSpace">1</int>
0
                   <bytes key="NSRGB">MC44NjY2NjY2NyAwLjg2NjY2NjY3IDAuODY2NjY2NjcAA</bytes>
0
                 </object>
0
               </object>
0
               <bool key="NSEnabled">YES</bool>
0
-              <object class="NSTextFieldCell" key="NSCell" id="776373332">
0
+              <object class="NSTextFieldCell" key="NSCell" id="804530391">
0
                 <int key="NSCellFlags">67239488</int>
0
                 <int key="NSCellFlags2">272630784</int>
0
                 <string key="NSContents">Branch:</string>
0
                 <reference key="NSSupport" ref="98627494"/>
0
-                <reference key="NSControlView" ref="89021317"/>
0
+                <reference key="NSControlView" ref="344267093"/>
0
                 <object class="NSColor" key="NSBackgroundColor">
0
                   <int key="NSColorSpace">6</int>
0
-                  <reference key="NSCatalogName" ref="500882601"/>
0
+                  <reference key="NSCatalogName" ref="706147756"/>
0
                   <string key="NSColorName">controlColor</string>
0
-                  <reference key="NSColor" ref="173350078"/>
0
+                  <reference key="NSColor" ref="533728670"/>
0
                 </object>
0
-                <reference key="NSTextColor" ref="905087507"/>
0
+                <reference key="NSTextColor" ref="144851188"/>
0
               </object>
0
             </object>
0
           </object>
0
@@ -304,8 +304,8 @@
0
             <reference key="NSKeyEquiv" ref="1005950920"/>
0
             <int key="NSKeyEquivModMask">1048576</int>
0
             <int key="NSMnemonicLoc">2147483647</int>
0
-            <reference key="NSOnImage" ref="384539492"/>
0
-            <reference key="NSMixedImage" ref="153546257"/>
0
+            <reference key="NSOnImage" ref="282721819"/>
0
+            <reference key="NSMixedImage" ref="1022158122"/>
0
             <string key="NSAction">submenuAction:</string>
0
             <object class="NSMenu" key="NSSubmenu" id="514001054">
0
               <reference key="NSTitle" ref="1045736176"/>
0
@@ -316,8 +316,8 @@
0
                   <string key="NSTitle">About NewApplication</string>
0
                   <reference key="NSKeyEquiv" ref="1005950920"/>
0
                   <int key="NSMnemonicLoc">2147483647</int>
0
-                  <reference key="NSOnImage" ref="384539492"/>
0
-                  <reference key="NSMixedImage" ref="153546257"/>
0
+                  <reference key="NSOnImage" ref="282721819"/>
0
+                  <reference key="NSMixedImage" ref="1022158122"/>
0
                 </object>
0
                 <object class="NSMenuItem" id="747573612">
0
                   <reference key="NSMenu" ref="514001054"/>
0
@@ -325,8 +325,8 @@
0
                   <string key="NSKeyEquiv">,</string>
0
                   <int key="NSKeyEquivModMask">1048576</int>
0
                   <int key="NSMnemonicLoc">2147483647</int>
0
-                  <reference key="NSOnImage" ref="384539492"/>
0
-                  <reference key="NSMixedImage" ref="153546257"/>
0
+                  <reference key="NSOnImage" ref="282721819"/>
0
+                  <reference key="NSMixedImage" ref="1022158122"/>
0
                 </object>
0
                 <object class="NSMenuItem" id="229578624">
0
                   <reference key="NSMenu" ref="514001054"/>
0
@@ -336,8 +336,8 @@
0
                   <reference key="NSKeyEquiv" ref="1005950920"/>
0
                   <int key="NSKeyEquivModMask">1048576</int>
0
                   <int key="NSMnemonicLoc">2147483647</int>
0
-                  <reference key="NSOnImage" ref="384539492"/>
0
-                  <reference key="NSMixedImage" ref="153546257"/>
0
+                  <reference key="NSOnImage" ref="282721819"/>
0
+                  <reference key="NSMixedImage" ref="1022158122"/>
0
       &nb