-
Notifications
You must be signed in to change notification settings - Fork 0
/
appcast_pre.xml
1601 lines (991 loc) · 69.4 KB
/
appcast_pre.xml
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
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>XcodesApp</title>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>v2.4.1 - Now with 101% more login</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<p>Thanks to @kabiroberai this release should fix any users that still had the bad username/password after updating to 2.4.0</p>
<h2 id="changes">Changes</h2>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Fix handling of s2k_fo (#650) @kabiroberai</li>
<li>
<!-- sparkle:edSignature=LB+RKW0Im5Sm2ciIhYOXKOf4MTFSmnXkvGS36X/AXABhME2dwDiobJnxAe3TIqGFKb6Ulvf53x8ENL3YXIrWCA== -->
</li>
</ul>
]]></description>
<pubDate>Tue, 05 Nov 2024 03:55:43 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v2.4.1b30/Xcodes.zip"
sparkle:version="30"
sparkle:shortVersionString="2.4.1"
sparkle:edSignature="LB+RKW0Im5Sm2ciIhYOXKOf4MTFSmnXkvGS36X/AXABhME2dwDiobJnxAe3TIqGFKb6Ulvf53x8ENL3YXIrWCA=="
length="17884512"
type="application/octet-stream" />
</item>
<item>
<title>v2.4.0 - Now with 100% more login</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<p>Big shout out to @abiligiri 🎉 for getting the new Apple SRP login changes over the line! 🙏</p>
<h2 id="changes">Changes</h2>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Support SRP Login (#640) @MattKiazyk</li>
<li>Add support for SRP Login (#638) @abiligiri</li>
</ul>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Add preference keys for ‘Restrict allowed versions’ & hide ‘Support Xcodes’ (#632) @abiligiri</li>
</ul>
<!-- sparkle:edSignature=sAWbFqtV6k5AZNsQ82sBhH/Rcy2cr6kU3UmWY2a5n1edM2/JhKekv2l3E1aGr6WLxvBuo+NvDw5pOM2R6ymIDA== -->
]]></description>
<pubDate>Tue, 29 Oct 2024 03:37:31 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v2.4.0b29/Xcodes.zip"
sparkle:version="29"
sparkle:shortVersionString="2.4.0"
sparkle:edSignature="sAWbFqtV6k5AZNsQ82sBhH/Rcy2cr6kU3UmWY2a5n1edM2/JhKekv2l3E1aGr6WLxvBuo+NvDw5pOM2R6ymIDA=="
length="17882451"
type="application/octet-stream" />
</item>
<item>
<title>v2.3.0 - Welcome back runtimes</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<h2 id="changes">Changes</h2>
<p>2.3.0 brings back the ability to download <strong>all</strong> runtimes. Starting with iOS 18, tvOS 18, watchOS 11, visionOS 2, Apple removed the direct downloads and instead used the same architecture that is used in downloading OS updates. This change brings more security but also turns it into a black box.</p>
<p>Fortunately, starting with Xcode 16.1 Beta 3, <code class="language-plaintext highlighter-rouge">xcodebuild</code> provides a way to download a single version using the new way. In order for Xcodes to work, you must have at least Xcode 16.1 beta 3 + installed and selected.</p>
<p>Thanks to the Apple engineer who added that into <code class="language-plaintext highlighter-rouge">xcodebuild</code>. 🙏</p>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>allow cancelling of runtime downloads, cleanup (#628) @MattKiazyk</li>
<li>Terminate Xcodes app after last window closed (#621) @Kyle-Ye</li>
<li>Disallow changes to managed preferences (#569) @abiligiri</li>
<li>Implement Security Key Auth (#617) @kinoroy</li>
<li>feat: support downloading of cryptex (ex iOS 18+) runtimes (#622) (Xcode 16 Beta 3+ required) @MattKiazyk</li>
<li>Add <code class="language-plaintext highlighter-rouge">authenticating</code> to the <code class="language-plaintext highlighter-rouge">XcodeInstallationStep</code> (#613) @chuganzy</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Update label for Cancel Install Button (#603) @LiYanan2004</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>Update Localizable.xcstrings for Russian language (3) (#598) @duffpod</li>
<li>Update translation in zh-Hant (#593) @pan93412</li>
<li>Fix one Greek localization. Add one zh_Hans localization. (#609) @megabitsenmzq</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Bump ruby/setup-ruby from 1.190.0 to 1.197.0 (#629) @dependabot</li>
<li>Bump actions/cache from 4.0.2 to 4.1.1 (#625) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.177.1 to 1.190.0 (#601) @dependabot</li>
<li>chore: update sparkle framework (#624) @MattKiazyk</li>
<li>chore: set CI to MacOS 14, Xcode 16 (#623) @MattKiazyk</li>
</ul>
<!-- sparkle:edSignature=3RFJhxjS+sRFNOvF58p0tsv0EUV8t01z/GNess+wS6OJBI30VoPRF8EecHpRPhmqCaE+BvGVrG0tKEWj+ovpCw== -->
]]></description>
<pubDate>Fri, 18 Oct 2024 14:12:33 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v2.3.0b28/Xcodes.zip"
sparkle:version="28"
sparkle:shortVersionString="2.3.0"
sparkle:edSignature="3RFJhxjS+sRFNOvF58p0tsv0EUV8t01z/GNess+wS6OJBI30VoPRF8EecHpRPhmqCaE+BvGVrG0tKEWj+ovpCw=="
length="16586976"
type="application/octet-stream" />
</item>
<item>
<title>v2.2.0 - Nobody likes a bully </title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<p>⚠️ Xcodes does not support downloading of iOS 18 runtimes do to the change in the way Apple is downloading them. ⚠️</p>
<h2 id="changes">Changes</h2>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Left Align Unarchiving Pane (#564) @LePips</li>
<li>InfoPane UI Tweaks (#540) @marlonjames71</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Fix runtime downloading (#585) @MattKiazyk</li>
<li>Fix broken DockProgress Bar (#545) @Kyle-Ye</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>Update Korean localisation (#568) @floydkim</li>
<li>ADD: Added Arabic Localizations To Xcodes (#576) @MohamediosDev</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>fix: Update GitHub URLs in help menu (#581) @Person2099</li>
<li>Resolve concurrency check warning on Swift 5.10 (#522) @LiYanan2004</li>
<li>Bump ruby/setup-ruby from 1.173.0 to 1.177.1 (#563) @dependabot</li>
<li>chore: lossless png compression (#560) @mikeirvingweb</li>
<li>Update README.md (#548) @alladinian</li>
<li>fix: product name casings (#559) @mikeirvingweb</li>
<li>Set explicit SwiftPolyglot tag and update clone path (#547) @roddymunro</li>
<li>Bump ruby/setup-ruby from 1.172.0 to 1.173.0 (#542) @dependabot</li>
<li>Bump actions/cache from 4.0.1 to 4.0.2 (#543) @dependabot</li>
<li>adds localization validation on PR’s (#533) @MattKiazyk</li>
</ul>
<!-- sparkle:edSignature=ETmgl1OlCxLtl4FuncZOkMByft+lNTNywGws2ewQClp2NpT4bX6UWwGXmQ3hG4PnQRwOM5mkqNkglBOSWirpBQ== -->
]]></description>
<pubDate>Fri, 28 Jun 2024 15:49:59 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v2.2.0b27/Xcodes.zip"
sparkle:version="27"
sparkle:shortVersionString="2.2.0"
sparkle:edSignature="ETmgl1OlCxLtl4FuncZOkMByft+lNTNywGws2ewQClp2NpT4bX6UWwGXmQ3hG4PnQRwOM5mkqNkglBOSWirpBQ=="
length="12440485"
type="application/octet-stream" />
</item>
<item>
<title>v2.1.2 - I'm just Xcodes</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<h2 id="changes-212">Changes 2.1.2</h2>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>fix: xcode list row text hidden on macOS 14.4 (#538) @vvisionnn</li>
</ul>
<h2 id="changes-211">Changes 2.1.1</h2>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Replace AttributedText with markdown to fix the layout issues (#531) @huihuisang</li>
<li>replace default icon in info page (#530) @huihuisang</li>
<li>Improve Filter Button style (#526) @chickdan</li>
<li>Improve the layout of the sidebar (#504) @huihuisang</li>
<li>Improve signing experience when using non-english keyboard (#521) @LiYanan2004</li>
<li>Improvements in the layout of the Settings window (#506) @alladinian</li>
<li>Allow selecting text for version info (#503) @clementpadovani</li>
</ul>
<h2 id="-bug-fixes-1">🐛 Bug Fixes</h2>
<ul>
<li>fix runtime not appearing when multiple runtimes exist for same build (#523) @MattKiazyk</li>
<li>fix: adds back in sidebar toggle button so users don’t get stuck (#499) @MattKiazyk</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>chore: cleanup some localizeable.xcstrings (#532) @MattKiazyk</li>
<li>Updated german localization (#519) @Schr0eder</li>
<li>l10n(zh-Hant): Update translation for 2.0.2 (#502) @pan93412</li>
<li>Update Ukrainian localisation (#510) @kikiwora</li>
<li>Greek language localization (#505) @alladinian</li>
<li>Update zh_Hans Localizations. And more. (#482) @megabitsenmzq</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Remove outdated version checks (#527) @chickdan</li>
<li>Bump ruby/setup-ruby from 1.171.0 to 1.172.0 (#509) @dependabot</li>
<li>Bump actions/cache from 4.0.0 to 4.0.1 (#515) @dependabot</li>
<li>Bump release-drafter/release-drafter from 5 to 6 (#497) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.169.0 to 1.171.0 (#495) @dependabot</li>
</ul>
<!-- sparkle:edSignature=H7jdc6r8REbcRBAb1VHjOfhUdsk04y6QH+IbOl6keL/kLn7Qog8k7oo3Edcx79hKJonPQXKDIa09eP7u3+zACw== -->
]]></description>
<pubDate>Sun, 17 Mar 2024 14:19:15 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v2.1.2b26/Xcodes.zip"
sparkle:version="26"
sparkle:shortVersionString="2.1.2"
sparkle:edSignature="H7jdc6r8REbcRBAb1VHjOfhUdsk04y6QH+IbOl6keL/kLn7Qog8k7oo3Edcx79hKJonPQXKDIa09eP7u3+zACw=="
length="12327539"
type="application/octet-stream" />
</item>
<item>
<title>v2.1.1 - I'm just Xcodes</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<h2 id="changes">Changes</h2>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Replace AttributedText with markdown to fix the layout issues (#531) @huihuisang</li>
<li>replace default icon in info page (#530) @huihuisang</li>
<li>Improve Filter Button style (#526) @chickdan</li>
<li>Improve the layout of the sidebar (#504) @huihuisang</li>
<li>Improve signing experience when using non-english keyboard (#521) @LiYanan2004</li>
<li>Improvements in the layout of the Settings window (#506) @alladinian</li>
<li>Allow selecting text for version info (#503) @clementpadovani</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>fix runtime not appearing when multiple runtimes exist for same build (#523) @MattKiazyk</li>
<li>fix: adds back in sidebar toggle button so users don’t get stuck (#499) @MattKiazyk</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>chore: cleanup some localizeable.xcstrings (#532) @MattKiazyk</li>
<li>Updated german localization (#519) @Schr0eder</li>
<li>l10n(zh-Hant): Update translation for 2.0.2 (#502) @pan93412</li>
<li>Update Ukrainian localisation (#510) @kikiwora</li>
<li>Greek language localization (#505) @alladinian</li>
<li>Update zh_Hans Localizations. And more. (#482) @megabitsenmzq</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Remove outdated version checks (#527) @chickdan</li>
<li>Bump ruby/setup-ruby from 1.171.0 to 1.172.0 (#509) @dependabot</li>
<li>Bump actions/cache from 4.0.0 to 4.0.1 (#515) @dependabot</li>
<li>Bump release-drafter/release-drafter from 5 to 6 (#497) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.169.0 to 1.171.0 (#495) @dependabot</li>
</ul>
<!-- sparkle:edSignature=kChtCsch/u+2D023oWCVJYd4m9KbQRQ7o+P5TAuO3GZ/GWo2SK6zmreSLqPOBVgLoAuowy9Vm+rbZjVJamS7Dg== -->
]]></description>
<pubDate>Sun, 17 Mar 2024 00:43:52 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v2.1.1b25/Xcodes.zip"
sparkle:version="25"
sparkle:shortVersionString="2.1.1"
sparkle:edSignature="kChtCsch/u+2D023oWCVJYd4m9KbQRQ7o+P5TAuO3GZ/GWo2SK6zmreSLqPOBVgLoAuowy9Vm+rbZjVJamS7Dg=="
length="12330029"
type="application/octet-stream" />
</item>
<item>
<title>2.0 - The Force Awakens</title>
<description><![CDATA[<h2 id="introducing-v20--">Introducing v2.0 🎉</h2>
<h3 id="a-slight-redesign">A slight redesign</h3>
<p>The majority of the information in v1.X was only included in the info pane. While this was sufficient a few years ago, with the newly added Platforms as a separate download, more space was needed. 2.0 now uses a <code class="language-plaintext highlighter-rouge">NavigationSplitView</code> with a smaller left view and a larger main view.</p>
<p>The UI has been updated for a more cleaner look</p>
<p><img width="664" alt="Screenshot 2024-01-19 at 11 32 11 AM" src="https://user-images.githubusercontent.com/1119565/298149823-b1d6d4bb-79fd-49dd-804e-7593d2df8062.png" /></p>
<h3 id="platformsruntimes">Platforms/Runtimes</h3>
<p>You can now download all the platforms/runtimes with the speed of Xcodes and aria2!</p>
<h3 id="xcodeskit">XcodesKit</h3>
<p>2.0 has the start of a <code class="language-plaintext highlighter-rouge">XcodesKit</code> library using Swift Concurrency. This will allow us to more easily share code between the UI and the CLI in the future.</p>
<h3 id="new-requirements">New Requirements</h3>
<p>MacOS 13.0 is now required for 2.0</p>
<h3 id="support">Support</h3>
<p>If you would like to support Xcodes or donate to the development, I’ve set up a page on <a href="https://opencollective.com/xcodesapp">opencollective.com/xcodesapp</a>. There is absolutely no obligation!</p>
<h2 id="big-thanks">Big thanks!</h2>
<p>Thank you to all the contributors over 2023 who have kept adding on functionality to Xcodes and who have supported me via <a href="https://www.buymeacoffee.com/mattkiazyk">buymeacoffee.com/mattkiazyk</a></p>
<p>Full change log is below!</p>
<h2 id="changes">Changes</h2>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Add Sponsor/Donate Button (#481) @MattKiazyk</li>
<li>update Sparkle to 2.5.2 (#469) @MattKiazyk</li>
<li>Add new Platforms List Window (#463) @MattKiazyk</li>
<li>Redesign the main window to better suit more data (#461) @MattKiazyk</li>
<li>Add default phone number selection when there is only one (#462) @redryerye</li>
<li>Activity Indicator on Install Pressed (#437) @chickdan</li>
<li>Add ability to cancel runtime downloads (#453) @MattKiazyk</li>
<li>Support Runtime/Platforms Downloading and Install 🚀 (#448) @MattKiazyk</li>
<li>Add installation progress bar to dock icon (#423) @senmu</li>
<li>SDK column in the info panel supports displaying visionOS (#400) @LavareX</li>
<li>Add PinCodeTextField autocomplete support (#398) @Kyle-Ye</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Update privilege helper to xcodesOrg and Team (#480) @MattKiazyk</li>
<li>Handle preference alerts from the PlatformsListView (#470) @chickdan</li>
<li>Descriptive error for login status code 412 (#456) @chickdan</li>
<li>fix: settings link on Sonoma not working (#444) @MattKiazyk</li>
<li>Improve Brazilian Portuguese translation (#386) @0x7067</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>Add latest missing french translations (#477) @McNight</li>
<li>Updated Turkish to 100% (#454) @egesucu</li>
<li>Support new Xcode 15 String Catalog (#449) @egesucu</li>
<li>Fix SMS Enter Digit Code Crash on some localizations (#428) @ElonPark</li>
<li>Update DE localization (#393) @qnotna</li>
<li>Update zh_CN localizations. (#391) @megabitsenmzq</li>
<li>Add catalan translation (#297) @ferranabello</li>
<li>Introduce Polish translations (#375) @jakex7</li>
<li>Fix zh_Hans localizations (#376) @LinXunFeng</li>
<li>Turkish Localization Update (#362) @egesucu</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Remove newline from derived data path returned by defaults (#472) @robinkunde</li>
<li>Bump ruby/setup-ruby from 1.165.1 to 1.169.0 (#484) @dependabot</li>
<li>Bump actions/cache from 3.3.2 to 4.0.0 (#475) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.162.0 to 1.165.1 (#468) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.161.0 to 1.162.0 (#459) @dependabot</li>
<li>Updated README.md (#455) @egesucu</li>
<li>Clean up code in <code class="language-plaintext highlighter-rouge">InfoPane</code> to be more robust (#436) @thai-d-v</li>
<li>Bump actions/cache from 3.3.1 to 3.3.2 (#447) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.152.0 to 1.161.0 (#446) @dependabot</li>
<li>Bump actions/checkout from 3 to 4 (#445) @dependabot</li>
<li>cleans up project team so it builds (#443) @MattKiazyk</li>
<li>Bump ruby/setup-ruby from 1.149.0 to 1.152.0 (#397) @dependabot</li>
<li>Fix typo in README.md (#395) @jmg-duarte</li>
<li>Bump ruby/setup-ruby from 1.144.2 to 1.149.0 (#384) @dependabot</li>
<li>Update unxip binary to v2.1 (#371) @Kyle-Ye</li>
<li>Updated readme (#385) @KyLeggiero</li>
<li>Bump ruby/setup-ruby from 1.144.1 to 1.144.2 (#369) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.144.0 to 1.144.1 (#368) @dependabot</li>
<li>Bump actions/cache from 3.2.6 to 3.3.1 (#366) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.143.0 to 1.144.0 (#365) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.139.0 to 1.143.0 (#363) @dependabot</li>
<li>Bump actions/cache from 3.2.5 to 3.2.6 (#358) @dependabot</li>
</ul>
<!-- sparkle:edSignature=0mGgwNAQnkK2Zw4I4/stXhu3BYqxiKTkaNZszLu+3YrWyu81EUQ6Arv5zSDOZSZjfLWAW+T0WUFe1Kxu/SzIDQ== -->
]]></description>
<pubDate>Fri, 26 Jan 2024 04:37:50 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v2.0.2b23/Xcodes.zip"
sparkle:version="23"
sparkle:shortVersionString="2.0.2"
sparkle:edSignature="0mGgwNAQnkK2Zw4I4/stXhu3BYqxiKTkaNZszLu+3YrWyu81EUQ6Arv5zSDOZSZjfLWAW+T0WUFe1Kxu/SzIDQ=="
length="12240133"
type="application/octet-stream" />
</item>
<item>
<title>2.0 beta 1 - The Force Awakens</title>
<description><![CDATA[<h2 id="introducing-v20--">Introducing v2.0 🎉</h2>
<h3 id="a-slight-redesign">A slight redesign</h3>
<p>The majority of the information in v1.X was only included in the info pane. While this was sufficient a few years ago, with the newly added Platforms as a separate download, more space was needed. 2.0 now uses a <code class="language-plaintext highlighter-rouge">NavigationSplitView</code> with a smaller left view and a larger main view.</p>
<p>The UI has been updated for a more cleaner look</p>
<p><img width="664" alt="Screenshot 2024-01-19 at 11 32 11 AM" src="https://user-images.githubusercontent.com/1119565/298149823-b1d6d4bb-79fd-49dd-804e-7593d2df8062.png" /></p>
<h3 id="platforms">Platforms</h3>
<p>You can now download the platforms with the speed of Xcodes and aria2.</p>
<h3 id="xcodeskit">XcodesKit</h3>
<p>2.0 has the start of a <code class="language-plaintext highlighter-rouge">XcodesKit</code> library using Swift Concurrency. This will allow us to more easily share code between the UI and the CLI in the future.</p>
<h3 id="new-requirements">New Requirements</h3>
<p>MacOS 13.0 is now required for 2.0</p>
<h2 id="big-thanks">Big thanks!</h2>
<p>Thank you to all the contributors over 2023 who have kept adding on functionality to Xcodes and who have supported me via <a href="https://www.buymeacoffee.com/mattkiazyk">buymeacoffee.com/mattkiazyk</a></p>
<p>Full change log is below!</p>
<h2 id="changes">Changes</h2>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>update Sparkle to 2.5.2 (#469) @MattKiazyk</li>
<li>Add new Platforms List Window (#463) @MattKiazyk</li>
<li>Redesign the main window to better suit more data (#461) @MattKiazyk</li>
<li>Add default phone number selection when there is only one (#462) @redryerye</li>
<li>Activity Indicator on Install Pressed (#437) @chickdan</li>
<li>Add ability to cancel runtime downloads (#453) @MattKiazyk</li>
<li>Support Runtime/Platforms Downloading and Install 🚀 (#448) @MattKiazyk</li>
<li>Add installation progress bar to dock icon (#423) @senmu</li>
<li>SDK column in the info panel supports displaying visionOS (#400) @LavareX</li>
<li>Add PinCodeTextField autocomplete support (#398) @Kyle-Ye</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Descriptive error for login status code 412 (#456) @chickdan</li>
<li>fix: settings link on Sonoma not working (#444) @MattKiazyk</li>
<li>Improve Brazilian Portuguese translation (#386) @0x7067</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>Updated Turkish to 100% (#454) @egesucu</li>
<li>Support new Xcode 15 String Catalog (#449) @egesucu</li>
<li>Fix SMS Enter Digit Code Crash on some localizations (#428) @ElonPark</li>
<li>Update DE localization (#393) @qnotna</li>
<li>Update zh_CN localizations. (#391) @megabitsenmzq</li>
<li>Add catalan translation (#297) @ferranabello</li>
<li>Introduce Polish translations (#375) @jakex7</li>
<li>Fix zh_Hans localizations (#376) @LinXunFeng</li>
<li>Turkish Localization Update (#362) @egesucu</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Bump ruby/setup-ruby from 1.162.0 to 1.165.1 (#468) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.161.0 to 1.162.0 (#459) @dependabot</li>
<li>Updated README.md (#455) @egesucu</li>
<li>Clean up code in <code class="language-plaintext highlighter-rouge">InfoPane</code> to be more robust (#436) @thai-d-v</li>
<li>Bump actions/cache from 3.3.1 to 3.3.2 (#447) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.152.0 to 1.161.0 (#446) @dependabot</li>
<li>Bump actions/checkout from 3 to 4 (#445) @dependabot</li>
<li>cleans up project team so it builds (#443) @MattKiazyk</li>
<li>Bump ruby/setup-ruby from 1.149.0 to 1.152.0 (#397) @dependabot</li>
<li>Fix typo in README.md (#395) @jmg-duarte</li>
<li>Bump ruby/setup-ruby from 1.144.2 to 1.149.0 (#384) @dependabot</li>
<li>Update unxip binary to v2.1 (#371) @Kyle-Ye</li>
<li>Updated readme (#385) @KyLeggiero</li>
<li>Bump ruby/setup-ruby from 1.144.1 to 1.144.2 (#369) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.144.0 to 1.144.1 (#368) @dependabot</li>
<li>Bump actions/cache from 3.2.6 to 3.3.1 (#366) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.143.0 to 1.144.0 (#365) @dependabot</li>
<li>Bump ruby/setup-ruby from 1.139.0 to 1.143.0 (#363) @dependabot</li>
<li>Bump actions/cache from 3.2.5 to 3.2.6 (#358) @dependabot</li>
</ul>
<!-- sparkle:edSignature=c46QifwsZ0BZKBgkB2OFHdVEhNM29WNtyNgr1e5t0mvcZTl6fzhSldGBkYQqFpRXiTJ0CCE7obNgry/faOU3Cw== -->
]]></description>
<pubDate>Fri, 19 Jan 2024 17:53:33 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v2.0.0b20/Xcodes.zip"
sparkle:version="20"
sparkle:shortVersionString="2.0.0"
sparkle:edSignature="c46QifwsZ0BZKBgkB2OFHdVEhNM29WNtyNgr1e5t0mvcZTl6fzhSldGBkYQqFpRXiTJ0CCE7obNgry/faOU3Cw=="
length="12240278"
type="application/octet-stream" />
</item>
<item>
<title>v1.10.0 - Revenge of the Sith</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<h2 id="changes">Changes</h2>
<p>⚠⚠ Apple has implemented a version of Hashcash when logging in, which caused previous versions to lock Apple ID’s. This effect all tools that implemented the similar <code class="language-plaintext highlighter-rouge">auth/signin</code> api’s. The fix should stop any new locks of Apple ID’s. If your Apple ID is locked, you must reset your password. ⚠⚠</p>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Update unxip binary to 1.1.3 (#356) @MattKiazyk</li>
<li>Adds open in Rosetta option for Apple Silicon machines (#333) @MattKiazyk</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Implement hashcash for Apple ID Authentication (#361) @MattKiazyk</li>
<li>Ventura UI fixes (#349) @FelixHerrmann</li>
<li>Fix #329 (#336) @yossizahn</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>Update Japanese localization (#299) @jrsaruo</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Bump actions/cache from 3.2.4 to 3.2.5 (#354) @dependabot</li>
<li>Updating the username (#348) @egesucu</li>
<li>Bump actions/cache from 3.2.2 to 3.2.4 (#351) @dependabot</li>
<li>Bump actions/cache from 3.0.11 to 3.2.2 (#342) @dependabot</li>
</ul>
<!-- sparkle:edSignature=Ttm9zduGZ1nayiSModh8sZilyC8GHyEioCQYl0d73ezH3Daj63CdS1xMh9hfROgcp0XpOOl7z84qgW+RAxkBDA== -->
]]></description>
<pubDate>Wed, 01 Mar 2023 01:23:04 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v1.10.0b18/Xcodes.zip"
sparkle:version="18"
sparkle:shortVersionString="1.10.0"
sparkle:edSignature="Ttm9zduGZ1nayiSModh8sZilyC8GHyEioCQYl0d73ezH3Daj63CdS1xMh9hfROgcp0XpOOl7z84qgW+RAxkBDA=="
length="11955115"
type="application/octet-stream" />
</item>
<item>
<title>v1.9.0 - The Empire Strikes Back 🍎 </title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<p>This returns the requirement of having to log in via your Apple username/password when using xcodereleases. 😢</p>
<h2 id="changes">Changes</h2>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Improve Spanish localization in Preferences (#322) @DannyJJK</li>
<li>Adds an option to save beta versions with <code class="language-plaintext highlighter-rouge">-beta</code> symlink (#304) @leon-wolf</li>
<li>add error message when trying to uninstall Xcode if file not found (#306) @leon-wolf</li>
<li>move download settings to own PreferencePane (#305) @leon-wolf</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Switch Xcode releases back to using Apple Auth :( (#328) @MattKiazyk</li>
<li>fix: Preference button on toolbar not working on Mac OS 13 Ventura (#303) @chedabob</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>Add brazilian portuguese localization (#260) @brunomunizaf</li>
<li>Add Dutch localization (#307) @jfversluis</li>
<li>Fix localization on UnsupportedFileFormat (#309) @tt37</li>
<li>Remove localization from apple.com links (#308) @jfversluis</li>
<li>Typo in German Localization File (#296) @nklasio</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Bump actions/cache from 3.0.8 to 3.0.11 (#310) @dependabot</li>
<li>Add new contributing.md (#318) @MattKiazyk</li>
</ul>
<!-- sparkle:edSignature=BHOjL96nA0/98Fw4OJoSi/PXhjcTpo2jb3twRvwhwFbsJQV+AKLM+H3GRAvsT4rVbtX+txQw6A0UDeiSliPPBg== -->
]]></description>
<pubDate>Wed, 23 Nov 2022 03:56:04 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v1.9.0b17/Xcodes.zip"
sparkle:version="17"
sparkle:shortVersionString="1.9.0"
sparkle:edSignature="BHOjL96nA0/98Fw4OJoSi/PXhjcTpo2jb3twRvwhwFbsJQV+AKLM+H3GRAvsT4rVbtX+txQw6A0UDeiSliPPBg=="
length="11925583"
type="application/octet-stream" />
</item>
<item>
<title>v1.8.0</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<h2 id="xcodes-now-does-not-require-any-apple-id-and-password-when-downloading-xcode-">Xcodes now <strong>DOES NOT</strong> require any Apple ID and password when downloading Xcode! 🎉</h2>
<p>At long last! <strong>you no longer are required</strong> to provide your Apple username and password in order to download Xcode (as long as your using XcodeReleases datasource).</p>
<ul>
<li>No more 2FA prompts!</li>
<li>No more errors when you haven’t signed the latest developer EULA!</li>
<li>No more nervous feeling giving your password to a 3rd Party.</li>
</ul>
<h2 id="changes">Changes</h2>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Add ability to download Xcode without logging in using XcodeReleases (#290) @MattKiazyk</li>
</ul>
<h2 id="-localization">🌎 Localization</h2>
<ul>
<li>Fix French Translation (#288) @florentmorin</li>
<li>updated German translation (#285) @drct</li>
<li>Added Turkish missing translations in 1.7.0 (#277) @egrimo</li>
<li>Fix “Unarchiving” localization in Japanese (#280) @swiftty</li>
<li>Update Localizable.strings for Russian language (2) (#271) @duffpod</li>
<li>Update zh_Hans localizations. (#270) @megabitsenmzq</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Fix Finnish language name typo in README (#284) @marcusziade</li>
<li>Update readme with Taiwan flag (#274) @ymhuang0808</li>
<li>Bump actions/cache from 3.0.7 to 3.0.8 (#276) @dependabot</li>
<li>Bump actions/cache from 3.0.6 to 3.0.7 (#272) @dependabot</li>
</ul>
<!-- sparkle:edSignature=SgcxGfx96rqxNpxpecvyLbgzAg6gqSk6pYPn38zyRqs4Tp1RSTAp4kNLJJSbwSdYneo8yaHrIkJyBWft48XnAw== -->
]]></description>
<pubDate>Sat, 17 Sep 2022 04:05:30 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v1.8.0b16/Xcodes.zip"
sparkle:version="16"
sparkle:shortVersionString="1.8.0"
sparkle:edSignature="SgcxGfx96rqxNpxpecvyLbgzAg6gqSk6pYPn38zyRqs4Tp1RSTAp4kNLJJSbwSdYneo8yaHrIkJyBWft48XnAw=="
length="11915836"
type="application/octet-stream" />
</item>
<item>
<title>v1.7.0</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<p>Please follow us on Twitter at <a href="https://twitter.com/xcodesapp">@xcodesapp</a> to be notified when new releases happen!</p>
<h2 id="changes">Changes</h2>
<h3 id="support-for-5-new-languages-thanks-to-all-the-1st-time-contributors----were-up-to-14-supported-languages">Support for 5 new languages! Thanks to all the 1st time contributors! 🎉 We’re up to 14 supported languages!</h3>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Ability to change the installation directory (#268) @MattKiazyk</li>
<li>Add option to rename Xcode to Xcode.app on select. (#267) @MattKiazyk</li>
<li>Use monospaced digit font for download progress (#264) @gredman</li>
<li>Adds Copy Release Notes URL context menu (#255) @d-date</li>
<li>Turkish Language Improvements & WWDC Message Localization (#246) @egrimo</li>
</ul>
<h2 id="-new-languages">🌎 New Languages</h2>
<ul>
<li>Add Finnish Localization (#262) @marcusziade</li>
<li>Add Japanese Localization (#249) @tatsuz0u</li>
<li>Add Ukrainian Localization (#259) @gelosi</li>
<li>Add German Localization (#243) @drct</li>
<li>Add Traditional Chinese Localization (#240) @itszero</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Fix macOS Ventura crash on Settings View (#258) @GetToSet</li>
<li>Fix crash on sign in sheet cancel (#257) @swiftty</li>
<li>Update Release Date format on InfoPane for better localization (#251) @d-date</li>
<li>Fix minimum version supported localization alert message (#253) @MattKiazyk</li>
<li>Fixed wrong localization key for Github Repo in AboutView (#248) @duffpod</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Bump actions/cache from 3.0.5 to 3.0.6 (#269) @dependabot</li>
<li>Bump tzinfo from 1.2.9 to 1.2.10 in /AppCast (#266) @dependabot</li>
<li>Bump actions/cache from 3.0.4 to 3.0.5 (#263) @dependabot</li>
<li>Bump actions/cache from 3.0.3 to 3.0.4 (#241) @dependabot</li>
</ul>
<!-- sparkle:edSignature=hB7zXWFEDyrIoZTatX9M+UVaP8dQDsEoau9CVrZpOaCt5rMH/w230CginnuTHk1v6y4fMiN4sAAe9YCjr34eAQ== -->
]]></description>
<pubDate>Tue, 09 Aug 2022 01:34:27 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v1.7.0b15/Xcodes.zip"
sparkle:version="15"
sparkle:shortVersionString="1.7.0"
sparkle:edSignature="hB7zXWFEDyrIoZTatX9M+UVaP8dQDsEoau9CVrZpOaCt5rMH/w230CginnuTHk1v6y4fMiN4sAAe9YCjr34eAQ=="
length="11907807"
type="application/octet-stream" />
</item>
<item>
<title>v1.6.0</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<p>Please follow us on Twitter at <a href="https://twitter.com/xcodesapp">@xcodesapp</a> to be notified when new releases happen!</p>
<h2 id="changes">Changes</h2>
<h3 id="support-for-4-new-languages-thanks-to-all-the-1st-time-contributors---">Support for 4 new languages! Thanks to all the 1st time contributors! 🎉</h3>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Adding Italian localization 🇮🇹 (#229) @gualtierofrigerio</li>
<li>Adding Chinese-Simplified localizations. 🇨🇳 (#222) @megabitsenmzq</li>
<li>Add Korean Localization 🇰🇷 (#233) @ryan-son</li>
<li>Adding Turkish Language 🇹🇷 (#219) @egrimo</li>
<li>Update Localizable.strings for Russian language (#234) @duffpod</li>
<li>Added a new bottom status bar @MattKiazyk</li>
<li>Updated unxip binary to latest @MattKiazyk</li>
</ul>
<h2 id="-maintenance">🧰 Maintenance</h2>
<ul>
<li>Bump actions/cache from 3.0.2 to 3.0.3 (#236) @dependabot</li>
</ul>
<!-- sparkle:edSignature=whzvbz/AK1Zv7laaOlBC+O5b2ra1stDa38FI30cA1+KxRExSIve/sf7d0JEBz18rbFBHxO1DpOpIiB5rwZRODQ== -->
]]></description>
<pubDate>Sun, 05 Jun 2022 02:55:33 +0000</pubDate>
<enclosure
url="https://github.com/XcodesOrg/XcodesApp/releases/download/v1.6.0b14/Xcodes.zip"
sparkle:version="14"
sparkle:shortVersionString="1.6.0"
sparkle:edSignature="whzvbz/AK1Zv7laaOlBC+O5b2ra1stDa38FI30cA1+KxRExSIve/sf7d0JEBz18rbFBHxO1DpOpIiB5rwZRODQ=="
length="11856667"
type="application/octet-stream" />
</item>
<item>
<title>v1.5.0</title>
<description><![CDATA[<p>Install Xcodes using one of the methods listed <a href="https://github.com/RobotsAndPencils/XcodesApp#installation">here</a>.
Update Xcodes by selecting Check for Updates… in the Xcodes menu in the menu bar.</p>
<p>Please follow us on Twitter at <a href="https://twitter.com/xcodesapp">@xcodesapp</a> to be notified when new releases happen!</p>
<h2 id="localization-support-">Localization Support 🎉</h2>
<p>Salut Hola привет नमस्ते</p>
<p>Xcodes now supports localization! Included in v1.5 is 4 languages thanks to our amazing contributors below! We’ve added Spanish, French, Russian and Hindi!</p>
<p>Want to add another language - just make a PR on the <a href="https://github.com/RobotsAndPencils/XcodesApp">Github</a></p>
<h2 id="-enhancements">🚀 Enhancements</h2>
<ul>
<li>Hindi Localization (#212) @KGurpreet</li>
<li>French Localization (#210) @dompepin</li>
<li>Russian Localization (#208) @alexmazlov</li>
<li>Spanish Localization (#205) @cesartru88</li>
<li>Support Localization (#203) @MattKiazyk</li>
</ul>
<h2 id="-bug-fixes">🐛 Bug Fixes</h2>
<ul>
<li>Fixes some localization formatting (#206) @MattKiazyk</li>
<li>Fix: Load create SymLink preference on start (#202) @MattKiazyk</li>