forked from p0deje/Maccy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.pbxproj
1667 lines (1650 loc) · 112 KB
/
project.pbxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objects = {
/* Begin PBXBuildFile section */
0ABDD5122BB47F1E0054963B /* NSWorkspace+ApplicationName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0ABDD5112BB47F1E0054963B /* NSWorkspace+ApplicationName.swift */; };
2F3205B92AE3EDCA002EA545 /* MenuController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F3205B82AE3EDCA002EA545 /* MenuController.swift */; };
2F39CB042AD9A93C00B749FD /* Sparkle in Frameworks */ = {isa = PBXBuildFile; productRef = 2F39CB032AD9A93C00B749FD /* Sparkle */; };
2F39CB0A2AD9AE1F00B749FD /* Settings in Frameworks */ = {isa = PBXBuildFile; productRef = 2F39CB092AD9AE1F00B749FD /* Settings */; };
2F3C6B512B5EFC1D00FA41BE /* PreviewPopoverController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F3C6B502B5EFC1D00FA41BE /* PreviewPopoverController.swift */; };
2F73DF2C2AE2749E00DB654E /* PreviewMenuItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F73DF2B2AE2749E00DB654E /* PreviewMenuItem.swift */; };
2F89CC932AE2C9E000959C91 /* PopupLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F89CC922AE2C9E000959C91 /* PopupLocation.swift */; };
4762D6972467226100B3A2BA /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 4762D6992467226100B3A2BA /* Localizable.strings */; };
5AA9C8402AD80E1B003340F9 /* IgnorePasteboardTypesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA9C83F2AD80E1B003340F9 /* IgnorePasteboardTypesViewController.swift */; };
5ACA94F52AD4D1E200ECAB6A /* IgnoreRegexViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ACA94F42AD4D1E200ECAB6A /* IgnoreRegexViewController.swift */; };
DA009931256411F90030E697 /* appcast.xml in Resources */ = {isa = PBXBuildFile; fileRef = DA00992C256411F90030E697 /* appcast.xml */; };
DA009932256411F90030E697 /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = DA00992D256411F90030E697 /* README.md */; };
DA009934256411F90030E697 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = DA00992F256411F90030E697 /* LICENSE */; };
DA009940256414560030E697 /* Fuse in Frameworks */ = {isa = PBXBuildFile; productRef = DA00993F256414560030E697 /* Fuse */; };
DA009947256414800030E697 /* SwiftHEXColors in Frameworks */ = {isa = PBXBuildFile; productRef = DA009946256414800030E697 /* SwiftHEXColors */; };
DA009955256414E60030E697 /* KeyboardShortcuts in Frameworks */ = {isa = PBXBuildFile; productRef = DA009954256414E60030E697 /* KeyboardShortcuts */; };
DA043DE1247D171C00488756 /* AppearanceSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA043DDF247D171C00488756 /* AppearanceSettingsViewController.swift */; };
DA05E7CC2483EF83005CB8AA /* GeneralSettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DA05E7CE2483EF83005CB8AA /* GeneralSettingsViewController.xib */; };
DA05E7D22483F70B005CB8AA /* AppearanceSettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DA05E7D42483F70B005CB8AA /* AppearanceSettingsViewController.xib */; };
DA05E7D72483F988005CB8AA /* AdvancedSettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DA05E7D92483F988005CB8AA /* AdvancedSettingsViewController.xib */; };
DA0EE7B9204657830025FC60 /* MaccyUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA0EE7B8204657830025FC60 /* MaccyUITests.swift */; };
DA0EF1881E444B2A00E58577 /* Clipboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA0EF1871E444B2A00E58577 /* Clipboard.swift */; };
DA11AE962693DD7100D640D2 /* MenuLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA11AE952693DD7100D640D2 /* MenuLoader.swift */; };
DA181170247B405B00066D55 /* GeneralSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA18116E247B405B00066D55 /* GeneralSettingsViewController.swift */; };
DA181174247B409A00066D55 /* AdvancedSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA181172247B409A00066D55 /* AdvancedSettingsViewController.swift */; };
DA181177247D14DA00066D55 /* Settings.PaneIdentifier+Panes.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA181176247D14DA00066D55 /* Settings.PaneIdentifier+Panes.swift */; };
DA196A9028AB0A6800ADD8A2 /* MenuHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA196A8E28AB0A6800ADD8A2 /* MenuHeader.swift */; };
DA196A9128AB0A6800ADD8A2 /* MenuHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = DA196A8F28AB0A6800ADD8A2 /* MenuHeader.xib */; };
DA196A9328AB0D4500ADD8A2 /* MenuHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA196A9228AB0D4500ADD8A2 /* MenuHeaderView.swift */; };
DA19F18F2984943E0091F26C /* Preview.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA19F18D2984943E0091F26C /* Preview.swift */; };
DA1B0FD6289DFEA200E641BE /* PinComboBoxCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA1B0FD5289DFEA200E641BE /* PinComboBoxCell.swift */; };
DA1DF95227AF8BBA006839E0 /* StorageSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA1DF95127AF8BBA006839E0 /* StorageSettingsViewController.swift */; };
DA1DF95527AF8BCD006839E0 /* StorageSettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DA1DF95327AF8BCD006839E0 /* StorageSettingsViewController.xib */; };
DA1EDE432045B35300479723 /* HistoryMenuItemTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA1EDE422045B35300479723 /* HistoryMenuItemTests.swift */; };
DA1EDE452045B68700479723 /* MenuTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA1EDE442045B68700479723 /* MenuTests.swift */; };
DA20EBB2268E279F0032D360 /* IgnoreApplicationsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA20EBB1268E279F0032D360 /* IgnoreApplicationsViewController.swift */; };
DA20EBB5268E54E80032D360 /* IgnoreSettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DA20EBB7268E54E80032D360 /* IgnoreSettingsViewController.xib */; };
DA20FA722B082DD600056DD5 /* Notifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA20FA712B082DD600056DD5 /* Notifier.swift */; };
DA20FA742B082E0100056DD5 /* Knock.caf in Resources */ = {isa = PBXBuildFile; fileRef = DA20FA732B082E0100056DD5 /* Knock.caf */; };
DA20FA762B082E0800056DD5 /* Write.caf in Resources */ = {isa = PBXBuildFile; fileRef = DA20FA752B082E0800056DD5 /* Write.caf */; };
DA20FA782B082E1A00056DD5 /* NSSound+Named.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA20FA772B082E1A00056DD5 /* NSSound+Named.swift */; };
DA246D611E56C9EA001E40F3 /* Application.xib in Resources */ = {isa = PBXBuildFile; fileRef = DA246D601E56C9EA001E40F3 /* Application.xib */; };
DA2B0AF2234201E500EFAD72 /* UserDefaults+Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2B0AF1234201E500EFAD72 /* UserDefaults+Configuration.swift */; };
DA2B0AF42343104600EFAD72 /* UserDefaultsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2B0AF32343104600EFAD72 /* UserDefaultsTests.swift */; };
DA2C752C2029FE990090965D /* Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2C752B2029FE990090965D /* Menu.swift */; };
DA35278C268D645700C92EBB /* IgnoreSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA35278B268D645700C92EBB /* IgnoreSettingsViewController.swift */; };
DA360DB31E3DF137005C6F6B /* HistoryTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA360DB21E3DF137005C6F6B /* HistoryTests.swift */; };
DA384E86232746D800603999 /* SearchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA384E85232746D800603999 /* SearchTests.swift */; };
DA3CE8001E44A62500B3AA98 /* ClipboardTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA3CE7FF1E44A62500B3AA98 /* ClipboardTests.swift */; };
DA3EAE0C2AE30F7500F39108 /* NSApplication+Windows.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA3EAE0B2AE30F7500F39108 /* NSApplication+Windows.swift */; };
DA48AE892A5F0548006D4894 /* guy.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = DA48AE882A5F0548006D4894 /* guy.jpeg */; };
DA49EE7528B59468002752E0 /* NSRect+Centered.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA49EE7428B59468002752E0 /* NSRect+Centered.swift */; };
DA49EE7928B594DC002752E0 /* NSRunningApplication+WindowFrame.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA49EE7828B594DC002752E0 /* NSRunningApplication+WindowFrame.swift */; };
DA5154D82564102900C01004 /* Sauce in Frameworks */ = {isa = PBXBuildFile; productRef = DA5154D72564102900C01004 /* Sauce */; };
DA573EAD1EDD410F00561FB2 /* HistoryMenuItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA573EAC1EDD410F00561FB2 /* HistoryMenuItem.swift */; };
DA57C64E249E2A550032707A /* MenuFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA57C64D249E2A550032707A /* MenuFooter.swift */; };
DA57C650249E3C8F0032707A /* MenuFoooterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA57C64F249E3C8F0032707A /* MenuFoooterTests.swift */; };
DA5F46512020E9FB00425C11 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA5F464F2020E4DF00425C11 /* Carbon.framework */; };
DA6373981E4AB9BB00263391 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DA6373971E4AB9BB00263391 /* Assets.xcassets */; };
DA6491B029ABCF2400837D93 /* NSScreen+ForPopup.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA6491AF29ABCF2400837D93 /* NSScreen+ForPopup.swift */; };
DA68F91828BD6E21007E2F25 /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = DA68F91728BD6E21007E2F25 /* Intents.intentdefinition */; };
DA68F91C28BD76B8007E2F25 /* SelectIntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA68F91B28BD76B8007E2F25 /* SelectIntentHandler.swift */; };
DA68F91E28BD7DEB007E2F25 /* ClearIntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA68F91D28BD7DEA007E2F25 /* ClearIntentHandler.swift */; };
DA696BCE240177E800DE80CF /* Sorter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA696BCD240177E800DE80CF /* Sorter.swift */; };
DA696BD22401EEE900DE80CF /* SorterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA696BD12401EEE900DE80CF /* SorterTests.swift */; };
DA6D98E22AEABE03008A77CE /* Accessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA6D98E12AEABE03008A77CE /* Accessibility.swift */; };
DA6DB59720AA7D55003C255E /* GlobalHotKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA6DB59620AA7D55003C255E /* GlobalHotKey.swift */; };
DA7A753E26A52F0F00DC16EF /* NSImage+Names.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7A753D26A52F0F00DC16EF /* NSImage+Names.swift */; };
DA81D674252A056B009977BC /* Throttler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA81D673252A056B009977BC /* Throttler.swift */; };
DA83EC262974EEA400A95531 /* GetIntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA83EC252974EEA400A95531 /* GetIntentHandler.swift */; };
DA8953B91E446A4E00884EAB /* Maccy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8953B81E446A4E00884EAB /* Maccy.swift */; };
DAAEB196219694AE00A7883C /* About.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAAEB195219694AE00A7883C /* About.swift */; };
DAB082962A2B7B850053E463 /* AppStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAB082952A2B7B850053E463 /* AppStoreReview.swift */; };
DAB65DFD2440AD63000AECA8 /* Storage.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DAB65DFB2440AD63000AECA8 /* Storage.xcdatamodeld */; };
DAB65DFF2440AE29000AECA8 /* CoreDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAB65DFE2440AE29000AECA8 /* CoreDataManager.swift */; };
DAB65E0B2440B078000AECA8 /* HistoryItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAB65E0A2440B078000AECA8 /* HistoryItem.swift */; };
DAB65E0D2440B0D4000AECA8 /* HistoryItemContent.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAB65E0C2440B0D4000AECA8 /* HistoryItemContent.swift */; };
DAB8CE4224E368F200A2500E /* container-migration.plist in Resources */ = {isa = PBXBuildFile; fileRef = DAB8CE4124E368F200A2500E /* container-migration.plist */; };
DAB9442D2B0583D700451E7C /* DeleteIntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAB9442C2B0583D700451E7C /* DeleteIntentHandler.swift */; };
DABDE97F2974706C005B32E9 /* KeyboardLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = DABDE97E2974706C005B32E9 /* KeyboardLayout.swift */; };
DAC14124232367B200FCFA30 /* Search.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC14123232367B200FCFA30 /* Search.swift */; };
DAC6CE9126E1AC19002B70B8 /* LaunchAtLogin in Frameworks */ = {isa = PBXBuildFile; productRef = DAC6CE9026E1AC19002B70B8 /* LaunchAtLogin */; };
DAC7AFAF2A801C92006081BB /* RunLoopLocalEventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC7AFAE2A801C92006081BB /* RunLoopLocalEventMonitor.swift */; };
DAC929D7297A0E8B00814F19 /* NSPasteboard.PasteboardType+Types.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC929D6297A0E8B00814F19 /* NSPasteboard.PasteboardType+Types.swift */; };
DAD0862D24545C66002AFAEC /* Storage.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DAB65DFB2440AD63000AECA8 /* Storage.xcdatamodeld */; };
DAD665662898A1C000975096 /* KeyChord.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAD665652898A1C000975096 /* KeyChord.swift */; };
DADBA95E2985C7AA00EC46FB /* Preview.xib in Resources */ = {isa = PBXBuildFile; fileRef = DADBA9602985C7AA00EC46FB /* Preview.xib */; };
DAE28500232257D20080E394 /* ColorImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAE284FF232257D20080E394 /* ColorImage.swift */; };
DAE2850223225BD90080E394 /* ColorImageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAE2850123225BD90080E394 /* ColorImageTests.swift */; };
DAEE38471E3DBEB100DD2966 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAEE38461E3DBEB100DD2966 /* AppDelegate.swift */; };
DAEE38541E3DD6F100DD2966 /* History.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAEE38531E3DD6F100DD2966 /* History.swift */; };
DAF65F4824D396FE00F3978F /* PasteWithoutFormattingMenuItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF65F4524D396FE00F3978F /* PasteWithoutFormattingMenuItem.swift */; };
DAF65F4924D396FE00F3978F /* PasteMenuItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF65F4624D396FE00F3978F /* PasteMenuItem.swift */; };
DAF65F4A24D396FE00F3978F /* CopyMenuItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF65F4724D396FE00F3978F /* CopyMenuItem.swift */; };
DAFE2DD82688018100990986 /* PinsSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAFE2DD72688018100990986 /* PinsSettingsViewController.swift */; };
DAFE2DDA268A521B00990986 /* String+Shortened.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAFE2DD9268A521A00990986 /* String+Shortened.swift */; };
DAFE2DDB268A8E4E00990986 /* PinsSettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DAFE2DDD268A8E4E00990986 /* PinsSettingsViewController.xib */; };
DAFE2DE9268A9B1B00990986 /* HistoryItemTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAFE2DE8268A9B1B00990986 /* HistoryItemTests.swift */; };
DAFEF0B8249D7DEE006029E8 /* KeyboardShortcuts.Name+Shortcuts.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAFEF0B7249D7DEE006029E8 /* KeyboardShortcuts.Name+Shortcuts.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
DA0EE7BB204657840025FC60 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = DAEE383B1E3DBEB100DD2966 /* Project object */;
proxyType = 1;
remoteGlobalIDString = DAEE38421E3DBEB100DD2966;
remoteInfo = Maccy;
};
DA360DB51E3DF137005C6F6B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = DAEE383B1E3DBEB100DD2966 /* Project object */;
proxyType = 1;
remoteGlobalIDString = DAEE38421E3DBEB100DD2966;
remoteInfo = Maccy;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
088F4DA028BECBC30003AD19 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
088F4DA128BECBC30003AD19 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
088F4DA228BECBC40003AD19 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
088F4DA328BECBC40003AD19 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
088F4DA428BECBC40003AD19 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
088F4DA628BECBC40003AD19 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
0ABDD5112BB47F1E0054963B /* NSWorkspace+ApplicationName.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSWorkspace+ApplicationName.swift"; sourceTree = "<group>"; };
1180C7312826B6140086870C /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
1180C7322826B6140086870C /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
1180C7332826B6140086870C /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
1180C7342826B6140086870C /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
1180C7352826B6140086870C /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
1180C7372826B6140086870C /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
11EB8926281DADFE00A78CB4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
11EB8927281DADFE00A78CB4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
11EB8928281DADFE00A78CB4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
11EB8929281DADFF00A78CB4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
11EB892A281DADFF00A78CB4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
11EB892C281DADFF00A78CB4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
2F3205B82AE3EDCA002EA545 /* MenuController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuController.swift; sourceTree = "<group>"; };
2F3C6B502B5EFC1D00FA41BE /* PreviewPopoverController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreviewPopoverController.swift; sourceTree = "<group>"; };
2F73DF2B2AE2749E00DB654E /* PreviewMenuItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreviewMenuItem.swift; sourceTree = "<group>"; };
2F89CC922AE2C9E000959C91 /* PopupLocation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopupLocation.swift; sourceTree = "<group>"; };
3EBDD1DC2BBEF22700C57500 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Preview.strings; sourceTree = "<group>"; };
3EBDD1DD2BBEF22700C57500 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
3EBDD1DE2BBEF22700C57500 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
3EBDD1DF2BBEF22800C57500 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
3EBDD1E02BBEF22800C57500 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
3EBDD1E12BBEF22800C57500 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
3EBDD1E22BBEF22800C57500 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
3EBDD1E32BBEF22800C57500 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
4762D6982467226100B3A2BA /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
4762D69A2467226400B3A2BA /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
4DC4D10F252713D700FE5FAC /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
4DC4D110252713D700FE5FAC /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
4DC4D111252713D700FE5FAC /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
4DC4D112252713D700FE5FAC /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
5AA9C83F2AD80E1B003340F9 /* IgnorePasteboardTypesViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IgnorePasteboardTypesViewController.swift; sourceTree = "<group>"; };
5ACA94F42AD4D1E200ECAB6A /* IgnoreRegexViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IgnoreRegexViewController.swift; sourceTree = "<group>"; };
7CEEFDEE24F41F8500ECAD2A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AdvancedSettingsViewController.strings"; sourceTree = "<group>"; };
7CEEFDEF24F41F8500ECAD2A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AppearanceSettingsViewController.strings"; sourceTree = "<group>"; };
7CEEFDF024F41F8500ECAD2A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/GeneralSettingsViewController.strings"; sourceTree = "<group>"; };
7CEEFDF124F41F8500ECAD2A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
ABC7285D283A9052001EE086 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
ABC7285E283A9052001EE086 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
ABC7285F283A9052001EE086 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
ABC72860283A9052001EE086 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
ABC72861283A9052001EE086 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
ABC72863283A9053001EE086 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = "<group>"; };
DA00992C256411F90030E697 /* appcast.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = appcast.xml; sourceTree = "<group>"; };
DA00992D256411F90030E697 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
DA00992F256411F90030E697 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
DA043DDF247D171C00488756 /* AppearanceSettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppearanceSettingsViewController.swift; sourceTree = "<group>"; };
DA05E7D02483EF8F005CB8AA /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA05E7D12483F1B9005CB8AA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/GeneralSettingsViewController.xib; sourceTree = "<group>"; };
DA05E7D32483F70B005CB8AA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AppearanceSettingsViewController.xib; sourceTree = "<group>"; };
DA05E7D62483F711005CB8AA /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA05E7D82483F988005CB8AA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AdvancedSettingsViewController.xib; sourceTree = "<group>"; };
DA05E7E12483FA08005CB8AA /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA08FDE1282596FA0001F3DA /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/AdvancedSettingsViewController.strings"; sourceTree = "<group>"; };
DA08FDE2282596FA0001F3DA /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/AppearanceSettingsViewController.strings"; sourceTree = "<group>"; };
DA08FDE3282596FA0001F3DA /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/GeneralSettingsViewController.strings"; sourceTree = "<group>"; };
DA08FDE4282596FA0001F3DA /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/PinsSettingsViewController.strings"; sourceTree = "<group>"; };
DA08FDE5282596FA0001F3DA /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/IgnoreSettingsViewController.strings"; sourceTree = "<group>"; };
DA08FDE7282596FA0001F3DA /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = "<group>"; };
DA0EE7B6204657830025FC60 /* MaccyUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MaccyUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
DA0EE7B8204657830025FC60 /* MaccyUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MaccyUITests.swift; sourceTree = "<group>"; };
DA0EF1871E444B2A00E58577 /* Clipboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Clipboard.swift; sourceTree = "<group>"; };
DA0F34CC24913DCA008E9E26 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA0F34CD24913DD1008E9E26 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA0F34CE24913DD5008E9E26 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA11AE952693DD7100D640D2 /* MenuLoader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuLoader.swift; sourceTree = "<group>"; };
DA18116E247B405B00066D55 /* GeneralSettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GeneralSettingsViewController.swift; sourceTree = "<group>"; };
DA181172247B409A00066D55 /* AdvancedSettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdvancedSettingsViewController.swift; sourceTree = "<group>"; };
DA181176247D14DA00066D55 /* Settings.PaneIdentifier+Panes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Settings.PaneIdentifier+Panes.swift"; sourceTree = "<group>"; };
DA1864752BD6F4CC0085C47C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA1864772BD6F4F30085C47C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA1864792BD6F4FA0085C47C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA18647B2BD6F5010085C47C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DA18647D2BD6F5040085C47C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA18647F2BD6F5060085C47C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA1864812BD6F5100085C47C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Preview.strings; sourceTree = "<group>"; };
DA196A8E28AB0A6800ADD8A2 /* MenuHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuHeader.swift; sourceTree = "<group>"; };
DA196A8F28AB0A6800ADD8A2 /* MenuHeader.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MenuHeader.xib; sourceTree = "<group>"; };
DA196A9228AB0D4500ADD8A2 /* MenuHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuHeaderView.swift; sourceTree = "<group>"; };
DA19F18D2984943E0091F26C /* Preview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preview.swift; sourceTree = "<group>"; };
DA1B0FD5289DFEA200E641BE /* PinComboBoxCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PinComboBoxCell.swift; sourceTree = "<group>"; };
DA1DF95127AF8BBA006839E0 /* StorageSettingsViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageSettingsViewController.swift; sourceTree = "<group>"; };
DA1DF95427AF8BCD006839E0 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/StorageSettingsViewController.xib; sourceTree = "<group>"; };
DA1EDE422045B35300479723 /* HistoryMenuItemTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HistoryMenuItemTests.swift; sourceTree = "<group>"; };
DA1EDE442045B68700479723 /* MenuTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuTests.swift; sourceTree = "<group>"; };
DA20EBB1268E279F0032D360 /* IgnoreApplicationsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IgnoreApplicationsViewController.swift; sourceTree = "<group>"; };
DA20EBB6268E54E80032D360 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/IgnoreSettingsViewController.xib; sourceTree = "<group>"; };
DA20EBB9268E54EF0032D360 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/IgnoreSettingsViewController.strings"; sourceTree = "<group>"; };
DA20EBBB268E54EF0032D360 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA20EBBD268E54F00032D360 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA20EBBF268E54F10032D360 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA20EBC1268E54F50032D360 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA20FA712B082DD600056DD5 /* Notifier.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Notifier.swift; sourceTree = "<group>"; };
DA20FA732B082E0100056DD5 /* Knock.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Knock.caf; sourceTree = "<group>"; };
DA20FA752B082E0800056DD5 /* Write.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Write.caf; sourceTree = "<group>"; };
DA20FA772B082E1A00056DD5 /* NSSound+Named.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSSound+Named.swift"; sourceTree = "<group>"; };
DA246D601E56C9EA001E40F3 /* Application.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = Application.xib; sourceTree = "<group>"; };
DA2B0AF1234201E500EFAD72 /* UserDefaults+Configuration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Configuration.swift"; sourceTree = "<group>"; };
DA2B0AF32343104600EFAD72 /* UserDefaultsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsTests.swift; sourceTree = "<group>"; };
DA2C752B2029FE990090965D /* Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Menu.swift; sourceTree = "<group>"; };
DA2F1B0426F22DD0005D30BA /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA2F1B0526F22DD0005D30BA /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA2F1B0626F22DD0005D30BA /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA2F1B0726F22DD0005D30BA /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DA2F1B0826F22DD0005D30BA /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA2F1B0926F22DF4005D30BA /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Localizable.strings; sourceTree = "<group>"; };
DA35278B268D645700C92EBB /* IgnoreSettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IgnoreSettingsViewController.swift; sourceTree = "<group>"; };
DA360DB01E3DF137005C6F6B /* MaccyTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MaccyTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
DA360DB21E3DF137005C6F6B /* HistoryTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; lineEnding = 0; path = HistoryTests.swift; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
DA360DB41E3DF137005C6F6B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DA384E85232746D800603999 /* SearchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchTests.swift; sourceTree = "<group>"; };
DA3B30662C2CE3D800853E9E /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Preview.strings"; sourceTree = "<group>"; };
DA3B30672C2CE3D800853E9E /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/AdvancedSettingsViewController.strings"; sourceTree = "<group>"; };
DA3B30682C2CE3D900853E9E /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/AppearanceSettingsViewController.strings"; sourceTree = "<group>"; };
DA3B30692C2CE3D900853E9E /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/GeneralSettingsViewController.strings"; sourceTree = "<group>"; };
DA3B306A2C2CE3D900853E9E /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/PinsSettingsViewController.strings"; sourceTree = "<group>"; };
DA3B306B2C2CE3D900853E9E /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/IgnoreSettingsViewController.strings"; sourceTree = "<group>"; };
DA3B306C2C2CE3D900853E9E /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/StorageSettingsViewController.strings"; sourceTree = "<group>"; };
DA3B306D2C2CE46800853E9E /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
DA3CE7FF1E44A62500B3AA98 /* ClipboardTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ClipboardTests.swift; sourceTree = "<group>"; };
DA3EAE0B2AE30F7500F39108 /* NSApplication+Windows.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSApplication+Windows.swift"; sourceTree = "<group>"; };
DA48AE882A5F0548006D4894 /* guy.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = guy.jpeg; sourceTree = "<group>"; };
DA49EE7428B59468002752E0 /* NSRect+Centered.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSRect+Centered.swift"; sourceTree = "<group>"; };
DA49EE7828B594DC002752E0 /* NSRunningApplication+WindowFrame.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSRunningApplication+WindowFrame.swift"; sourceTree = "<group>"; };
DA4B7065271B7B5200FF324C /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA4B7066271B7B5300FF324C /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA4B7067271B7B5300FF324C /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA4B7068271B7B5300FF324C /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DA4B7069271B7B5300FF324C /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA4B706A271B7B5300FF324C /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
DA4C05652BD40E3400FE5FEC /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA4C05662BD40E3400FE5FEC /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA4C05672BD40E3400FE5FEC /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA4C05682BD40E3400FE5FEC /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DA4C05692BD40E3400FE5FEC /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA4C056A2BD40E3400FE5FEC /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA4C056B2BD40E3800FE5FEC /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Preview.strings; sourceTree = "<group>"; };
DA4C056C2BD416F000FE5FEC /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
DA573EAC1EDD410F00561FB2 /* HistoryMenuItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryMenuItem.swift; sourceTree = "<group>"; };
DA57C64D249E2A550032707A /* MenuFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuFooter.swift; sourceTree = "<group>"; };
DA57C64F249E3C8F0032707A /* MenuFoooterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuFoooterTests.swift; sourceTree = "<group>"; };
DA5F464F2020E4DF00425C11 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
DA60938D2918817F002D739E /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA60938E2918817F002D739E /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA60938F2918817F002D739E /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA60939029188180002D739E /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DA60939129188180002D739E /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA60939329188180002D739E /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/Localizable.strings; sourceTree = "<group>"; };
DA609394291886E4002D739E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA609395291886E4002D739E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA609396291886E4002D739E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA609397291886E4002D739E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DA609398291886E4002D739E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA60939A291886E4002D739E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
DA6373971E4AB9BB00263391 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
DA6491AF29ABCF2400837D93 /* NSScreen+ForPopup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSScreen+ForPopup.swift"; sourceTree = "<group>"; };
DA68F91728BD6E21007E2F25 /* Intents.intentdefinition */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; path = Intents.intentdefinition; sourceTree = "<group>"; };
DA68F91B28BD76B8007E2F25 /* SelectIntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelectIntentHandler.swift; sourceTree = "<group>"; };
DA68F91D28BD7DEA007E2F25 /* ClearIntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ClearIntentHandler.swift; sourceTree = "<group>"; };
DA696BCD240177E800DE80CF /* Sorter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Sorter.swift; sourceTree = "<group>"; };
DA696BD12401EEE900DE80CF /* SorterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SorterTests.swift; sourceTree = "<group>"; };
DA6D98E12AEABE03008A77CE /* Accessibility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Accessibility.swift; sourceTree = "<group>"; };
DA6DB59620AA7D55003C255E /* GlobalHotKey.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlobalHotKey.swift; sourceTree = "<group>"; };
DA7A753D26A52F0F00DC16EF /* NSImage+Names.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSImage+Names.swift"; sourceTree = "<group>"; };
DA7E871C2B7EC6FA00CA9EDF /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Preview.strings; sourceTree = "<group>"; };
DA7E871D2B7EC6FA00CA9EDF /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA7E871E2B7EC6FA00CA9EDF /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA7E871F2B7EC6FA00CA9EDF /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA7E87202B7EC6FA00CA9EDF /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DA7E87212B7EC6FA00CA9EDF /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DA7E87222B7EC6FA00CA9EDF /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA7E87232B7EC74100CA9EDF /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
DA81D673252A056B009977BC /* Throttler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Throttler.swift; sourceTree = "<group>"; };
DA83EC252974EEA400A95531 /* GetIntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GetIntentHandler.swift; sourceTree = "<group>"; };
DA86E870255C4DF600D1929F /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DA86E871255C4DF600D1929F /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DA86E872255C4DF700D1929F /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DA86E873255C4DF700D1929F /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
DA8828392B72EDC000A6F5D8 /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA88283A2B72EDC300A6F5D8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/StorageSettingsViewController.strings"; sourceTree = "<group>"; };
DA88283B2B72EDC400A6F5D8 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/StorageSettingsViewController.strings"; sourceTree = "<group>"; };
DA88283C2B72EDC400A6F5D8 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA88283D2B72EDC500A6F5D8 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA88283E2B72EDC600A6F5D8 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA88283F2B72EDC600A6F5D8 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8828402B72EDC700A6F5D8 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8828412B72EDC700A6F5D8 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8828422B72EDC800A6F5D8 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8828432B72EDC900A6F5D8 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8828442B72EDC900A6F5D8 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8828452B72EDCA00A6F5D8 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8828462B72EDCB00A6F5D8 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8828472B72EDCC00A6F5D8 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DA8953B81E446A4E00884EAB /* Maccy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Maccy.swift; sourceTree = "<group>"; };
DAA2BDCE24676CA7007FE090 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
DAAEB195219694AE00A7883C /* About.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = About.swift; sourceTree = "<group>"; };
DAB082952A2B7B850053E463 /* AppStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppStoreReview.swift; sourceTree = "<group>"; };
DAB65DFC2440AD63000AECA8 /* Storage.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Storage.xcdatamodel; sourceTree = "<group>"; };
DAB65DFE2440AE29000AECA8 /* CoreDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataManager.swift; sourceTree = "<group>"; };
DAB65E0A2440B078000AECA8 /* HistoryItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HistoryItem.swift; sourceTree = "<group>"; };
DAB65E0C2440B0D4000AECA8 /* HistoryItemContent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HistoryItemContent.swift; sourceTree = "<group>"; };
DAB8CE4024E3677F00A2500E /* Maccy.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Maccy.entitlements; sourceTree = "<group>"; };
DAB8CE4124E368F200A2500E /* container-migration.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "container-migration.plist"; sourceTree = "<group>"; };
DAB9442C2B0583D700451E7C /* DeleteIntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeleteIntentHandler.swift; sourceTree = "<group>"; };
DABDE97E2974706C005B32E9 /* KeyboardLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeyboardLayout.swift; sourceTree = "<group>"; };
DAC14123232367B200FCFA30 /* Search.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Search.swift; sourceTree = "<group>"; };
DAC7AFAE2A801C92006081BB /* RunLoopLocalEventMonitor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunLoopLocalEventMonitor.swift; sourceTree = "<group>"; };
DAC929D6297A0E8B00814F19 /* NSPasteboard.PasteboardType+Types.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSPasteboard.PasteboardType+Types.swift"; sourceTree = "<group>"; };
DAD665652898A1C000975096 /* KeyChord.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeyChord.swift; sourceTree = "<group>"; };
DADBA95F2985C7AA00EC46FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/Preview.xib; sourceTree = "<group>"; };
DADBA9622985C7B000EC46FB /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA9642985C7B000EC46FB /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Preview.strings"; sourceTree = "<group>"; };
DADBA9662985C7B000EC46FB /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Preview.strings"; sourceTree = "<group>"; };
DADBA9682985C7B100EC46FB /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA96A2985C7B100EC46FB /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA96C2985C7B200EC46FB /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA96E2985C7B200EC46FB /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA9702985C7B300EC46FB /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA9722985C7B300EC46FB /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA9742985C7B400EC46FB /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA9762985C7B400EC46FB /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA9782985C7B500EC46FB /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA97A2985C7B500EC46FB /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA97C2985C7B600EC46FB /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Preview.strings; sourceTree = "<group>"; };
DADBA97E2985C7B600EC46FB /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Preview.strings; sourceTree = "<group>"; };
DADFF1302C2F581300DB261D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Preview.strings; sourceTree = "<group>"; };
DADFF1322C2F581300DB261D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DADFF1332C2F581300DB261D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DADFF1342C2F581300DB261D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DADFF1352C2F581300DB261D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DADFF1362C2F581300DB261D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/StorageSettingsViewController.strings; sourceTree = "<group>"; };
DADFF1372C2F582500DB261D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DADFF1382C2F58D000DB261D /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = "<group>"; };
DAE284FF232257D20080E394 /* ColorImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorImage.swift; sourceTree = "<group>"; };
DAE2850123225BD90080E394 /* ColorImageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorImageTests.swift; sourceTree = "<group>"; };
DAEE38431E3DBEB100DD2966 /* Maccy.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Maccy.app; sourceTree = BUILT_PRODUCTS_DIR; };
DAEE38461E3DBEB100DD2966 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; lineEnding = 0; path = AppDelegate.swift; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
DAEE384D1E3DBEB100DD2966 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DAEE38531E3DD6F100DD2966 /* History.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; lineEnding = 0; path = History.swift; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
DAF4741827BB563100B53057 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/AdvancedSettingsViewController.strings; sourceTree = "<group>"; };
DAF4741927BB563100B53057 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/AppearanceSettingsViewController.strings; sourceTree = "<group>"; };
DAF4741A27BB563100B53057 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/GeneralSettingsViewController.strings; sourceTree = "<group>"; };
DAF4741B27BB563100B53057 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DAF4741C27BB563100B53057 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/IgnoreSettingsViewController.strings; sourceTree = "<group>"; };
DAF4741E27BB568000B53057 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
DAF65F4524D396FE00F3978F /* PasteWithoutFormattingMenuItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PasteWithoutFormattingMenuItem.swift; sourceTree = "<group>"; };
DAF65F4624D396FE00F3978F /* PasteMenuItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PasteMenuItem.swift; sourceTree = "<group>"; };
DAF65F4724D396FE00F3978F /* CopyMenuItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CopyMenuItem.swift; sourceTree = "<group>"; };
DAFE2DD72688018100990986 /* PinsSettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PinsSettingsViewController.swift; sourceTree = "<group>"; };
DAFE2DD9268A521A00990986 /* String+Shortened.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Shortened.swift"; sourceTree = "<group>"; };
DAFE2DDC268A8E4E00990986 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PinsSettingsViewController.xib; sourceTree = "<group>"; };
DAFE2DDF268A8E6000990986 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PinsSettingsViewController.strings"; sourceTree = "<group>"; };
DAFE2DE1268A8E6000990986 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DAFE2DE3268A8E6100990986 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DAFE2DE5268A8E6200990986 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DAFE2DE7268A8E6200990986 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/PinsSettingsViewController.strings; sourceTree = "<group>"; };
DAFE2DE8268A9B1B00990986 /* HistoryItemTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HistoryItemTests.swift; sourceTree = "<group>"; };
DAFEF0B7249D7DEE006029E8 /* KeyboardShortcuts.Name+Shortcuts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "KeyboardShortcuts.Name+Shortcuts.swift"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
DA0EE7B3204657830025FC60 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
DA360DAD1E3DF137005C6F6B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
DAEE38401E3DBEB100DD2966 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2F39CB042AD9A93C00B749FD /* Sparkle in Frameworks */,
DA009955256414E60030E697 /* KeyboardShortcuts in Frameworks */,
DA5F46512020E9FB00425C11 /* Carbon.framework in Frameworks */,
DA009947256414800030E697 /* SwiftHEXColors in Frameworks */,
DA5154D82564102900C01004 /* Sauce in Frameworks */,
2F39CB0A2AD9AE1F00B749FD /* Settings in Frameworks */,
DAC6CE9126E1AC19002B70B8 /* LaunchAtLogin in Frameworks */,
DA009940256414560030E697 /* Fuse in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
2F3C6B4E2B5EFB4600FA41BE /* Menu */ = {
isa = PBXGroup;
children = (
DAF65F4424D396D400F3978F /* HistoryMenuItem */,
DA196A8D28AB0A3700ADD8A2 /* MenuHeader */,
DA19F18C2984940B0091F26C /* Preview */,
2F3205B82AE3EDCA002EA545 /* MenuController.swift */,
DA57C64D249E2A550032707A /* MenuFooter.swift */,
DA11AE952693DD7100D640D2 /* MenuLoader.swift */,
DA2C752B2029FE990090965D /* Menu.swift */,
2F89CC922AE2C9E000959C91 /* PopupLocation.swift */,
2F3C6B502B5EFC1D00FA41BE /* PreviewPopoverController.swift */,
DAC14123232367B200FCFA30 /* Search.swift */,
);
path = Menu;
sourceTree = "<group>";
};
2FBB7A242B5FEC7900C65BBE /* History */ = {
isa = PBXGroup;
children = (
DAEE38531E3DD6F100DD2966 /* History.swift */,
DAB65E0A2440B078000AECA8 /* HistoryItem.swift */,
DAB65E0C2440B0D4000AECA8 /* HistoryItemContent.swift */,
DA696BCD240177E800DE80CF /* Sorter.swift */,
);
path = History;
sourceTree = "<group>";
};
2FBB7A252B5FECBB00C65BBE /* Extensions */ = {
isa = PBXGroup;
children = (
DAFEF0B7249D7DEE006029E8 /* KeyboardShortcuts.Name+Shortcuts.swift */,
DA3EAE0B2AE30F7500F39108 /* NSApplication+Windows.swift */,
DA7A753D26A52F0F00DC16EF /* NSImage+Names.swift */,
DAC929D6297A0E8B00814F19 /* NSPasteboard.PasteboardType+Types.swift */,
DA49EE7428B59468002752E0 /* NSRect+Centered.swift */,
DA49EE7828B594DC002752E0 /* NSRunningApplication+WindowFrame.swift */,
DA6491AF29ABCF2400837D93 /* NSScreen+ForPopup.swift */,
DA20FA772B082E1A00056DD5 /* NSSound+Named.swift */,
0ABDD5112BB47F1E0054963B /* NSWorkspace+ApplicationName.swift */,
DAFE2DD9268A521A00990986 /* String+Shortened.swift */,
DA2B0AF1234201E500EFAD72 /* UserDefaults+Configuration.swift */,
);
path = Extensions;
sourceTree = "<group>";
};
C2D16D1C2EE365D52E1EE446 /* Frameworks */ = {
isa = PBXGroup;
children = (
DA5F464F2020E4DF00425C11 /* Carbon.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
DA0EE7B7204657830025FC60 /* MaccyUITests */ = {
isa = PBXGroup;
children = (
DA0EE7B8204657830025FC60 /* MaccyUITests.swift */,
);
path = MaccyUITests;
sourceTree = "<group>";
};
DA181178247D150B00066D55 /* Settings */ = {
isa = PBXGroup;
children = (
DA181172247B409A00066D55 /* AdvancedSettingsViewController.swift */,
DA05E7D92483F988005CB8AA /* AdvancedSettingsViewController.xib */,
DA043DDF247D171C00488756 /* AppearanceSettingsViewController.swift */,
DA05E7D42483F70B005CB8AA /* AppearanceSettingsViewController.xib */,
DA18116E247B405B00066D55 /* GeneralSettingsViewController.swift */,
DA05E7CE2483EF83005CB8AA /* GeneralSettingsViewController.xib */,
DA181176247D14DA00066D55 /* Settings.PaneIdentifier+Panes.swift */,
DA1B0FD4289DFE8100E641BE /* PinsSettingsViewController */,
DAFE2DD72688018100990986 /* PinsSettingsViewController.swift */,
DAFE2DDD268A8E4E00990986 /* PinsSettingsViewController.xib */,
DA20EBAE268E24E50032D360 /* IgnoreSettingsViewController */,
DA35278B268D645700C92EBB /* IgnoreSettingsViewController.swift */,
DA20EBB7268E54E80032D360 /* IgnoreSettingsViewController.xib */,
DA1DF95127AF8BBA006839E0 /* StorageSettingsViewController.swift */,
DA1DF95327AF8BCD006839E0 /* StorageSettingsViewController.xib */,
);
path = Settings;
sourceTree = "<group>";
};
DA196A8D28AB0A3700ADD8A2 /* MenuHeader */ = {
isa = PBXGroup;
children = (
DA196A9228AB0D4500ADD8A2 /* MenuHeaderView.swift */,
DA196A8E28AB0A6800ADD8A2 /* MenuHeader.swift */,
DA196A8F28AB0A6800ADD8A2 /* MenuHeader.xib */,
);
path = MenuHeader;
sourceTree = "<group>";
};
DA19F18C2984940B0091F26C /* Preview */ = {
isa = PBXGroup;
children = (
DA19F18D2984943E0091F26C /* Preview.swift */,
DADBA9602985C7AA00EC46FB /* Preview.xib */,
);
path = Preview;
sourceTree = "<group>";
};
DA1B0FD4289DFE8100E641BE /* PinsSettingsViewController */ = {
isa = PBXGroup;
children = (
DA1B0FD5289DFEA200E641BE /* PinComboBoxCell.swift */,
);
path = PinsSettingsViewController;
sourceTree = "<group>";
};
DA20EBAE268E24E50032D360 /* IgnoreSettingsViewController */ = {
isa = PBXGroup;
children = (
5AA9C83F2AD80E1B003340F9 /* IgnorePasteboardTypesViewController.swift */,
DA20EBB1268E279F0032D360 /* IgnoreApplicationsViewController.swift */,
5ACA94F42AD4D1E200ECAB6A /* IgnoreRegexViewController.swift */,
);
path = IgnoreSettingsViewController;
sourceTree = "<group>";
};
DA21AD3C249E85BD003E7C98 /* Sounds */ = {
isa = PBXGroup;
children = (
DA20FA732B082E0100056DD5 /* Knock.caf */,
DA20FA752B082E0800056DD5 /* Write.caf */,
);
path = Sounds;
sourceTree = "<group>";
};
DA360DB11E3DF137005C6F6B /* MaccyTests */ = {
isa = PBXGroup;
children = (
DA48AE852A5F0077006D4894 /* Fixtures */,
DAFE2DE8268A9B1B00990986 /* HistoryItemTests.swift */,
DA57C64F249E3C8F0032707A /* MenuFoooterTests.swift */,
DA3CE7FF1E44A62500B3AA98 /* ClipboardTests.swift */,
DAE2850123225BD90080E394 /* ColorImageTests.swift */,
DA360DB21E3DF137005C6F6B /* HistoryTests.swift */,
DA1EDE422045B35300479723 /* HistoryMenuItemTests.swift */,
DA1EDE442045B68700479723 /* MenuTests.swift */,
DA384E85232746D800603999 /* SearchTests.swift */,
DA696BD12401EEE900DE80CF /* SorterTests.swift */,
DA2B0AF32343104600EFAD72 /* UserDefaultsTests.swift */,
DA360DB41E3DF137005C6F6B /* Info.plist */,
);
path = MaccyTests;
sourceTree = "<group>";
};
DA48AE852A5F0077006D4894 /* Fixtures */ = {
isa = PBXGroup;
children = (
DA48AE882A5F0548006D4894 /* guy.jpeg */,
);
path = Fixtures;
sourceTree = "<group>";
};
DA68F91F28BD819E007E2F25 /* Intents */ = {
isa = PBXGroup;
children = (
DA68F91D28BD7DEA007E2F25 /* ClearIntentHandler.swift */,
DAB9442C2B0583D700451E7C /* DeleteIntentHandler.swift */,
DA83EC252974EEA400A95531 /* GetIntentHandler.swift */,
DA68F91B28BD76B8007E2F25 /* SelectIntentHandler.swift */,
);
path = Intents;
sourceTree = "<group>";
};
DAEE383A1E3DBEB100DD2966 = {
isa = PBXGroup;
children = (
DAEE38451E3DBEB100DD2966 /* Maccy */,
DA360DB11E3DF137005C6F6B /* MaccyTests */,
DA0EE7B7204657830025FC60 /* MaccyUITests */,
DA00992C256411F90030E697 /* appcast.xml */,
DA00992F256411F90030E697 /* LICENSE */,
DA00992D256411F90030E697 /* README.md */,
DAEE38441E3DBEB100DD2966 /* Products */,
C2D16D1C2EE365D52E1EE446 /* Frameworks */,
);
sourceTree = "<group>";
};
DAEE38441E3DBEB100DD2966 /* Products */ = {
isa = PBXGroup;
children = (
DAEE38431E3DBEB100DD2966 /* Maccy.app */,
DA360DB01E3DF137005C6F6B /* MaccyTests.xctest */,
DA0EE7B6204657830025FC60 /* MaccyUITests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
DAEE38451E3DBEB100DD2966 /* Maccy */ = {
isa = PBXGroup;
children = (
2FBB7A252B5FECBB00C65BBE /* Extensions */,
2FBB7A242B5FEC7900C65BBE /* History */,
DA68F91F28BD819E007E2F25 /* Intents */,
2F3C6B4E2B5EFB4600FA41BE /* Menu */,
DA181178247D150B00066D55 /* Settings */,
DA21AD3C249E85BD003E7C98 /* Sounds */,
DA246D601E56C9EA001E40F3 /* Application.xib */,
DA6373971E4AB9BB00263391 /* Assets.xcassets */,
DAB8CE4124E368F200A2500E /* container-migration.plist */,
DAEE384D1E3DBEB100DD2966 /* Info.plist */,
DA68F91728BD6E21007E2F25 /* Intents.intentdefinition */,
4762D6992467226100B3A2BA /* Localizable.strings */,
DAB8CE4024E3677F00A2500E /* Maccy.entitlements */,
DAB65DFB2440AD63000AECA8 /* Storage.xcdatamodeld */,
DAAEB195219694AE00A7883C /* About.swift */,
DA6D98E12AEABE03008A77CE /* Accessibility.swift */,
DAEE38461E3DBEB100DD2966 /* AppDelegate.swift */,
DAB082952A2B7B850053E463 /* AppStoreReview.swift */,
DA0EF1871E444B2A00E58577 /* Clipboard.swift */,
DAB65DFE2440AE29000AECA8 /* CoreDataManager.swift */,
DA6DB59620AA7D55003C255E /* GlobalHotKey.swift */,
DAD665652898A1C000975096 /* KeyChord.swift */,
DABDE97E2974706C005B32E9 /* KeyboardLayout.swift */,
DA8953B81E446A4E00884EAB /* Maccy.swift */,
DA20FA712B082DD600056DD5 /* Notifier.swift */,
DAC7AFAE2A801C92006081BB /* RunLoopLocalEventMonitor.swift */,
DA81D673252A056B009977BC /* Throttler.swift */,
);
path = Maccy;
sourceTree = "<group>";
};
DAF65F4424D396D400F3978F /* HistoryMenuItem */ = {
isa = PBXGroup;
children = (
DAE284FF232257D20080E394 /* ColorImage.swift */,
DA573EAC1EDD410F00561FB2 /* HistoryMenuItem.swift */,
DAF65F4724D396FE00F3978F /* CopyMenuItem.swift */,
DAF65F4624D396FE00F3978F /* PasteMenuItem.swift */,
DAF65F4524D396FE00F3978F /* PasteWithoutFormattingMenuItem.swift */,
2F73DF2B2AE2749E00DB654E /* PreviewMenuItem.swift */,
);
path = HistoryMenuItem;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
DA0EE7B5204657830025FC60 /* MaccyUITests */ = {
isa = PBXNativeTarget;
buildConfigurationList = DA0EE7BF204657840025FC60 /* Build configuration list for PBXNativeTarget "MaccyUITests" */;
buildPhases = (
DA0EE7B2204657830025FC60 /* Sources */,
DA0EE7B3204657830025FC60 /* Frameworks */,
DA0EE7B4204657830025FC60 /* Resources */,
);
buildRules = (
);
dependencies = (
DA0EE7BC204657840025FC60 /* PBXTargetDependency */,
);
name = MaccyUITests;
productName = MaccyUITests;
productReference = DA0EE7B6204657830025FC60 /* MaccyUITests.xctest */;
productType = "com.apple.product-type.bundle.ui-testing";
};
DA360DAF1E3DF137005C6F6B /* MaccyTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = DA360DB71E3DF137005C6F6B /* Build configuration list for PBXNativeTarget "MaccyTests" */;
buildPhases = (
DA360DAC1E3DF137005C6F6B /* Sources */,
DA360DAD1E3DF137005C6F6B /* Frameworks */,
DA360DAE1E3DF137005C6F6B /* Resources */,
);
buildRules = (
);
dependencies = (
DA360DB61E3DF137005C6F6B /* PBXTargetDependency */,
);
name = MaccyTests;
productName = MaccyTests;
productReference = DA360DB01E3DF137005C6F6B /* MaccyTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
DAEE38421E3DBEB100DD2966 /* Maccy */ = {
isa = PBXNativeTarget;
buildConfigurationList = DAEE38501E3DBEB100DD2966 /* Build configuration list for PBXNativeTarget "Maccy" */;
buildPhases = (
DAEE383F1E3DBEB100DD2966 /* Sources */,
DAEE38401E3DBEB100DD2966 /* Frameworks */,
DAEE38411E3DBEB100DD2966 /* Resources */,
DAC6CE9226E1AC2C002B70B8 /* Copy Launch at Login Helper */,
);
buildRules = (
);
dependencies = (
);
name = Maccy;
packageProductDependencies = (
DA5154D72564102900C01004 /* Sauce */,
DA00993F256414560030E697 /* Fuse */,
DA009946256414800030E697 /* SwiftHEXColors */,
DA009954256414E60030E697 /* KeyboardShortcuts */,
DAC6CE9026E1AC19002B70B8 /* LaunchAtLogin */,
2F39CB032AD9A93C00B749FD /* Sparkle */,
2F39CB092AD9AE1F00B749FD /* Settings */,
);
productName = Maccy;
productReference = DAEE38431E3DBEB100DD2966 /* Maccy.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
DAEE383B1E3DBEB100DD2966 /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
LastSwiftUpdateCheck = 0920;
LastUpgradeCheck = 1520;
ORGANIZATIONNAME = p0deje;
TargetAttributes = {
DA0EE7B5204657830025FC60 = {
CreatedOnToolsVersion = 9.2;
DevelopmentTeam = MN3X4648SC;
LastSwiftMigration = 1020;
ProvisioningStyle = Automatic;
TestTargetID = DAEE38421E3DBEB100DD2966;
};
DA360DAF1E3DF137005C6F6B = {
CreatedOnToolsVersion = 8.2.1;
DevelopmentTeam = MN3X4648SC;
LastSwiftMigration = 1020;
ProvisioningStyle = Automatic;
TestTargetID = DAEE38421E3DBEB100DD2966;
};
DAEE38421E3DBEB100DD2966 = {
CreatedOnToolsVersion = 8.2.1;
LastSwiftMigration = 1020;
};
};
};
buildConfigurationList = DAEE383E1E3DBEB100DD2966 /* Build configuration list for PBXProject "Maccy" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
es,
ru,
Base,
"zh-Hans",
fr,
nb,
hr,
it,
de,
ko,
"zh-Hant",
ja,
th,
tr,
bs,
uk,
he,
nl,
ar,
"pt-BR",
cs,
);
mainGroup = DAEE383A1E3DBEB100DD2966;
packageReferences = (
DA5154D62564102900C01004 /* XCRemoteSwiftPackageReference "Sauce" */,
DA00993E256414560030E697 /* XCRemoteSwiftPackageReference "fuse-swift" */,
DA009945256414800030E697 /* XCRemoteSwiftPackageReference "SwiftHEXColors" */,
DA009953256414E60030E697 /* XCRemoteSwiftPackageReference "KeyboardShortcuts" */,
DAC6CE8F26E1AC19002B70B8 /* XCRemoteSwiftPackageReference "LaunchAtLogin" */,
2F39CB022AD9A93C00B749FD /* XCRemoteSwiftPackageReference "Sparkle" */,
2F39CB082AD9AE1F00B749FD /* XCRemoteSwiftPackageReference "Settings" */,
);
productRefGroup = DAEE38441E3DBEB100DD2966 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
DAEE38421E3DBEB100DD2966 /* Maccy */,
DA360DAF1E3DF137005C6F6B /* MaccyTests */,
DA0EE7B5204657830025FC60 /* MaccyUITests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
DA0EE7B4204657830025FC60 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
DA360DAE1E3DF137005C6F6B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA48AE892A5F0548006D4894 /* guy.jpeg in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DAEE38411E3DBEB100DD2966 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DAFE2DDB268A8E4E00990986 /* PinsSettingsViewController.xib in Resources */,
DA05E7CC2483EF83005CB8AA /* GeneralSettingsViewController.xib in Resources */,
DA20EBB5268E54E80032D360 /* IgnoreSettingsViewController.xib in Resources */,
DA20FA762B082E0800056DD5 /* Write.caf in Resources */,
DAB8CE4224E368F200A2500E /* container-migration.plist in Resources */,
DA6373981E4AB9BB00263391 /* Assets.xcassets in Resources */,
4762D6972467226100B3A2BA /* Localizable.strings in Resources */,
DA009934256411F90030E697 /* LICENSE in Resources */,
DA20FA742B082E0100056DD5 /* Knock.caf in Resources */,
DA009931256411F90030E697 /* appcast.xml in Resources */,
DA05E7D22483F70B005CB8AA /* AppearanceSettingsViewController.xib in Resources */,
DADBA95E2985C7AA00EC46FB /* Preview.xib in Resources */,
DA1DF95527AF8BCD006839E0 /* StorageSettingsViewController.xib in Resources */,
DA196A9128AB0A6800ADD8A2 /* MenuHeader.xib in Resources */,
DA009932256411F90030E697 /* README.md in Resources */,
DA05E7D72483F988005CB8AA /* AdvancedSettingsViewController.xib in Resources */,
DA246D611E56C9EA001E40F3 /* Application.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
DAC6CE9226E1AC2C002B70B8 /* Copy Launch at Login Helper */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${BUILT_PRODUCTS_DIR}/LaunchAtLogin_LaunchAtLogin.bundle/Contents/Resources/copy-helper-swiftpm.sh",
"${BUILT_PRODUCTS_DIR}/LaunchAtLogin_LaunchAtLogin.bundle/Contents/Resources/LaunchAtLoginHelper.zip",
"${BUILT_PRODUCTS_DIR}/LaunchAtLogin_LaunchAtLogin.bundle/Contents/Resources/LaunchAtLoginHelper-with-runtime.zip",
);
name = "Copy Launch at Login Helper";
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${BUILT_PRODUCTS_DIR}/LaunchAtLogin_LaunchAtLogin.bundle/Contents/Resources/copy-helper-swiftpm.sh\"\n";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
DA0EE7B2204657830025FC60 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA0EE7B9204657830025FC60 /* MaccyUITests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DA360DAC1E3DF137005C6F6B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DAFE2DE9268A9B1B00990986 /* HistoryItemTests.swift in Sources */,
DA3CE8001E44A62500B3AA98 /* ClipboardTests.swift in Sources */,
DAD0862D24545C66002AFAEC /* Storage.xcdatamodeld in Sources */,
DA2B0AF42343104600EFAD72 /* UserDefaultsTests.swift in Sources */,
DA1EDE432045B35300479723 /* HistoryMenuItemTests.swift in Sources */,
DAE2850223225BD90080E394 /* ColorImageTests.swift in Sources */,
DA384E86232746D800603999 /* SearchTests.swift in Sources */,
DA1EDE452045B68700479723 /* MenuTests.swift in Sources */,
DA696BD22401EEE900DE80CF /* SorterTests.swift in Sources */,
DA360DB31E3DF137005C6F6B /* HistoryTests.swift in Sources */,
DA57C650249E3C8F0032707A /* MenuFoooterTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DAEE383F1E3DBEB100DD2966 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA68F91C28BD76B8007E2F25 /* SelectIntentHandler.swift in Sources */,
DAB082962A2B7B850053E463 /* AppStoreReview.swift in Sources */,
DA043DE1247D171C00488756 /* AppearanceSettingsViewController.swift in Sources */,
DA6DB59720AA7D55003C255E /* GlobalHotKey.swift in Sources */,
DA68F91828BD6E21007E2F25 /* Intents.intentdefinition in Sources */,
2F3205B92AE3EDCA002EA545 /* MenuController.swift in Sources */,
DAB9442D2B0583D700451E7C /* DeleteIntentHandler.swift in Sources */,
DA11AE962693DD7100D640D2 /* MenuLoader.swift in Sources */,
DAD665662898A1C000975096 /* KeyChord.swift in Sources */,
DA83EC262974EEA400A95531 /* GetIntentHandler.swift in Sources */,
DAEE38541E3DD6F100DD2966 /* History.swift in Sources */,
DAC929D7297A0E8B00814F19 /* NSPasteboard.PasteboardType+Types.swift in Sources */,
DA19F18F2984943E0091F26C /* Preview.swift in Sources */,
DAF65F4924D396FE00F3978F /* PasteMenuItem.swift in Sources */,
DA57C64E249E2A550032707A /* MenuFooter.swift in Sources */,
DAB65DFF2440AE29000AECA8 /* CoreDataManager.swift in Sources */,
2F73DF2C2AE2749E00DB654E /* PreviewMenuItem.swift in Sources */,
DA2B0AF2234201E500EFAD72 /* UserDefaults+Configuration.swift in Sources */,
DAC7AFAF2A801C92006081BB /* RunLoopLocalEventMonitor.swift in Sources */,
DA0EF1881E444B2A00E58577 /* Clipboard.swift in Sources */,
5AA9C8402AD80E1B003340F9 /* IgnorePasteboardTypesViewController.swift in Sources */,
DA181170247B405B00066D55 /* GeneralSettingsViewController.swift in Sources */,
2F3C6B512B5EFC1D00FA41BE /* PreviewPopoverController.swift in Sources */,
DAAEB196219694AE00A7883C /* About.swift in Sources */,
DA6D98E22AEABE03008A77CE /* Accessibility.swift in Sources */,
DAFEF0B8249D7DEE006029E8 /* KeyboardShortcuts.Name+Shortcuts.swift in Sources */,
0ABDD5122BB47F1E0054963B /* NSWorkspace+ApplicationName.swift in Sources */,
DAB65E0D2440B0D4000AECA8 /* HistoryItemContent.swift in Sources */,
DA696BCE240177E800DE80CF /* Sorter.swift in Sources */,
DABDE97F2974706C005B32E9 /* KeyboardLayout.swift in Sources */,
DA49EE7928B594DC002752E0 /* NSRunningApplication+WindowFrame.swift in Sources */,
DA6491B029ABCF2400837D93 /* NSScreen+ForPopup.swift in Sources */,
DAF65F4824D396FE00F3978F /* PasteWithoutFormattingMenuItem.swift in Sources */,
DAFE2DD82688018100990986 /* PinsSettingsViewController.swift in Sources */,
DA81D674252A056B009977BC /* Throttler.swift in Sources */,
DA20FA722B082DD600056DD5 /* Notifier.swift in Sources */,
DA196A9328AB0D4500ADD8A2 /* MenuHeaderView.swift in Sources */,
DA573EAD1EDD410F00561FB2 /* HistoryMenuItem.swift in Sources */,
DA1B0FD6289DFEA200E641BE /* PinComboBoxCell.swift in Sources */,
DA1DF95227AF8BBA006839E0 /* StorageSettingsViewController.swift in Sources */,
DA2C752C2029FE990090965D /* Menu.swift in Sources */,
DA35278C268D645700C92EBB /* IgnoreSettingsViewController.swift in Sources */,
DA181174247B409A00066D55 /* AdvancedSettingsViewController.swift in Sources */,
DA20EBB2268E279F0032D360 /* IgnoreApplicationsViewController.swift in Sources */,
DA49EE7528B59468002752E0 /* NSRect+Centered.swift in Sources */,
DAF65F4A24D396FE00F3978F /* CopyMenuItem.swift in Sources */,
DA8953B91E446A4E00884EAB /* Maccy.swift in Sources */,
DA3EAE0C2AE30F7500F39108 /* NSApplication+Windows.swift in Sources */,
DAB65E0B2440B078000AECA8 /* HistoryItem.swift in Sources */,
DA68F91E28BD7DEB007E2F25 /* ClearIntentHandler.swift in Sources */,
2F89CC932AE2C9E000959C91 /* PopupLocation.swift in Sources */,
DAFE2DDA268A521B00990986 /* String+Shortened.swift in Sources */,
DAC14124232367B200FCFA30 /* Search.swift in Sources */,
DAEE38471E3DBEB100DD2966 /* AppDelegate.swift in Sources */,
DA181177247D14DA00066D55 /* Settings.PaneIdentifier+Panes.swift in Sources */,
DAE28500232257D20080E394 /* ColorImage.swift in Sources */,
5ACA94F52AD4D1E200ECAB6A /* IgnoreRegexViewController.swift in Sources */,
DA196A9028AB0A6800ADD8A2 /* MenuHeader.swift in Sources */,
DA7A753E26A52F0F00DC16EF /* NSImage+Names.swift in Sources */,
DA20FA782B082E1A00056DD5 /* NSSound+Named.swift in Sources */,
DAB65DFD2440AD63000AECA8 /* Storage.xcdatamodeld in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
DA0EE7BC204657840025FC60 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = DAEE38421E3DBEB100DD2966 /* Maccy */;
targetProxy = DA0EE7BB204657840025FC60 /* PBXContainerItemProxy */;
};
DA360DB61E3DF137005C6F6B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = DAEE38421E3DBEB100DD2966 /* Maccy */;
targetProxy = DA360DB51E3DF137005C6F6B /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
4762D6992467226100B3A2BA /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
4762D6982467226100B3A2BA /* en */,
4762D69A2467226400B3A2BA /* es */,
DAA2BDCE24676CA7007FE090 /* ru */,
7CEEFDF124F41F8500ECAD2A /* zh-Hans */,
4DC4D112252713D700FE5FAC /* fr */,
DA86E873255C4DF700D1929F /* nb */,
DA2F1B0926F22DF4005D30BA /* hr */,