-
Notifications
You must be signed in to change notification settings - Fork 5
/
appcast.xml
1046 lines (1046 loc) · 40 KB
/
appcast.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>Stark</title>
<link>https://raw.githubusercontent.com/stark-contrast/stark-sketch-plugin/master/appcast.xml</link>
<description>Design products that are accessible, ethical, and inclusive with a contrast checker, vision simulator and more.</description>
<language>en</language>
<item>
<title>Version 3.21.1</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 1 Apr 2023 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.21.1.zip" sparkle:version="3.21.1" type="application/octet-stream" />
</item>
<item>
<title>Version 3.21.0</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Thu, 12 Oct 2023 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.21.0.zip" sparkle:version="3.21.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.20.0</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Thu, 12 Oct 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.20.0.zip" sparkle:version="3.20.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.18.0</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Tue, 19 Sep 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.19.0.zip" sparkle:version="3.19.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.17.0</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 11 Sep 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.17.0.zip" sparkle:version="3.17.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.16.0</title>
<description>
<![CDATA[
<ul>
<li>Add ability to filter issues in Sidekick.</li>
<li>Various performance and UI improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 14 Aug 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.16.0.zip" sparkle:version="3.16.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.15.0</title>
<description>
<![CDATA[
<ul>
<li>Updates Touch Targets UI to include AA targets.</li>
</ul>
]]>
</description>
<pubDate>Tue, 8 Aug 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.15.0.zip" sparkle:version="3.15.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.14.0</title>
<description>
<![CDATA[
<ul>
<li>Adds new ARIA Notes feature.</li>
</ul>
]]>
</description>
<pubDate>Wed, 2 Aug 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.14.0.zip" sparkle:version="3.14.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.13.0</title>
<description>
<![CDATA[
<ul>
<li>Adds new Headings feature.</li>
</ul>
]]>
</description>
<pubDate>Tue, 25 Jul 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.13.0.zip" sparkle:version="3.13.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.12.1</title>
<description>
<![CDATA[
<ul>
<li>Bug fixes and enhancements to improve your Sidekick experience.</li>
</ul>
]]>
</description>
<pubDate>Wed, 17 May 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.12.1.zip" sparkle:version="3.12.1" type="application/octet-stream" />
</item>
<item>
<title>Version 3.12.0</title>
<description>
<![CDATA[
<ul>
<li>Adds the ability to check for text alignment in the Typography menu.</li>
</ul>
]]>
</description>
<pubDate>Tue, 2 May 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.12.0.zip" sparkle:version="3.12.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.11.0</title>
<description>
<![CDATA[
<ul>
<li>Adds the ability to check for text alignment in the Typography menu.</li>
</ul>
]]>
</description>
<pubDate>Mon, 3 Mar 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.11.0.zip" sparkle:version="3.11.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.10.0</title>
<description>
<![CDATA[
<ul>
<li>Adds contextual highlighting when typing in bad alt text.</li>
<li>Improves the flow for Focus Order by immediately showing the Focus Items if you only have one sequence.</li>
</ul>
]]>
</description>
<pubDate>Thu, 16 Mar 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.10.0.zip" sparkle:version="3.10.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.9.3</title>
<description>
<![CDATA[
<ul>
<li>Fixes an issue with the color swatch menus sometimes overlapping incorrectly.</li>
</ul>
]]>
</description>
<pubDate>Wed, 8 Mar 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.9.3.zip" sparkle:version="3.9.3" type="application/octet-stream" />
</item>
<item>
<title>Version 3.9.2</title>
<description>
<![CDATA[
<ul>
<li>Fixes some contrast issues when viewing the plugin in dark mode.</li>
</ul>
]]>
</description>
<pubDate>Mon, 6 Mar 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.9.2.zip" sparkle:version="3.9.2" type="application/octet-stream" />
</item>
<item>
<title>Version 3.9.1</title>
<description>
<![CDATA[
<ul>
<li>Updates the APCA thresholds to match the latest standards.</li>
</ul>
]]>
</description>
<pubDate>Fri, 3 Mar 2023 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.9.1.zip" sparkle:version="3.9.1" type="application/octet-stream" />
</item>
<item>
<title>Version 3.9.0</title>
<description>
<![CDATA[
<ul>
<li>Add new vision simulator for bright light.</li>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Thu, 2 Mar 2023 10:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.9.0.zip" sparkle:version="3.9.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.8.0</title>
<description>
<![CDATA[
<ul>
<li>Add new vision simulators for ghosting, yellowing, and loss of contrast.</li>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Wed, 22 Feb 2023 10:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.8.0.zip" sparkle:version="3.8.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.7.1</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 6 Feb 2023 10:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.7.1.zip" sparkle:version="3.7.1" type="application/octet-stream" />
</item>
<item>
<title>Version 3.7.0</title>
<description>
<![CDATA[
<ul>
<li>Add a beta preview of the APCA contrast model.</li>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 6 Feb 2023 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.7.0.zip" sparkle:version="3.7.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.6.2</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Fri, 2 Dec 2022 10:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.6.2.zip" sparkle:version="3.6.2" type="application/octet-stream" />
</item>
<item>
<title>Version 3.6.1</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Fri, 2 Dec 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.6.1.zip" sparkle:version="3.6.1" type="application/octet-stream" />
</item>
<item>
<title>Version 3.6.0</title>
<description>
<![CDATA[
<ul>
<li>Numerous improvements to the contrast checker.</li>
</ul>
]]>
</description>
<pubDate>Tue, 29 Nov 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.6.0.zip" sparkle:version="3.6.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.5.2</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 14 Nov 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.5.2.zip" sparkle:version="3.5.2" type="application/octet-stream" />
</item>
<item>
<title>Version 3.5.1</title>
<description>
<![CDATA[
<ul>
<li>Fixes issue with Focus Order UI margins.</li>
</ul>
]]>
</description>
<pubDate>Wed, 19 Oct 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.5.1.zip" sparkle:version="3.5.1" type="application/octet-stream" />
</item>
<item>
<title>Version 3.5.0</title>
<description>
<![CDATA[
<ul>
<li>Adds new color formats (LAB, LCH, and P3) to the Contrast swatches.</li>
</ul>
]]>
</description>
<pubDate>Mon, 17 Oct 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.5.0.zip" sparkle:version="3.5.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.4.0</title>
<description>
<![CDATA[
<ul>
<li>Adds a new Settings screen allow you to change the default tool shown on launch and also the default color format on the Contrast screen.</li>
</ul>
]]>
</description>
<pubDate>Wed, 14 Sep 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.4.0.zip" sparkle:version="3.4.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.3.0</title>
<description>
<![CDATA[
<ul>
<li>Adds new features: Typography, Alt-Text, and Touch Targets.</li>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Wed, 8 Aug 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.3.0.zip" sparkle:version="3.3.0" type="application/octet-stream" />
</item>
<item>
<title>Version 3.2.2</title>
<description>
<![CDATA[
<ul>
<li>Adds support for dark mode.</li>
</ul>
]]>
</description>
<pubDate>Mon, 25 Jul 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.2.2.zip" sparkle:version="3.2.2" type="application/octet-stream" />
</item>
<item>
<title>Version 3.2.1</title>
<description>
<![CDATA[
<ul>
<li>Adds a hotkey to open Stark (cmd shift 8).</li>
</ul>
]]>
</description>
<pubDate>Wed, 29 Jun 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.2.1.zip" sparkle:version="3.2.1" type="application/octet-stream" />
</item>
<item>
<title>Version 3.2</title>
<description>
<![CDATA[
<ul>
<li>Add support for minimizing the window.</li>
<li>Various UI tweaks and performance improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 27 Jun 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.2.zip" sparkle:version="3.2" type="application/octet-stream" />
</item>
<item>
<title>Version 3.1</title>
<description>
<![CDATA[
<ul>
<li>Fixes issue with alignment of landmark tags.</li>
</ul>
]]>
</description>
<pubDate>Thu, 23 Jun 2022 10:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.1.zip" sparkle:version="3.1" type="application/octet-stream" />
</item>
<item>
<title>Version 3.0</title>
<description>
<![CDATA[
<ul>
<li>A completely redesigned experience.</li>
</ul>
]]>
</description>
<pubDate>Thu, 23 Jun 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v3.0.zip" sparkle:version="3.0" type="application/octet-stream" />
</item>
<item>
<title>Version 2.46</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements</li>
</ul>
]]>
</description>
<pubDate>Thu, 09 Jun 2022 9:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.46.zip" sparkle:version="2.46" type="application/octet-stream" />
</item>
<item>
<title>Version 2.45</title>
<description>
<![CDATA[
<ul>
<li>Updated the colorblind vision simulators.</li>
<li>Added the ability to sign in with Apple.</li>
</ul>
]]>
</description>
<pubDate>Thu, 09 Jun 2022 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.45.zip" sparkle:version="2.45" type="application/octet-stream" />
</item>
<item>
<title>Version 2.44</title>
<description>
<![CDATA[
<ul>
<li>The Check Contrast window will now show even if there is an error, so you can get back to checking contrast quicker.</li>
</ul>
]]>
</description>
<pubDate>Mon, 23 May 2022 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.44.zip" sparkle:version="2.44" type="application/octet-stream" />
</item>
<item>
<title>Version 2.43</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 11 Apr 2022 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.43.zip" sparkle:version="2.43" type="application/octet-stream" />
</item>
<item>
<title>Version 2.42</title>
<description>
<![CDATA[
<ul>
<li>Various bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 14 Mar 2022 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.42.zip" sparkle:version="2.42" type="application/octet-stream" />
</item>
<item>
<title>Version 2.41</title>
<description>
<![CDATA[
<ul>
<li>Fixes an issue where the Focus Order dialog sometimes wouldn't load if there were empty groups.</li>
</ul>
]]>
</description>
<pubDate>Tue, 22 Feb 2022 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.41.zip" sparkle:version="2.41" type="application/octet-stream" />
</item>
<item>
<title>Version 2.40</title>
<description>
<![CDATA[
<ul>
<li>Adds the Landmarks feature which allows you to annotate your design file with HTML5 landmark elements.</li>
</ul>
]]>
</description>
<pubDate>Tue, 11 Jan 2022 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.40.zip" sparkle:version="2.40" type="application/octet-stream" />
</item>
<item>
<title>Version 2.39</title>
<description>
<![CDATA[
<ul>
<li>Updated "Log in to Stark" menu item to "Stark Account".</li>
<li>You can now log in to your Stark account from anywhere within the plugin.</li>
</ul>
]]>
</description>
<pubDate>Wed, 15 Dec 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.39.zip" sparkle:version="2.39" type="application/octet-stream" />
</item>
<item>
<title>Version 2.38</title>
<description>
<![CDATA[
<ul>
<li>Updated "Registration" menu item to "Log in to Stark".</li>
</ul>
]]>
</description>
<pubDate>Mon, 25 Oct 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.38.zip" sparkle:version="2.38" type="application/octet-stream" />
</item>
<item>
<title>Version 2.37</title>
<description>
<![CDATA[
<ul>
<li>Your account plan and status is now viewable right from the Registration screen.</li>
</ul>
]]>
</description>
<pubDate>Tue, 24 Aug 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.37.zip" sparkle:version="2.37" type="application/octet-stream" />
</item>
<item>
<title>Version 2.36</title>
<description>
<![CDATA[
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
]]>
</description>
<pubDate>Wed, 18 Aug 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.36.zip" sparkle:version="2.36" type="application/octet-stream" />
</item>
<item>
<title>Version 2.35</title>
<description>
<![CDATA[
<ul>
<li>Fixes issue with contrast check not working on text layers with fill opacity less than 100%.</li>
</ul>
]]>
</description>
<pubDate>Wed, 16 Jun 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.35.zip" sparkle:version="2.35" type="application/octet-stream" />
</item>
<item>
<title>Version 2.34</title>
<description>
<![CDATA[
<ul>
<li>Add support for allowing Vision Generator feature to be tried three times for Free users.</li>
<li>Added the Blurred Vision simulation to the Vision Generator feature.</li>
<li>Removes Refresh Subscription option.</li>
<li>Cleaned up some visual issues with tooltips.</li>
</ul>
]]>
</description>
<pubDate>Mon, 14 Jun 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.34.zip" sparkle:version="2.34" type="application/octet-stream" />
</item>
<item>
<title>Version 2.33</title>
<description>
<![CDATA[
<ul>
<li>Ability to reorder sequences in Focus Order.</li>
<li>The focus item list will now scroll to the bottom when you add an item.</li>
<li>Fixed issue with sequences not working if you removed all focus items from them.</li>
<li>Added error message when trying to add a focus item to a sequence that is not on the same artboard.</li>
</ul>
]]>
</description>
<pubDate>Wed, 24 Mar 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.33.zip" sparkle:version="2.33" type="application/octet-stream" />
</item>
<item>
<title>Version 2.32</title>
<description>
<![CDATA[
<ul>
<li>Focus Order - establish the sequences and items in which a user accesses elements on your product.</li>
</ul>
]]>
</description>
<pubDate>Thu, 4 Mar 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.32.zip" sparkle:version="2.32" type="application/octet-stream" />
</item>
<item>
<title>Version 2.31</title>
<description>
<![CDATA[
<ul>
<li>Live contrast checking - leave the Stark window open while you select other layers to check.</li>
</ul>
]]>
</description>
<pubDate>Thu, 11 Feb 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.31.zip" sparkle:version="2.31" type="application/octet-stream" />
</item>
<item>
<title>Version 2.30</title>
<description>
<![CDATA[
<ul>
<li>Minor bug fix.</li>
</ul>
]]>
</description>
<pubDate>Tue, 9 Feb 2021 12:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.30.zip" sparkle:version="2.30" type="application/octet-stream" />
</item>
<item>
<title>Version 2.29</title>
<description>
<![CDATA[
<ul>
<li>Minor bug fixes and performance improvements.</li>
</ul>
]]>
</description>
<pubDate>Tue, 9 Feb 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.29.zip" sparkle:version="2.29" type="application/octet-stream" />
</item>
<item>
<title>Version 2.27</title>
<description>
<![CDATA[
<ul>
<li>Minor bug fixes for sign in.</li>
</ul>
]]>
</description>
<pubDate>Tue, 2 Feb 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.27.zip" sparkle:version="2.27" type="application/octet-stream" />
</item>
<item>
<title>Version 2.26</title>
<description>
<![CDATA[
<ul>
<li>Minor bug fixes for sign in.</li>
</ul>
]]>
</description>
<pubDate>Mon, 1 Feb 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.26.zip" sparkle:version="2.26" type="application/octet-stream" />
</item>
<item>
<title>Version 2.25</title>
<description>
<![CDATA[
<ul>
<li>Sign in with your Stark account.</li>
</ul>
]]>
</description>
<pubDate>Thu, 28 Jan 2021 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.25.zip" sparkle:version="2.25" type="application/octet-stream" />
</item>
<item>
<title>Version 2.24</title>
<description>
<![CDATA[
<ul>
<li>Adds blurred vision simulator.</li>
<li>Fixes issue with not being able to run a contrast check on a symbol.</li>
</ul>
]]>
</description>
<pubDate>Wed, 2 Dec 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.24.zip" sparkle:version="2.24" type="application/octet-stream" />
</item>
<item>
<title>Version 2.23</title>
<description>
<![CDATA[
<ul>
<li>Fixes issue with color suggestions not showing with certain color combinations.</li>
</ul>
]]>
</description>
<pubDate>Mon, 9 Nov 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.23.zip" sparkle:version="2.23" type="application/octet-stream" />
</item>
<item>
<title>Version 2.22</title>
<description>
<![CDATA[
<ul>
<li>Fixes issue with contrast checker not working correctly when checking layers with reduced opacity.</li>
</ul>
]]>
</description>
<pubDate>Thu, 1 Oct 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.22.zip" sparkle:version="2.22" type="application/octet-stream" />
</item>
<item>
<title>Version 2.20</title>
<description>
<![CDATA[
<ul>
<li>Swapped foreground/background suggestions position.</li>
<li>Improvements to the color suggestions.</li>
<li>A toast now shows up to confirm artboard generation.</li>
<li>The viewport gets centered on the first generated artboard to make it more clear what just happened.</li>
<li>The generator will now do borders/strokes. Even if the design has a gradient!.</li>
</ul>
]]>
</description>
<pubDate>Wed, 30 Sep 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.20.zip" sparkle:version="2.20" type="application/octet-stream" />
</item>
<item>
<title>Version 2.19</title>
<description>
<![CDATA[
<ul>
<li>Adds the Colorblind Generator feature.</li>
</ul>
]]>
</description>
<pubDate>Thu, 10 Sep 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.19.zip" sparkle:version="2.19" type="application/octet-stream" />
</item>
<item>
<title>Version 2.18</title>
<description>
<![CDATA[
<ul>
<li>Drastically improve how we grab colors from a user's selection for Contrast Checker.</li>
<li>Add help icons for tooltips in Contrast Checker.</li>
</ul>
]]>
</description>
<pubDate>Mon, 24 Aug 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.18.zip" sparkle:version="2.18" type="application/octet-stream" />
</item>
<item>
<title>Version 2.17</title>
<description>
<![CDATA[
<ul>
<li>Fixed issue with not being able to scroll entire artboard when zoomed in.</li>
</ul>
]]>
</description>
<pubDate>Wed, 22 Jul 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.17.zip" sparkle:version="2.17" type="application/octet-stream" />
</item>
<item>
<title>Version 2.16</title>
<description>
<![CDATA[
<ul>
<li>Renamed Refresh Stark Subscription to Refresh Subscription.</li>
<li>Fixed the window height for contrast checker dialogs.</li>
<li>Fixed empty transparent window look upon load.</li>
<li>Renames "Original" to "Original Artboard" in colorblind type.</li>
<li>Make it so long artboard names don't overlap the arrow in the Artboard dropdown.</li>
<li>Fixed the upgrade link not working in the Upgrade message.</li>
<li>Improve how the color suggestions work.</li>
</ul>
]]>
</description>
<pubDate>Tue, 21 Jul 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.16.zip" sparkle:version="2.16" type="application/octet-stream" />
</item>
<item>
<title>Version 2.15</title>
<description>
<![CDATA[
<ul>
<li>Added color suggestions for when your contrast check fails.</li>
<li>General performance improvements and bug fixes.</li>
</ul>
]]>
</description>
<pubDate>Thu, 16 Jul 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.15.zip" sparkle:version="2.15" type="application/octet-stream" />
</item>
<item>
<title>Version 2.14.1</title>
<description>
<![CDATA[
<ul>
<li>Fix issue with black screen when there are apostrophes in artboard names.</li>
</ul>
]]>
</description>
<pubDate>Wed, 24 Jun 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.14.1.zip" sparkle:version="2.14.1" type="application/octet-stream" />
</item>
<item>
<title>Version 2.14</title>
<description>
<![CDATA[
<ul>
<li>Minor enhancements and improvements.</li>
</ul>
]]>
</description>
<pubDate>Mon, 16 Mar 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.14.zip" sparkle:version="2.14" type="application/octet-stream" />
</item>
<item>
<title>Version 2.13</title>
<description>
<![CDATA[
<ul>
<li>Minor enhancements and improvements.</li>
</ul>
]]>
</description>
<pubDate>Tue, 3 Mar 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.13.zip" sparkle:version="2.13" type="application/octet-stream" />
</item>
<item>
<title>Version 2.12</title>
<description>
<![CDATA[
<ul>
<li>Minor enhancements.</li>
</ul>
]]>
</description>
<pubDate>Wed, 8 Jan 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.12.zip" sparkle:version="2.12" type="application/octet-stream" />
</item>
<item>
<title>Version 2.11</title>
<description>
<![CDATA[
<ul>
<li>Change "Normal" to "Original" in Colorblind Simulator.</li>
<li>Change AA rating for shapes.</li>
<li>Show correct error when running on just images with no artboards present.</li>
<li>Fix issue with Colorblind Simulator not running on component artboards.</li>
</ul>
]]>
</description>
<pubDate>Mon, 14 Oct 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.11.zip" sparkle:version="2.11" type="application/octet-stream" />
</item>
<item>
<title>Version 2.10</title>
<description>
<![CDATA[
<ul>
<li>Fix icon not showing in plugins manager.</li>
</ul>
]]>
</description>
<pubDate>Fri, 13 Sep 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.10.zip" sparkle:version="2.10" type="application/octet-stream" />
</item>
<item>
<title>Version 2.9</title>
<description>
<![CDATA[
<ul>
<li>Fix issues with subscription not showing correctly.</li>
<li>Fix some windows not being draggable.</li>
</ul>
]]>
</description>
<pubDate>Mon, 9 Sep 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.9.zip" sparkle:version="2.9" type="application/octet-stream" />
</item>
<item>
<title>Version 2.8</title>
<description>
<![CDATA[
<ul>
<li>Massive performance improvement when running different colorblind simulations.</li>
<li>Minor bugfixes.</li>
</ul>
]]>
</description>
<pubDate>Tue, 3 Sep 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.8.zip" sparkle:version="2.8" type="application/octet-stream" />
</item>
<item>
<title>Version 2.7</title>
<description>
<![CDATA[
<ul>
<li>Fixes issue with the artboards showing in the incorrect order in the Colorblind Simulation.</li>
</ul>
]]>
</description>
<pubDate>Wed, 7 Aug 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.7.zip" sparkle:version="2.7" type="application/octet-stream" />
</item>
<item>
<title>Version 2.5</title>
<description>
<![CDATA[
<ul>
<li>Will now show an error if they try to run a contrast check and the background layer is < 100% opacity.</li>
<li>It will now run successfully if you change the fill, text OR layer opacity on the foreground element.</li>
<li>It will show an error if you have < 100% on BOTH the layer and text/fill opacity.</li>
<li>Ability to drag the windows around.</li>
</ul>
]]>
</description>
<pubDate>Tue, 9 Apr 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.5.zip" sparkle:version="2.5" type="application/octet-stream" />
</item>
<item>
<title>Version 2.4</title>
<description>
<![CDATA[
<ul>
<li>Bugfixes.</li>
</ul>
]]>
</description>
<pubDate>Wed, 13 Mar 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.4.zip" sparkle:version="2.4" type="application/octet-stream" />
</item>
<item>
<title>Version 2.3</title>
<description>
<![CDATA[
<ul>
<li>Bugfixes.</li>
</ul>
]]>
</description>
<pubDate>Mon, 18 Feb 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.3.zip" sparkle:version="2.3" type="application/octet-stream" />
</item>
<item>
<title>Version 2.2</title>
<description>
<![CDATA[
<ul>
<li>Bugfixes.</li>
</ul>
]]>
</description>
<pubDate>Tue, 5 Feb 2019 3:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.2.zip" sparkle:version="2.2" type="application/octet-stream" />
</item>
<item>
<title>Version 2.1</title>
<description>
<![CDATA[
<ul>
<li>Added keyboard shortcuts.</li>
<li>Fixed the issue with the contrast checker not staying on top.</li>
<li>Zoom value is now kept when switching colorblind types.</li>
</ul>
]]>
</description>
<pubDate>Tue, 5 Feb 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.1.zip" sparkle:version="2.1" type="application/octet-stream" />
</item>
<item>
<title>Version 2.0</title>
<description>
<![CDATA[
<ul>
<li>Completely updated UI to make everything more compact and tidy.</li>
<li>Numerous bugfixes and performance improvements.</li>
</ul>
]]>
</description>
<pubDate>Tue, 29 Jan 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v2.0.zip" sparkle:version="2.0" type="application/octet-stream" />
</item>
<item>
<title>Version 1.6</title>
<description>
<![CDATA[
<ul>
<li>Added name of colorblind simulation to preview export filename.</li>
</ul>
]]>
</description>
<pubDate>Tue, 5 Dec 2017 8:30:00 +0000</pubDate>
<enclosure url="https://github.com/stark-contrast/stark-sketch-plugin/archive/v1.6.zip" sparkle:version="1.6" type="application/octet-stream" />
</item>
<item>
<title>Version 1.5</title>
<description>
<![CDATA[
<ul>
<li>Added info for the text sizes in the contrast checker.</li>