-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathappcast.xml
More file actions
1137 lines (1137 loc) · 72.3 KB
/
appcast.xml
File metadata and controls
1137 lines (1137 loc) · 72.3 KB
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>Snapzy Updates</title>
<link>https://github.com/duongductrong/Snapzy/releases</link>
<description>Snapzy application updates</description>
<language>en</language>
<item>
<title>Version 1.8.1</title>
<sparkle:version>66</sparkle:version>
<sparkle:shortVersionString>1.8.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 19 Apr 2026 14:18:44 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Implement OCR request handling and benchmarking for improved text recognition</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.8.1/Snapzy-v1.8.1.dmg"
sparkle:edSignature="MT85WZ1qCnbJvY3KXF1HVU7E9nfBJwA2gRPI+hYsx7zmFMYiFb8R6U0DrH6Z6LPbdXGARblGV4j/WVaerGhxDw=="
length="13216706"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.8.0</title>
<sparkle:version>65</sparkle:version>
<sparkle:shortVersionString>1.8.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 19 Apr 2026 02:48:00 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add configurable Application Capture shortcut and enhance overlay functionality</li><li>Implement application window selection mode in area capture</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.8.0/Snapzy-v1.8.0.dmg"
sparkle:edSignature="D0jrBbor1MFhEUujATyzXM4bZSKC7XJGlkQbxsRb1LxuyMqHTMlCA6uGoErt6RQzessiX5AJXAldEKL2v1TVAw=="
length="13157761"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.8</title>
<sparkle:version>64</sparkle:version>
<sparkle:shortVersionString>1.7.8</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 18 Apr 2026 18:11:49 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Improve Onboarding UI by replace black background with Opaque Background</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.8/Snapzy-v1.7.8.dmg"
sparkle:edSignature="Ve8ezpfNfBF6Yeq7CAOExZlOT56LXMqKbXh/cmOKpe7GPF8SL2CeDF4aY34esAV9BH0hEmMk76Yug6tLS7ORDw=="
length="13056987"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.7</title>
<sparkle:version>63</sparkle:version>
<sparkle:shortVersionString>1.7.7</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 18 Apr 2026 15:33:52 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>Enhance CloudKeychainStore with improved upsert logic and legacy migration handling</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.7/Snapzy-v1.7.7.dmg"
sparkle:edSignature="WcNOunWK3FrID2sDDbity9z/WX96Uy380dnEOsTEydxvUD7o8yV5gw/efCYVLJGrFGXWWXYQtJcKCU8HUy+SBA=="
length="13048328"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.6</title>
<sparkle:version>62</sparkle:version>
<sparkle:shortVersionString>1.7.6</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 18 Apr 2026 05:31:37 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Enhance AppStatusBarController to maintain menu accessibility during recording and manage Preferences window exclusion</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.6/Snapzy-v1.7.6.dmg"
sparkle:edSignature="cDMwwo8fIOciJ+jMtMBUVTAlAxs3DcaiNY+HKVVfKnX4EZP3cMqkGKYrBoUNJz8fkfC5+ftDYC1b0K9OWVpEAQ=="
length="13043133"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.5</title>
<sparkle:version>61</sparkle:version>
<sparkle:shortVersionString>1.7.5</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 18 Apr 2026 04:18:29 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Enhance screen capture with fast snapshot support and improved session handling</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.5/Snapzy-v1.7.5.dmg"
sparkle:edSignature="J2Xa8cCa5ZS4cOEI3xYBYzhCXbXoXwUR/CFqhEeII9MNNHkbSM+G1KwNO7ni36x1V/m7g3PnAeIC43s1LcOFAw=="
length="13034653"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.4</title>
<sparkle:version>60</sparkle:version>
<sparkle:shortVersionString>1.7.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 17 Apr 2026 16:47:13 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Enhance shareable content caching and prefetching logic</li><li>Implement frozen area capture session (cmd+shift+3) for improved area selection</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.4/Snapzy-v1.7.4.dmg"
sparkle:edSignature="ZZh1hKb83YiTim1SkDqc0OggDbWC+We/rkLYjKUlZ1TM9Uc1NXEakzLpjCTykuV3lbNSgp9X3GZOQkFXBYQ4BA=="
length="13033453"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.3</title>
<sparkle:version>59</sparkle:version>
<sparkle:shortVersionString>1.7.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 16 Apr 2026 17:32:47 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>: add language selection step with immediate localization updates</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.3/Snapzy-v1.7.3.dmg"
sparkle:edSignature="sjj4ClgxEsGslZbWhXvNO9erlxCAATKp0z39NMZL47SSzxo899fj6/ONNweLvDs3575xavshu3Va+LjsP7BsBg=="
length="13001204"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.2</title>
<sparkle:version>58</sparkle:version>
<sparkle:shortVersionString>1.7.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 16 Apr 2026 09:26:03 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add Vietnamese and Simplified Chinese localization to README files</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Enhance zoom functionality and image scaling across annotation features</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.2/Snapzy-v1.7.2.dmg"
sparkle:edSignature="5kU66g4RS9+j6SuK423GWDf310Q5EYBNZl2Ved24vW7Aimu4MJTMzU8B1M1vm9mcwhSnJinY+6T9Csi3JOaZCg=="
length="12942538"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.1</title>
<sparkle:version>57</sparkle:version>
<sparkle:shortVersionString>1.7.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 14 Apr 2026 06:44:34 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>Correct case of CatalogTool.swift in CI workflow</li><li>Correct Vietnamese translations in localization files</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.1/Snapzy-v1.7.1.dmg"
sparkle:edSignature="qNdZtQzbn8zjrvCdmzpA8gIrYLci4dgoBjyXszxAV3CVlSyI3ZRwI+QZlRS+60TYGTzR7xhOEL7qN3q9Xcl9BQ=="
length="12935304"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.7.0</title>
<sparkle:version>56</sparkle:version>
<sparkle:shortVersionString>1.7.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 14 Apr 2026 01:11:17 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add language selection feature in preferences with localization support</li><li>Add localized privacy usage descriptions for multiple languages</li><li>Add localization support for English and Vietnamese, update documentation</li><li>Setup multi-language base</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.7.0/Snapzy-v1.7.0.dmg"
sparkle:edSignature="RwIkYF9FWqR2ejOdCR0KEWASUsqa+MkDDFXbGR/DlyLeMgS54/hBDx0rvffXAkAo7iaaKm0ipQ2IIu5VTK1cAg=="
length="12939813"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.6.3</title>
<sparkle:version>55</sparkle:version>
<sparkle:shortVersionString>1.6.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 12 Apr 2026 18:54:59 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🔧 Maintenance</h3><ul><li>Bug fixes and improvements</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.6.3/Snapzy-v1.6.3.dmg"
sparkle:edSignature="M0XZ75CD7yyb/L+PME88EAxXWRm49U9ABym1b4RFr+1WEP0+MyoP930fkGi3E7inzFufd4mPohIgFEna7qx/AQ=="
length="12497822"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.6.2</title>
<sparkle:version>54</sparkle:version>
<sparkle:shortVersionString>1.6.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 12 Apr 2026 18:00:32 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🔧 Maintenance</h3><ul><li>Bug fixes and improvements</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.6.2/Snapzy-v1.6.2.dmg"
sparkle:edSignature="XQ7uKdxnkbrW+tUUuCQpk4SeWAExDJGH7jJfnjr7fZEPQeP4WaBwlI22kz5PNTFjBDt2nqwkYA0WwvIfVVDVBA=="
length="12497463"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.6.1</title>
<sparkle:version>53</sparkle:version>
<sparkle:shortVersionString>1.6.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 11 Apr 2026 18:16:06 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Enhance badge label display with animation and improved visibility in scrolling capture preview</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.6.1/Snapzy-v1.6.1.dmg"
sparkle:edSignature="K/P35ZX6Q2cvJtTYZn06Fo9KNzXe5RoCkhOxBnZQd601T9UIFnEzA05hZWV4ydsDCLUP5HcCOGegXZqC0P7lAw=="
length="12499430"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.6.0</title>
<sparkle:version>52</sparkle:version>
<sparkle:shortVersionString>1.6.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 11 Apr 2026 06:19:11 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add preview image generation and scaling adjustments for scrolling capture</li><li>Enhance scrolling capture feedback with boundary detection and status updates</li><li>Introduce guidance system for scrolling capture with visual cues and state management</li><li>Enhance scrolling capture with finalizing state, preview truth management, and HUD updates</li><li>Implement Scrolling Capture Preview Renderer and Update Capture Flow</li><li>Enhance zoom and pan functionality with dynamic limits and improved state management</li><li>Add scrolling capture feature with keyboard shortcut and documentation</li><li>Update shortcut display names and descriptions for clarity</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.6.0/Snapzy-v1.6.0.dmg"
sparkle:edSignature="QhRiQ5aoAhjYBiuu2MroXCocB12ntwiGGEcEM91VmeNQPtD9zeTHjPSvbIFkwStP9KD2kGMZafrx3bQes2IHBQ=="
length="12498779"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.11</title>
<sparkle:version>51</sparkle:version>
<sparkle:shortVersionString>1.5.11</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 09 Apr 2026 06:52:15 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add arrow styling options and update annotation handling for arrows</li><li>Refactor background cutout button and update annotation tools group</li><li>Implement quick properties bar for annotation tools with customizable options</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.11/Snapzy-v1.5.11.dmg"
sparkle:edSignature="Vz3d03j2eInNxfSeaqEfYyJfhCs3M3Nm+zaNF9AVxAFIGm68UjIJDSRk0UzTRumv9vm1woNNHQh0HcThzPa+DA=="
length="12270664"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.10</title>
<sparkle:version>50</sparkle:version>
<sparkle:shortVersionString>1.5.10</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 06 Apr 2026 18:12:21 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add keyboard shortcut overlay with customizable shortcuts and navigation</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.10/Snapzy-v1.5.10.dmg"
sparkle:edSignature="Yku36NbXi4qB41wwiWigvAqhVkbIJBBXapKcS/Nt6JpQCU7ZQSRlmUJl7K0tZ3JPVwBOdkEabKSy+mJCxANoBQ=="
length="12212702"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.9</title>
<sparkle:version>49</sparkle:version>
<sparkle:shortVersionString>1.5.9</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 05 Apr 2026 17:33:05 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Enable shadow for RecordingToolbarWindow and remove shadows from status bar and toolbar views</li><li>Align custom wallpaper rendering with system wallpapers and remove unnecessary frame height</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.9/Snapzy-v1.5.9.dmg"
sparkle:edSignature="FwEflBUiIlcnes36lmche7WJiltoI+7GOPqweWTGA4FCX+ALJyuZm2KtFCfputDI9/xz+WeNoGpT5BiCD9vTAw=="
length="12133483"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.8</title>
<sparkle:version>48</sparkle:version>
<sparkle:shortVersionString>1.5.8</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 05 Apr 2026 15:28:25 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Implement user-defined canvas presets with storage and management functionality</li><li>Enhance annotation functionality with embedded image support and improved import handling</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.8/Snapzy-v1.5.8.dmg"
sparkle:edSignature="JzlI4kRyH1dyx3z0CfyT2ljM1g9Gdf/hdrlDIeImTGaj6Q7Vs7UKgsAxE4eKec9kj5o8SaOUcdK4syuzc4swDg=="
length="12135579"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.7</title>
<sparkle:version>47</sparkle:version>
<sparkle:shortVersionString>1.5.7</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 05 Apr 2026 06:29:33 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add zoom transition duration configuration and improve zoom transition functionality in video editor</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.7/Snapzy-v1.5.7.dmg"
sparkle:edSignature="fE8SFOmQ0LHTvSZyujJ85YqSbu6Nw4Pwv0RoUAcyOJLluOnqQroA88Wlq5MCF/b9EmG+WloVYo2HaeiMBRlTCA=="
length="11992746"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.6</title>
<sparkle:version>46</sparkle:version>
<sparkle:shortVersionString>1.5.6</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 04 Apr 2026 09:23:33 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Implement cloud credential import and export functionality with password protection</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.6/Snapzy-v1.5.6.dmg"
sparkle:edSignature="+VpnW4Sz4KPN7TZTpifhf3tjhtFY+SM7NvZVYAqLOu/mto02yEpURSoqdVDFRMrC26Nj0E9YRyUJon8UDDQMAA=="
length="11980263"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.5</title>
<sparkle:version>45</sparkle:version>
<sparkle:shortVersionString>1.5.5</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 04 Apr 2026 07:51:05 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>extract Keychain logic to CloudKeychainStore and update CloudManager credential handling</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.5/Snapzy-v1.5.5.dmg"
sparkle:edSignature="jI1I1zp0uT2NMXWY2KEiJbyAAKaDVto2Ktl3PzlSY8+PBrpSgBmlo7+RrUDeWj6SNEquRv8wsHtgtJhN3rFpAA=="
length="11897045"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.4</title>
<sparkle:version>44</sparkle:version>
<sparkle:shortVersionString>1.5.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 04 Apr 2026 07:43:42 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🔧 Maintenance</h3><ul><li>Bug fixes and improvements</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.4/Snapzy-v1.5.4.dmg"
sparkle:edSignature="STmKAgBrMxACrRdU70wWXWUDBkG5MK22Uv+TkUX2/nk9OlYF9S1XZRfccpluhm82LwjobuQEwoNWRc+qBtfhBw=="
length="11897068"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.3</title>
<sparkle:version>43</sparkle:version>
<sparkle:shortVersionString>1.5.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 04 Apr 2026 06:00:41 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🔧 Maintenance</h3><ul><li>Bug fixes and improvements</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.3/Snapzy-v1.5.3.dmg"
sparkle:edSignature="1Ntp/05gibmAiJV39wSPkb5CObTJ/nDphCTSHhc2li2VHXrtodTxorp6WAZ7FxdO+CmpVgOJbfbZkwmKs9nFBg=="
length="11869026"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.5.0</title>
<sparkle:version>40</sparkle:version>
<sparkle:shortVersionString>1.5.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 31 Mar 2026 16:05:42 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add background cutout auto-crop feature with user preference and UI updates</li><li>Implement object cutout feature with keyboard shortcut and UI updates</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.5.0/Snapzy-v1.5.0.dmg"
sparkle:edSignature="r7YRsGY1NSXWaCscUc+ZJKJLZcWRMtSBscCkF/LjzmliPi5EbtCQ/rkMtRUIyUK/CtdrulrxH2UE6cBzc7j6Ag=="
length="11787869"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.8</title>
<sparkle:version>39</sparkle:version>
<sparkle:shortVersionString>1.4.8</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 30 Mar 2026 17:37:27 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add user preference for showing cursor in screenshots and recordings</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.8/Snapzy-v1.4.8.dmg"
sparkle:edSignature="bCwUYkbE/mtMttiuFInrVsqN4gcsJhIQdX5DWZnToTyXAe1+pZUO280O/SO3WQx85QkOB1jyUxigJB2ZB2twBg=="
length="11677338"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.7</title>
<sparkle:version>38</sparkle:version>
<sparkle:shortVersionString>1.4.7</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 27 Mar 2026 17:24:57 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Optimize wallpaper loading and rendering with caching, limit displayed system wallpapers, and refine UI button hover effects.</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Persist crop state and improve crop tool interaction with automatic sidebar management.</li><li>Introduce to persist and re-edit canvas visual effects in annotation sessions.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.7/Snapzy-v1.4.7.dmg"
sparkle:edSignature="hE+OrY+Iq79LV4xJScXHs+0i7WHA3tK8OQ0fLntOeVuBm+jrrb0DiMgTyA67yHZZL/q5ah6vBybq2qXTifuHAQ=="
length="11676045"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.6</title>
<sparkle:version>37</sparkle:version>
<sparkle:shortVersionString>1.4.6</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 25 Mar 2026 17:11:51 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Enhance video encoding with dynamic bitrate, HEVC/H.264 codec selection, pixel-aligned capture, and diagnostic logging for recording.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.6/Snapzy-v1.4.6.dmg"
sparkle:edSignature="gWTk4i6mA79K6IdVl5W3OeO1qM4hbQ1FQi6o1GVLivLp9GXCfQ5/hWsF4S1Je4nPPdehyV/2Pvm3ERV8oFFwBg=="
length="11669102"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.5</title>
<sparkle:version>36</sparkle:version>
<sparkle:shortVersionString>1.4.5</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 24 Mar 2026 16:35:01 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Introduce user-configurable filename templates for screenshots and recordings.</li><li>Add cloud upload feature description and detail its security implementation in documentation.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.5/Snapzy-v1.4.5.dmg"
sparkle:edSignature="tDe+KdpmPK0M6xZp5JhWoS81OIrwcBCuHgreKJt+wbmbnsvWHRwKdATXxa9f9+YommGTbmWFKaIeOO9SFz+QDA=="
length="11646467"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.4</title>
<sparkle:version>35</sparkle:version>
<sparkle:shortVersionString>1.4.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 24 Mar 2026 11:47:19 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Refactor zoom segment layout and interaction to ensure a minimum visual width and improve UI adaptation for small blocks.</li><li>Align video preview zoom and pan calculations with export output for accuracy and update camera transition duration.</li><li>Enhance auto-focus engine with improved path generation, quality metrics, and canonical mouse sample handling.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.4/Snapzy-v1.4.4.dmg"
sparkle:edSignature="Mpnl4w5RtQK0ThDr8BBiXMrP9KhmmeOebG2C8FDJKKV8LvknnBz7m6Z3yAUmckfmU5Yyz7DCOCt70EW3XJUhCw=="
length="11633144"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.3</title>
<sparkle:version>34</sparkle:version>
<sparkle:shortVersionString>1.4.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 24 Mar 2026 06:06:04 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Implement a dedicated save flow for temporary captured videos and GIFs, including dynamic primary action button text.</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Dynamically set video composition frame duration from source and log detailed recording frame statistics.</li><li>Enhance screen capture and recording by improving desktop icon and widget exclusion and preventing self-capture of UI elements.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.3/Snapzy-v1.4.3.dmg"
sparkle:edSignature="dgifYb28aOwuJC+g8cOfVUEFo+mUFF+3rMFx/FWGrirFURliqHqVTWYJwthJ7pCyQJ3/Pe9wa504jUXOTV24Cg=="
length="11580073"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.2</title>
<sparkle:version>33</sparkle:version>
<sparkle:shortVersionString>1.4.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 23 Mar 2026 17:35:29 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Implement caching for cloud usage data and refactor CloudUsageService with a dedicated worker actor.</li><li>Add masked endpoint display logic to CloudManager and integrate it into the Preferences view.</li><li>Implement password protection for cloud credentials, including gate and initialization UI.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.2/Snapzy-v1.4.2.dmg"
sparkle:edSignature="FGeSkTwx/zzQiL6jQ+bu/6za6Iw6OXcYNma530FqMcyLJHIU+enEIH8XYoGmGSp/wKUyX8Ap9MUqbd5BemExAg=="
length="11542936"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.1</title>
<sparkle:version>32</sparkle:version>
<sparkle:shortVersionString>1.4.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 23 Mar 2026 13:22:06 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>Prevent cloud configuration save if S3 lifecycle rule application fails and refactor S3 lifecycle XML string formatting.</li><li>Resolve AWS S3 signature issues by removing manual Content-Length and refining header/URI encoding for signing, and update Keychain identifiers.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.1/Snapzy-v1.4.1.dmg"
sparkle:edSignature="NJuqwx4527PC3meafLVfB5FKub8Y1A5ZQtXXfxtF7nF4LC1HELMfopEMK3ZtU2UawwXUVwRfOMt6TJ8hq587Bw=="
length="11464377"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.4.0</title>
<sparkle:version>31</sparkle:version>
<sparkle:shortVersionString>1.4.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 23 Mar 2026 10:28:17 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Implement LazyView for deferred SwiftUI tab loading and cache cloud configuration details.</li><li>Enhance cloud upload records with content type and thumbnail support, and add advanced filtering, sorting, and display modes to the upload history view.</li><li>Add cloud usage service to track and display bucket storage, object count, and lifecycle rules.</li><li>Implement cloud object lifecycle management to configure and remove expiration rules for S3 and R2 storage providers.</li><li>Improve UI of cloud configuration.</li><li>Remove cloud overwrite confirmation alert and directly trigger cloud upload.</li><li>Ensure removes history records when overwrited upload screenshot</li><li>Implement cloud storage integration with S3/R2 providers, preferences, and overwrite handling for annotated images.</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Improve keystroke name resolution in by using -based mapping for global monitor reliability.</li><li>Add support for punctuation, keypad, and navigation keys to .</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.4.0/Snapzy-v1.4.0.dmg"
sparkle:edSignature="EiVVu+FgLaHe2vjtOQgAl4hrdh62Ti51W+E2taEoUU67GPzkcDOBp2N45hPB1SMaxQFTy/9PKvXSEoHthIMlAg=="
length="11479098"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.3.5</title>
<sparkle:version>30</sparkle:version>
<sparkle:shortVersionString>1.3.5</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 21 Mar 2026 16:39:30 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🔧 Maintenance</h3><ul><li>Bug fixes and improvements</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.3.5/Snapzy-v1.3.5.dmg"
sparkle:edSignature="DNMKhJAUQfllvVmF4FNAqf6itatAe8G9FAruEGYecJposfkHNyzGClA+jjzJwWuRpgJ72vNDgkrqE6dh5NiAAg=="
length="8800964"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.3.4</title>
<sparkle:version>29</sparkle:version>
<sparkle:shortVersionString>1.3.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 21 Mar 2026 08:42:03 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>Update Space key to function in text inputs and provide cursor feedback for pan mode.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.3.4/Snapzy-v1.3.4.dmg"
sparkle:edSignature="0wJURy1JXhLLLSfBzSta9epvoXyCYA1b7GGbNm8p2ewxEdPo2WytSeXY01Lq8MECEyvcot+b17RKh/FbwHPQCw=="
length="8602834"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.3.3</title>
<sparkle:version>28</sparkle:version>
<sparkle:shortVersionString>1.3.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 21 Mar 2026 03:28:28 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>add to accurately determine the active screen for multi-monitor UI positioning and capture operations.</li><li>Write both NSURL and NSImage to the pasteboard for maximum compatibility across applications.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.3.3/Snapzy-v1.3.3.dmg"
sparkle:edSignature="msqAgjrQOVBZvQ5N/jVHhyVyS+FVd3kJbnbAnUBffTW4itmb9fg+bv6j2o0JLcSGdjLfghkuW1P6yK6mYV9DAg=="
length="8602348"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.3.2</title>
<sparkle:version>27</sparkle:version>
<sparkle:shortVersionString>1.3.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 21 Mar 2026 02:55:16 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>Always display the 'Copy' button in the Quick Access card hover overlay.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.3.2/Snapzy-v1.3.2.dmg"
sparkle:edSignature="quyQnuq7SvqIRnH0glvhIwJDL0/v2Wk5UcJhzphpznLd3FI9TjTPISbEvlDpPu6B9rlNCFG9k4OylS/JODu7Bg=="
length="8599859"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.3.1</title>
<sparkle:version>26</sparkle:version>
<sparkle:shortVersionString>1.3.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 20 Mar 2026 18:24:06 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>enhance image rendering and screen capture quality with pixel-perfect techniques and dynamic scaling.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.3.1/Snapzy-v1.3.1.dmg"
sparkle:edSignature="q+UsD20kxrsHiE7c26mG2Qzx3pbN4pXeFudeccpPNsuXpnEc/guoRg76cvWEvav7TMr+PxJqZKR7RoY/C67+CQ=="
length="8600161"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.3.0</title>
<sparkle:version>25</sparkle:version>
<sparkle:shortVersionString>1.3.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 20 Mar 2026 15:46:35 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Implement canvas panning functionality using the Space key and mouse drag, and refine zoom range options.</li><li>Add keyboard shortcuts and trackpad gestures for zoom, expand zoom range, and animate transitions.</li><li>Include window shadows in screen capture for macOS 14.0+ by setting to false.</li><li>Introduce configurable shortcuts for the annotate editor's copy-and-close and toggle-pin actions, updating UI and event handling.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.3.0/Snapzy-v1.3.0.dmg"
sparkle:edSignature="K8rhondHxqXqsKiaK13Z8SfLE81S2Hjhtsc5cCKh2KVPUt3UpxP75aD5ux1gBqe23swcL8W2OoA7HV+pPTyKBQ=="
length="8597978"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.2.6</title>
<sparkle:version>24</sparkle:version>
<sparkle:shortVersionString>1.2.6</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 19 Mar 2026 18:38:52 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Add a warning message about WebP encoding speed in capture settings.</li><li>Add .webp, .jpg image format support and format-aware clipboard copying for screenshots and annotations.</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.2.6/Snapzy-v1.2.6.dmg"
sparkle:edSignature="TnBdJF2VYTXhTaq4dAXL7s/tpm6PMg38TWi41SmTJiv9hl5le/ztG5rrls2FCIWeDxq1Id5zqdE6AJy2SAmrAw=="
length="8564109"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.2.5</title>
<sparkle:version>23</sparkle:version>
<sparkle:shortVersionString>1.2.5</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 18 Mar 2026 17:39:41 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>add splash screen skip functionality with a Do
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.2.5/Snapzy-v1.2.5.dmg"
sparkle:edSignature="Qpx8lVPyskN+5DAXnLgpR6l2MCNMemyTQlmPh3tS+LDpfklzXLOjlx87Z8yhh/7qVtGHWTJun5cKcRy9PNWICg=="
length="8070353"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.2.4</title>
<sparkle:version>22</sparkle:version>
<sparkle:shortVersionString>1.2.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 17 Mar 2026 18:22:09 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>: centralize sound playback management and solve issue sound playback calls across the application</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.2.4/Snapzy-v1.2.4.dmg"
sparkle:edSignature="n/s6xA86oseNutir/v1BRbMbhdLlodMmvO37s6NUspBvacN3R9rLamC7r8wdU7y+oXd2EnhS7+bKbweeqg5kBA=="
length="8067633"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.2.3</title>
<sparkle:version>21</sparkle:version>
<sparkle:shortVersionString>1.2.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 17 Mar 2026 13:52:55 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>✨ Features</h3><ul><li>Enhance text annotation editing with automatic commit on tool switch or click away, improve text editor sizing, and enable annotation movement in all tool modes.</li><li>Implement multiline text editing for annotations with dynamic height and word wrapping</li></ul><h3>🐛 Bug Fixes</h3><ul><li>resolve annotation drag/resize state management and updating the active tool upon selection.</li><li>Enhance annotation selection and tool switching UX, improve keyboard shortcut reliability</li><li>fix select & deselect textbox</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.2.3/Snapzy-v1.2.3.dmg"
sparkle:edSignature="7jCGv2hxVwgaERuFCDdM09qTKHCyx2Dq0zcPrHgdDpFb7uMTy1mq05VUO486tKkYaGmgtdcBKeITXsBAi/VJDQ=="
length="8068853"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.2.2</title>
<sparkle:version>20</sparkle:version>
<sparkle:shortVersionString>1.2.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 16 Mar 2026 17:05:56 +0000</pubDate>
<description><![CDATA[
<style>:root { color-scheme: light dark; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; } h3 { font-size: 14px; margin: 12px 0 6px; } ul { padding-left: 20px; margin: 4px 0; } li { margin: 3px 0; }</style>
<h3>🐛 Bug Fixes</h3><ul><li>replace AnnotateDragSource with NSFilePromiseProvider for improved drag performance and compatibility</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.2.2/Snapzy-v1.2.2.dmg"
sparkle:edSignature="FYX6I9wE4pr0FXp/70qphsoImR/gJ74spKIsDAPbHs52Zl2u3bllA68m2lijIeVfS2GUbzzZO1Eaa37NzM0eBQ=="
length="8050362"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.2.1</title>
<sparkle:version>19</sparkle:version>
<sparkle:shortVersionString>1.2.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 16 Mar 2026 12:51:01 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>✨ Features</h3>
<ul>
<li>Implement window pinning for the Annotate feature with UI, state, and keyboard shortcut</li>
<li>Improve annotation save responsiveness with instant UI updates and background saving, refactor session data to use raw image data</li>
<li>implement annotation session caching and update clipboard actions</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.2.1/Snapzy-v1.2.1.dmg"
sparkle:edSignature="nCOc9oHvUjTxLu3GBaVPSOnClPhZgRATvv+RE3Q3td5F+VvXcZhxS2yHNhGqaf9Knt8cKY4MCT0flw7OJdTVCQ=="
length="8047583"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.2.0</title>
<sparkle:version>18</sparkle:version>
<sparkle:shortVersionString>1.2.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 15 Mar 2026 09:34:58 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>✨ Features</h3>
<ul>
<li>Mouse click highlight overlays during screen recording</li>
<li>Keystroke overlay display during recording</li>
<li>Configurable mouse & keystroke preferences with persistence</li>
<li>Dynamic scaling for Quick Access card dimensions</li>
<li>Improved mouse event handling with caching, throttling, and animation control</li>
</ul>
<h3>🐛 Bug Fixes</h3>
<ul>
<li>Fixed curl pipe compatibility for install script</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.2.0/Snapzy-v1.2.0.dmg"
sparkle:edSignature="N3LHhTYEA9Qd+0+YtEQ/Cfy0oEPhw9HPYb0qtTt2096yTzlIh8Rh5V6/Re7ZE6rrSqieL99tKso6TCdyRSrpCQ=="
length="8036292"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.1.0</title>
<sparkle:version>17</sparkle:version>
<sparkle:shortVersionString>1.1.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 14 Mar 2026 06:08:50 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>✨ Features</h3>
<ul>
<li>Improved Quick Access, capture, and consume flow</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.1.0/Snapzy-v1.1.0.dmg"
sparkle:edSignature="jIzfo27XJKMCQKcMAa5XE6ubbupbWd09EghN5K46V0jAMHr6t+hNs/i1+TIASmVp5Y49XeIuz0wuKQSC2wIRBg=="
length="7962900"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.0.15</title>
<sparkle:version>16</sparkle:version>
<sparkle:shortVersionString>1.0.15</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 14 Mar 2026 03:52:15 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>✨ Features</h3>
<ul>
<li>Enhanced local update testing with detailed signing process and entitlements handling</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.0.15/Snapzy-v1.0.15.dmg"
sparkle:edSignature="fz1kuBSig2SnZmzsXN9YBb2s0ls0WFHjGe0D3J7Nu5ppTaf/r1G2jM1hCeyuKkoDxHIHKNXRikzt1CMeMlg8DA=="
length="7890847"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.0.14</title>
<sparkle:version>15</sparkle:version>
<sparkle:shortVersionString>1.0.14</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 14 Mar 2026 03:43:32 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>🔧 Maintenance</h3>
<ul>
<li>Internal build and release pipeline improvements</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.0.14/Snapzy-v1.0.14.dmg"
sparkle:edSignature="jk9AZCSPp5cdQmC6EytvbOMmCoFcSF/5tKkGlYtT4LQAsk1C45QfO78gPy4yGer+g/NishuMDI+Jl7epqu9sBQ=="
length="7890902"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.0.13</title>
<sparkle:version>14</sparkle:version>
<sparkle:shortVersionString>1.0.13</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 14 Mar 2026 02:55:45 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>🔧 Maintenance</h3>
<ul>
<li>Internal build and release pipeline improvements</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.0.13/Snapzy-v1.0.13.dmg"
sparkle:edSignature="AC0eNQY8amz/h5NV49Zd6zjipsXguVM2fMK8s4s8wqVOqn/sfid9z5WK1e80aAD1D3PHBwhZH4GAaYuVWhvIDA=="
length="7890941"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.0.12</title>
<sparkle:version>13</sparkle:version>
<sparkle:shortVersionString>1.0.12</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 14 Mar 2026 02:26:03 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>✨ Features</h3>
<ul>
<li>Improved self-signed certificate trust for code signing</li>
<li>Detailed update manager lifecycle logging</li>
</ul>
<h3>🐛 Bug Fixes</h3>
<ul>
<li>Fixed interactive trust setting for self-signed certificate in CI</li>
<li>Added self-signed certificate generation and TCC permission testing scripts</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.0.12/Snapzy-v1.0.12.dmg"
sparkle:edSignature="D+zh3q01eiyCfkjpbzu92CLZ/3K7w6dEYvECj4Ract/GGNB+inFcPBf/NhoXFoCu/+xNeglKk156DC0U6upjAg=="
length="7890877"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.0.10</title>
<sparkle:version>11</sparkle:version>
<sparkle:shortVersionString>1.0.10</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 13 Mar 2026 19:54:56 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>✨ Features</h3>
<ul>
<li>Cache management with size calculation and clearing options</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.0.10/Snapzy-v1.0.10.dmg"
sparkle:edSignature="edn9hMEZ/W8IRdsBjWPshTDjLvDK8HrNfeZQkcpHs2nWDCgK8jrLtJLr3ATgIh/ekhmwhwOGmgy4iQHBAR3ECw=="
length="7866318"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.0.9</title>
<sparkle:version>10</sparkle:version>
<sparkle:shortVersionString>1.0.9</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 13 Mar 2026 19:25:52 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>🐛 Bug Fixes</h3>
<ul>
<li>Enhanced code signing process and updated entitlements for improved security</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.0.9/Snapzy-v1.0.9.dmg"
sparkle:edSignature="TMQgjl/R/TJYzIf4XntvAD+qcZwgnHMM6Aj7oj0PKtuWMd5VeGmZpU9KvKVQdexHriSUcaYKnjV28MNMAXBGAA=="
length="7849171"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.0.8</title>
<sparkle:version>9</sparkle:version>
<sparkle:shortVersionString>1.0.8</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 13 Mar 2026 17:41:25 +0000</pubDate>
<description><![CDATA[
<style>
:root { color-scheme: light dark; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.5; padding: 8px 16px; }
h3 { font-size: 14px; margin: 12px 0 6px; }
ul { padding-left: 20px; margin: 4px 0; }
li { margin: 3px 0; }
</style>
<h3>✨ Features</h3>
<ul>
<li>System screenshot shortcut conflict detection and user guidance in onboarding</li>
</ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.0.8/Snapzy-v1.0.8.dmg"
sparkle:edSignature="1cIDtbNh+5QQM2bHYDoAX12bEo1U5l8o5XDqB4ZtsSDEZL35y55hVcG2Jozb7ZPTSqCiYL5SVIp5725yKaC0Cw=="
length="7849250"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.0.7</title>
<sparkle:version>8</sparkle:version>
<sparkle:shortVersionString>1.0.7</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 11 Mar 2026 18:33:22 +0000</pubDate>
<description><![CDATA[