forked from duongductrong/Snapzy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappcast.xml
More file actions
2097 lines (2097 loc) · 144 KB
/
Copy pathappcast.xml
File metadata and controls
2097 lines (2097 loc) · 144 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.25.2</title>
<sparkle:version>127</sparkle:version>
<sparkle:shortVersionString>1.25.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 26 Jun 2026 13:56: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>🐛 Bug Fixes</h3><ul><li>Improve drag-and-drop functionality for Quick Access customization and update drag payload handling</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.25.2/Snapzy-v1.25.2.dmg"
sparkle:edSignature="cWJDv84ZduATHKv3lZjhWya5sEeMfhesMVVZ4FzQyFnsK7F6elxqB1dZDwhp3sCkayy3P4ENrlY5it0XS0eWDQ=="
length="46158708"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.25.1</title>
<sparkle:version>126</sparkle:version>
<sparkle:shortVersionString>1.25.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 25 Jun 2026 08:51: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>🐛 Bug Fixes</h3><ul><li>Enhance Quick Access customization with drag-and-drop reordering support</li><li>restore activation policy when preferences window closes</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.25.1/Snapzy-v1.25.1.dmg"
sparkle:edSignature="jnLHDn2nL03maQHNPJ2Upi1TTbDLSvy93rXAGgK9TOvhP7NgrD+Oh3pDXhf5L03aTOMmrv6KFECqKgm4foSABw=="
length="46149859"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.25.0</title>
<sparkle:version>125</sparkle:version>
<sparkle:shortVersionString>1.25.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 25 Jun 2026 03:58: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 dry-run release script for local signing and verification</li><li>Welcome Apple Notarization updates</li><li>add optional global shortcuts for active recording toolbar features</li></ul><h3>🐛 Bug Fixes</h3><ul><li>: prevent launch blocking on macOS 27 sandbox migration error</li><li>normalize export_location to tilde-relative path on export</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.25.0/Snapzy-v1.25.0.dmg"
sparkle:edSignature="YDtvcPpo1ZlWEy0Tok3wcos1gvGC2pMvl1tMBOHIMFvFYd1UvzU5YlxbdRRLirsYzearZt/1KYLweczeuBi+Aw=="
length="46132182"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.24.0</title>
<sparkle:version>124</sparkle:version>
<sparkle:shortVersionString>1.24.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 22 Jun 2026 11:00:07 +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 feature onboarding with "What's New" campaigns and localization support</li><li>Enhance Quick Access integration with video editor window management</li><li>Smart element capture</li><li>Add quick access settings for hiding cards when windows are open and animation style selection</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Update app sandbox entitlement check in release publish workflow</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.24.0/Snapzy-v1.24.0.dmg"
sparkle:edSignature="K4pMEcKXMe6VSydlxEmcflr0RgTEI8IXuEIDVO4ez2DJUKO5qd0oZjwpifzN33pv3GqwausA24LL/3BhKAPEAA=="
length="46066300"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.23.0</title>
<sparkle:version>123</sparkle:version>
<sparkle:shortVersionString>1.23.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 21 Jun 2026 02:29:39 +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 shortcut handling for annotation tools and improve import validation</li><li>add overlay-free active-window quick capture</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Support cross-display drag, resize, and reselect in recording region overlay</li><li>Enhance area selection logging and improve screen resolution handling</li><li>defer quick access dismiss cleanup</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.23.0/Snapzy-v1.23.0.dmg"
sparkle:edSignature="jveuoapkVGTXB5lezoYlEkQEuE3OBLf/wO3+IYbnVZEauTAeZUMzlV9NMyAY77eq2B+qk+YSRBReVK46vbzKAA=="
length="45832050"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.22.4</title>
<sparkle:version>122</sparkle:version>
<sparkle:shortVersionString>1.22.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 17 Jun 2026 17:25: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>Improve copyMediaFile utility for clipboard handling of media files</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.22.4/Snapzy-v1.22.4.dmg"
sparkle:edSignature="fwAQhxv4RC6+Jzm3hIycv/MH8EhRbOe9nRDGCyoxsjW9aJo5LWNnE4C6lhSfX1qYjBflg9EkeX65mkNLwgtHBA=="
length="45790879"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.22.3</title>
<sparkle:version>121</sparkle:version>
<sparkle:shortVersionString>1.22.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 16 Jun 2026 17:48:22 +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 swipe actions for Quick Access cards with customizable settings</li></ul><h3>🐛 Bug Fixes</h3><ul><li>resolve localization catalog drift in QuickAccess.xcstrings</li><li>Support both trackpad swipe directions for Quick Access dismiss with natural scrolling and improve OCR</li><li>Restore cursor to arrow on window close to prevent persistence of incorrect cursor states</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.22.3/Snapzy-v1.22.3.dmg"
sparkle:edSignature="rxvc3aucF8U9SWFasIbFhYlh604kGWnyDLfdQJxCqdSWTV1z9nfRWJhAIBAGvA3OkUk+56XsA8Az71wN47GbBg=="
length="45786176"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.22.2</title>
<sparkle:version>120</sparkle:version>
<sparkle:shortVersionString>1.22.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 12 Jun 2026 15:52:24 +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>Optimize snapshot capturing with async task group and reuse mask layer</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.22.2/Snapzy-v1.22.2.dmg"
sparkle:edSignature="fvxxxHd/Q0rA8V0ZWMxKl+BSTkKu+yRFltR2kzpjOx2g2ljPGh0KL1rqgPT/XLTnd9ozb9uUeaLE7u2FEMRPAw=="
length="45732047"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.22.1</title>
<sparkle:version>119</sparkle:version>
<sparkle:shortVersionString>1.22.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 12 Jun 2026 11:05: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>🐛 Bug Fixes</h3><ul><li>retain and restore previously active application during area selection</li><li>commit first area-selection drag and apply cursor on capture start</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.22.1/Snapzy-v1.22.1.dmg"
sparkle:edSignature="gxxvu4jM/zHgI0+LwclziHYsXCxhJN026NwwS67njs5TspVcupg1GtuDvkWRe0lwuKnASstWtq9jb92vT2L6BA=="
length="45727269"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.22.0</title>
<sparkle:version>118</sparkle:version>
<sparkle:shortVersionString>1.22.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 11 Jun 2026 17:53:39 +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 two-finger swipe-to-dismiss functionality for Quick Access cards</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Update app icon assets and add padded app icon generation</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.22.0/Snapzy-v1.22.0.dmg"
sparkle:edSignature="Y/iRY/F60wZDhyRxT7CgYJTW9yZfZWx42kIReuWRXHljs3n4lScBpJ7L9EZjw4NL4YpvCkxqxk4nB7aIknWDDg=="
length="45726276"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.21.0</title>
<sparkle:version>117</sparkle:version>
<sparkle:shortVersionString>1.21.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 09 Jun 2026 18:21: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>Improve annotate item behavior blur and focus</li><li>Add new blur styles and corresponding tests for hexagonal, crystallized, pointillism, halftone, tape, and washi effects</li><li>Add auto redaction shortcut functionality</li></ul><h3>🐛 Bug Fixes</h3><ul><li>update deprecated stanza</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.21.0/Snapzy-v1.21.0.dmg"
sparkle:edSignature="B5pHTaD9boGBDGR+MD1N2uUmtJBNWL1TfcirK7NOkP+Y7MajsYNbQl/eFD4ST9u9QrD1e+/u+CB9QOfPDMYrDw=="
length="47042426"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.8</title>
<sparkle:version>116</sparkle:version>
<sparkle:shortVersionString>1.20.8</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 07 Jun 2026 12:37: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 new aspect ratio options (3:4 and 2:3) to export settings and update related tests</li><li>Implement drag intent requirement for specific annotation tools and enhance drawing interaction logic</li><li>Add arrow bend direction functionality to annotation tools</li><li>Enhance Quick Properties Bar and Inline Area Properties Bar with Editing State Management</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Update window activation logic for annotation and video editor windows</li><li>Reorder clipboard copy and Quick Access actions in PostCaptureActionHandler for improved performance</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.8/Snapzy-v1.20.8.dmg"
sparkle:edSignature="Z7PVLAK3JjFxRkkGYglre+c3hNvTR9l5O/J07DVm9sr4LDC6ue1s2tfODmGSzY26JBvyVKFO5jCTbN5D6BKxAA=="
length="46917654"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.7</title>
<sparkle:version>115</sparkle:version>
<sparkle:shortVersionString>1.20.7</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 06 Jun 2026 12:22:10 +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 clipboard image copying to ensure sandbox extensions and support inline pasting</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.7/Snapzy-v1.20.7.dmg"
sparkle:edSignature="E4oMiYwl08vsPNgjbsNksDYBq823Po48ZnN2TY5PmEAW5fcvi/29ZkgrtW33VVhEBmmmZEtr28oJ6FOAro2uAg=="
length="46924297"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.6</title>
<sparkle:version>114</sparkle:version>
<sparkle:shortVersionString>1.20.6</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 05 Jun 2026 16:26: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>🐛 Bug Fixes</h3><ul><li>Implement database recovery flow and enhance error handling for database operations</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.6/Snapzy-v1.20.6.dmg"
sparkle:edSignature="CqEQfFpD4auulotaPsaFxxp4cT02GvGZPWct7oDK0wm/YQjqX40kMA0CAAnKSnf21yorvd3R3FGD5DGo1n0vDQ=="
length="46923789"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.5</title>
<sparkle:version>113</sparkle:version>
<sparkle:shortVersionString>1.20.5</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 05 Jun 2026 02:56:12 +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 zoom functionality for Quick Access pin window with scroll and pinch gestures</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.5/Snapzy-v1.20.5.dmg"
sparkle:edSignature="1n06Vvqq1JJVF1t6nqufrMnl2Oxi7bUzQQNcCQMXprD36NOQeyiXNUc7boXZx1zdJ82eOUPJsi3BWZ/bg0BlBg=="
length="46877233"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.4</title>
<sparkle:version>112</sparkle:version>
<sparkle:shortVersionString>1.20.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 03 Jun 2026 08:05:54 +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 image rotation functionality and add layout rect preservation for text annotations</li><li>add 90° image rotation buttons to annotate editor</li></ul><h3>🐛 Bug Fixes</h3><ul><li>don't drop first click on area selection overlay while backdrop is pending</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.4/Snapzy-v1.20.4.dmg"
sparkle:edSignature="zAB5cujM1r4F/MVz1p3vshxPywA9ybvhLXSr20nICLdZWiEVwrKt8eQ0i9Enur8JCdm5aSnZa3uX66jfWoZaBA=="
length="46861309"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.3</title>
<sparkle:version>111</sparkle:version>
<sparkle:shortVersionString>1.20.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 01 Jun 2026 18:08: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>Add pinning functionality for screenshots in Quick Access and update related components</li><li>Enhance keyboard shortcuts for inline annotation, adding Cmd+C for copying images and updating documentation</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.3/Snapzy-v1.20.3.dmg"
sparkle:edSignature="8UBBioiAnj63UIHxyn+ie9Rckwszrh0P49z+heKLgfNEDPry/f1xpE6drJ8WRZ7dOvvHgbTVSOkPVGTMih1zDA=="
length="46862656"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.2</title>
<sparkle:version>110</sparkle:version>
<sparkle:shortVersionString>1.20.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 30 May 2026 10:25:22 +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>Update capture naming templates and improve directory handling for screenshots and recordings</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Simplify drag handling and improve gesture classification in Quick Access components</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.2/Snapzy-v1.20.2.dmg"
sparkle:edSignature="3o9xWTJsejOizcK0dbf7wx7Amzk0lmXzozs8igVe7N0BX3GAH/vtPwD3lmcpqeRzE51aQDW4wcK/9e/sn1XcAg=="
length="46820356"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.1</title>
<sparkle:version>109</sparkle:version>
<sparkle:shortVersionString>1.20.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 27 May 2026 12:24: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>✨ Features</h3><ul><li>Enhance color palette functionality with favorite selection and custom color drafting</li><li>add application capture and recording actions to deep link handler and update documentation</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.1/Snapzy-v1.20.1.dmg"
sparkle:edSignature="ZFyzuBUcs/bAovreUVvIsKKJ1JZ9uhdQKaa9/T3asUtXyP3RC41u0jh/G/cYMluOtAn0XFB257mJhZviNtwhAw=="
length="46813587"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.20.0</title>
<sparkle:version>108</sparkle:version>
<sparkle:shortVersionString>1.20.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 24 May 2026 11:20:39 +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 TOML configuration import/export with auto-apply on startup</li><li>Implement TOML configuration export and import for user preferences</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.20.0/Snapzy-v1.20.0.dmg"
sparkle:edSignature="sUtkaSk0Qry8MOHcOW8Fh949im+w4+zeG0l7HiGkrO/LmKCfMnQrDlv/pWckeM9ScS98F6Sf2Vo1r8WHQuBKAA=="
length="46732910"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.19.0</title>
<sparkle:version>107</sparkle:version>
<sparkle:shortVersionString>1.19.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 23 May 2026 06:45: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>Implement auto-scrolling functionality with accessibility support in scrolling capture</li></ul><h3>🐛 Bug Fixes</h3><ul><li>stabilize auto-scroll ci tests</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.19.0/Snapzy-v1.19.0.dmg"
sparkle:edSignature="t4yty+3SV0cVhvJQoIcIB5zgVOgsRdhIrTfWYNnaZzAepXBJxwunvbQ8RDB2J1z+hljcQKOhbRtI2Q8KTFilCA=="
length="46471739"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.18.0</title>
<sparkle:version>106</sparkle:version>
<sparkle:shortVersionString>1.18.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 22 May 2026 19:15:02 +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 Quick Access card actions with enhanced state management and visual feedback</li><li>Enhance screenshot preset auto-application with lightweight canvas effect rendering</li><li>Implement persisted annotation session management</li><li>Implement screenshot preset auto-application and enhance annotation session management</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.18.0/Snapzy-v1.18.0.dmg"
sparkle:edSignature="LLochuWMpy9sAaWD84g9Vq+BZLwZ3yc4hjW2uQ9L+kqWG80QMiTiiQZ6y0+5JUp7k8YqLChhvuhLPiaLu+QPAA=="
length="46440353"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.17.2</title>
<sparkle:version>105</sparkle:version>
<sparkle:shortVersionString>1.17.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 22 May 2026 06:54: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>Add quick properties synchronization feature for annotation tools</li><li>Enhance Annotate functionality and preferences</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Implement vertical CJK OCR normalization and bitmap analysis</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.17.2/Snapzy-v1.17.2.dmg"
sparkle:edSignature="6TrzsM7kGi79cZGHXdcjfs9A51mBmF2QlayoyrtK3rab10zfCgcpN+D514BZtuDuM9bo0Soq2+a0BQWfJwKmDg=="
length="46241248"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.17.1</title>
<sparkle:version>104</sparkle:version>
<sparkle:shortVersionString>1.17.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 21 May 2026 02:40:26 +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.17.1/Snapzy-v1.17.1.dmg"
sparkle:edSignature="aMtFaOUn2fr+tPawopqKwib8vxv0B5uQW5HVW6UeBOWy52l00+9pu7DA0iL5gWCB4sGKuzUFiAVjXyE2GZM2BQ=="
length="46203926"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.17.0</title>
<sparkle:version>103</sparkle:version>
<sparkle:shortVersionString>1.17.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 20 May 2026 09:23:48 +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 clipboard image behavior settings and localization for Annotate</li><li>Implement color palette management for annotation tools (#189, #188)</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.17.0/Snapzy-v1.17.0.dmg"
sparkle:edSignature="JMcVg4YdV8Jckj/i0jP+EiZXF7Hc2arT1FPsiEc5G/zM2zMepivpWnsKDJqZnB8tlrXTO8gVQ5E8amIyn0wFDw=="
length="46197690"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.16.4</title>
<sparkle:version>102</sparkle:version>
<sparkle:shortVersionString>1.16.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 19 May 2026 18: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>🐛 Bug Fixes</h3><ul><li>correct Simplified and Traditional Chinese UI translations</li><li>Update ClipboardHelper to write single pasteboard item with multiple representations</li><li>Use native keyEquivalent column for overlay menu shortcuts</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.16.4/Snapzy-v1.16.4.dmg"
sparkle:edSignature="5OHwfhUapXyDodNoOJjK3mL5hzCLOTcbEGFEJRC9kkN9NGoruN1tWGeFM9YVVIRF3kPrIznMxuyE13AXccntAw=="
length="46006964"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.16.3</title>
<sparkle:version>101</sparkle:version>
<sparkle:shortVersionString>1.16.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 19 May 2026 03:34: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.16.3/Snapzy-v1.16.3.dmg"
sparkle:edSignature="V6zm5ia/Cj7GCds1chx7z5IoyeuzzFScTrAmcusYaAIhl0Hh9IuTNGiCi1YBP4SeSVZwE1uvgkNYVPvUWxJeAg=="
length="46005209"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.16.2</title>
<sparkle:version>100</sparkle:version>
<sparkle:shortVersionString>1.16.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 17 May 2026 19:23:46 +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 microphone input selection for screen recordings</li><li>Add cursor visibility option in recording settings and update related functionality</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.16.2/Snapzy-v1.16.2.dmg"
sparkle:edSignature="UsNT26d0NpfhRUMZQkraugWWQ+3XMLgdxUfoTvXd2WfL92F6Jp92YHywUWCk4VNAqyZL78uHCKdR/fiHCHIOAg=="
length="46004218"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.16.1</title>
<sparkle:version>99</sparkle:version>
<sparkle:shortVersionString>1.16.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 17 May 2026 08:44: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>use camera cursor in application capture mode</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.16.1/Snapzy-v1.16.1.dmg"
sparkle:edSignature="JVFublZYNZVFGvaUu7PC9+UrXA/ntn4Q9evG2k3r45S48mo+pcefpbDDAvjeMhtPcFLpIFcBgJ4trFnBX0PNBQ=="
length="45980693"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.16.0</title>
<sparkle:version>98</sparkle:version>
<sparkle:shortVersionString>1.16.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 16 May 2026 04:12: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>Implement toggle sidebar functionality with keyboard shortcut support (cmd+b)</li><li>add blurred background effects to annotation canvas</li><li>Add background ratio and orientation options for annotation canvas</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.16.0/Snapzy-v1.16.0.dmg"
sparkle:edSignature="bbIhx+TW5IIqRn0J4C834Rq7rvtm+nNq/30I0q7Q5BaXInre0RtqFqXVJ3JRGeBR6UM+eA3l0xps2aC2MWBUDw=="
length="45967141"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.15.1</title>
<sparkle:version>97</sparkle:version>
<sparkle:shortVersionString>1.15.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 15 May 2026 08:59:48 +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.15.1/Snapzy-v1.15.1.dmg"
sparkle:edSignature="209OqWdIS8GkF3xT++JiRc9GqowAVD96LlMgkWzNFGrYYGDqkn7LXzJAWLBHFK8m5r6UHZ/Zhh3wHJENi2kxCw=="
length="45853619"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.15.0</title>
<sparkle:version>96</sparkle:version>
<sparkle:shortVersionString>1.15.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 15 May 2026 07:27: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>✨ Features</h3><ul><li>Implement pinned screenshot windows with QuickAccessPinWindow and manager</li><li>Add refresh icon to status bar menu for improved user experience</li><li>Enhance image cropping functionality with improved scaling and pixel alignment for multi-display support</li><li>Enhance inline area annotation with multi-display support</li><li>Enhance multi-display screenshot functionality and improve capture session management</li><li>Add cloud upload functionality for capture history items with localization support</li><li>Implement Quick Access action customization and configuration</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Enhance localization error reporting with detailed missing and extra keys</li><li>Enhance multi-display capture functionality with target display selection</li><li>Improve capture markup sharpness by aligning cropped images to display pixel grid</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.15.0/Snapzy-v1.15.0.dmg"
sparkle:edSignature="4TP8o71XFKsH7vnJBMQIxoQgcryYaPKOQfC/7DK365Qa5D4oURhLQMm45d6PThgPCAJkRsLY+B5D15dAbQ71DQ=="
length="45853741"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.14.3</title>
<sparkle:version>95</sparkle:version>
<sparkle:shortVersionString>1.14.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 12 May 2026 17:50:20 +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 context menu and hover actions to Quick Access cards, including localization for Move
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.14.3/Snapzy-v1.14.3.dmg"
sparkle:edSignature="5YX15WROvv5uBlvM5s1f2f5vvUOR2Am0kwWCmBIgmtN06rWwfFG2fV/Y4nS8w0/7+X6oViNKTx0MJhDAIQhiAQ=="
length="45462599"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.14.2</title>
<sparkle:version>94</sparkle:version>
<sparkle:shortVersionString>1.14.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 11 May 2026 15:17: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>Enable default shortcut for area screenshot + inline annotate and update documentation</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.14.2/Snapzy-v1.14.2.dmg"
sparkle:edSignature="IIahI/SpZITzSZ0aLM3D+6Yk6I5QETGb+4szSUvs2NFE0dPjplpFXcLNxn1RdGwS758rnTpWdcDQni7OpG7HBw=="
length="45402257"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.14.1</title>
<sparkle:version>93</sparkle:version>
<sparkle:shortVersionString>1.14.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 11 May 2026 10:27:53 +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>Improve Capture Markup inline doesn't work in macOS 15 and Add inline area control geometry tests for placement and insets</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.14.1/Snapzy-v1.14.1.dmg"
sparkle:edSignature="dLeP1fL5pVZe09jQE7cUDwsAdkzDhV5NO6/u/GYNeAaho5/6/JRHYmVFOSXU88nw8QxFS7npvPqIYaKUMovHBA=="
length="45404214"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.14.0</title>
<sparkle:version>92</sparkle:version>
<sparkle:shortVersionString>1.14.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 10 May 2026 03:58: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 inline area annotate capture functionality (#160, #40)</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.14.0/Snapzy-v1.14.0.dmg"
sparkle:edSignature="kKVEW05ty3AICcGGur/9UK/SbSNzrmw/Q/QUrN+GZNbaMkxtOCVAADh5TNBgxSUMz1Xru0K/SGbdOLrsDSTEAA=="
length="45400167"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.13.2</title>
<sparkle:version>91</sparkle:version>
<sparkle:shortVersionString>1.13.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 09 May 2026 15:15: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 audio handling in video editor with multitrack support</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Add audio encoding settings and compatibility exporter for mixed audio tracks</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.13.2/Snapzy-v1.13.2.dmg"
sparkle:edSignature="+L9FgszyV6YGVZuIgA2bQYneu8GDerZDGtOPr7TMbkuOSn4Ewx7Dlb4/iiEa2FHMU8TysfTL0b7MKQ4XqETkBg=="
length="45209746"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.13.1</title>
<sparkle:version>90</sparkle:version>
<sparkle:shortVersionString>1.13.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 09 May 2026 05:08: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>Enhance text annotation handling and layout adjustments</li><li>add scripts for collecting crash logs and running tests</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Improve Chinese translations for General and Restart Onboarding</li><li>Improve undo/redo functionality for text editing and annotation properties</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.13.1/Snapzy-v1.13.1.dmg"
sparkle:edSignature="djra6NA4NXAPoXEWBNMgYO60VK5idiwIi9OmrhlhOIBwvl4ihd+KtkzsIbPvYAIr6gfzAzLkaZsiju5ECyyLAA=="
length="45122748"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.13.0</title>
<sparkle:version>89</sparkle:version>
<sparkle:shortVersionString>1.13.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 08 May 2026 18:29: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>open images from Finder's Open
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.13.0/Snapzy-v1.13.0.dmg"
sparkle:edSignature="8ztz73Z9SW7KGf1d1KTevNv/3q4DCCxHVBuuvg+h3q4eTOtcp+Rm9ZEnb+6R772IpLIZgFv2Cil80wWiEYvuCQ=="
length="45136749"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.12.7</title>
<sparkle:version>88</sparkle:version>
<sparkle:shortVersionString>1.12.7</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 06 May 2026 17:13: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>🐛 Bug Fixes</h3><ul><li>Enhance VisionOCRProfile with additional language support and improve OCRService for diacritic handling</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.12.7/Snapzy-v1.12.7.dmg"
sparkle:edSignature="X/ob1o4uydaq5/FsYMMh45QVPAAn6l7XQwtFhpBkE/tOsW2oXUYptcpg2tzlQyIvDlz2JTe9tb0/OKXsRntNCg=="
length="45087515"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.12.6</title>
<sparkle:version>87</sparkle:version>
<sparkle:shortVersionString>1.12.6</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 04 May 2026 17:14: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>Add crop orientation toggle and update aspect ratio handling</li><li>Improve microphone capture and integrate with recording session</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Enable microphone capture settings regardless of audio capture state</li><li>Improve history cleanup for Quick Access item deletions and add corresponding tests</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.12.6/Snapzy-v1.12.6.dmg"
sparkle:edSignature="dkrgAQoSjPTATPgTYltwF+Fz7q2bNRsgGqehRNMVTYkpnUxpRkM3DwwqKUqPLiYPlw2jFU7ZihrBI8Nr1sztCg=="
length="45068009"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.12.5</title>
<sparkle:version>86</sparkle:version>
<sparkle:shortVersionString>1.12.5</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 03 May 2026 11:16:14 +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 support for space key in CaptureOverlayShortcut and related tests</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.12.5/Snapzy-v1.12.5.dmg"
sparkle:edSignature="eerUNALhGY0U8m+Vr2ni7dwshfEH74k7/mVF+83+G2jqekbsjGv+AeTkpgi/LAnTDcwYRrg8qBIoJIEvafmKDA=="
length="45055970"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.12.4</title>
<sparkle:version>85</sparkle:version>
<sparkle:shortVersionString>1.12.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 02 May 2026 16:27:46 +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.12.4/Snapzy-v1.12.4.dmg"
sparkle:edSignature="5NvKQOeTTM5lQdplWkH2uiwJAPYL0dnH3cv8+JNUvg7WuzW0NHHKoCNL6z4XCjXcREraqlI/DAk5LuFGYpfpAQ=="
length="45063765"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.12.3</title>
<sparkle:version>84</sparkle:version>
<sparkle:shortVersionString>1.12.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 02 May 2026 15:54: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>🐛 Bug Fixes</h3><ul><li>Set sharingType to none for HUD and preview windows to prevent screen capture</li><li>Enhance cloud settings error handling and add graceful degradation for lifecycle permissions</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.12.3/Snapzy-v1.12.3.dmg"
sparkle:edSignature="YG1TOx4BbC0f8m3jvaYU+mNFW3nt+HRKzfNP+HrsLkFi+Lb93XHcEusy6wEdUIVDnYh1YpDXJIhmrQeuOIW6Dw=="
length="45032982"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.12.2</title>
<sparkle:version>83</sparkle:version>
<sparkle:shortVersionString>1.12.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 30 Apr 2026 09:08: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 annotation resizing and selection handling for line annotations; add support for highlighter selection bounds</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Trim fully transparent capture fringe in window capture for improved output quality</li><li>Enhance drag-to-app functionality with lazy file promise and rendered file-URL fallback; ensure edits are saved after successful drag</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.12.2/Snapzy-v1.12.2.dmg"
sparkle:edSignature="pTBwTz/Ut8Sav2lzvtmyos99qRt+riP4x9UHCcXenrCohFSaqxHvOr8e8mYsIe6NR9Kqk1Fv9GiA7FaF38JMAQ=="
length="45009946"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.12.1</title>
<sparkle:version>82</sparkle:version>
<sparkle:shortVersionString>1.12.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 29 Apr 2026 09:40: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>Implement dynamic width measurement for bottom bar components and enhance drag handle functionality</li><li>Implement history item restoration through Quick Access for consistent session behavior</li><li>Update drawPath method to accept dynamic stroke width for improved rendering</li><li>Enhance annotation resizing functionality and improve selection bounds calculation</li><li>Update quarantine attribute command in installation instructions for macOS</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.12.1/Snapzy-v1.12.1.dmg"
sparkle:edSignature="OjRJO/89XtUdb/gMJinExRGvVUNO187PQdt8cv/XmjSe3lD/lCEgz9rAZhKDkrjm2GGiIx6Nc+1AyABJu+pDAA=="
length="44987331"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.12.0</title>
<sparkle:version>81</sparkle:version>
<sparkle:shortVersionString>1.12.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Wed, 29 Apr 2026 05:42: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>Improve annotation canvas and crop tool functionality</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Implement recording save plan with processing directory management and update documentation</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.12.0/Snapzy-v1.12.0.dmg"
sparkle:edSignature="fSzkuPd+aK0ILePMyogEPgNLZVKSyxvC7V2UvFBC0NI9GUxyB9FM/StPNsE7lp6pNGPMyCWjPyn7k9lzZGkBDA=="
length="44932688"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.11.2</title>
<sparkle:version>80</sparkle:version>
<sparkle:shortVersionString>1.11.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 28 Apr 2026 17:49: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>🐛 Bug Fixes</h3><ul><li>Increase frozen snapshot window hide settle delay and add option to exclude own application in capture</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.11.2/Snapzy-v1.11.2.dmg"
sparkle:edSignature="E3fnBIfzEv0v9BfjI3OM9mOxg8Cib723z85QGR5AH8seYg5nsnl/k1oTrJpCnV7rQK+3uCQHlPKSWCIdzwvkAw=="
length="44927779"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.11.0</title>
<sparkle:version>78</sparkle:version>
<sparkle:shortVersionString>1.11.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 28 Apr 2026 14:06: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 application capture mode recording functionality</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.11.0/Snapzy-v1.11.0.dmg"
sparkle:edSignature="O0xSwLNichiMokb2kxPv8uwAgY2EEp3rYLhclfcFBhK+WhBLri4AJO1K5/SbpeS6MPN2bBq1L+1nW16T5jbLAg=="
length="44905549"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.10.0</title>
<sparkle:version>77</sparkle:version>
<sparkle:shortVersionString>1.10.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 28 Apr 2026 10:18: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>✨ Features</h3><ul><li>add automation URL scheme</li><li>Add OCR scanning overlay and QR code detection support</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.10.0/Snapzy-v1.10.0.dmg"
sparkle:edSignature="bOkPSLM/d8k/+tEkRXQJkrR6R9yp4+YVPwyxFxkKfBpMNFauYfL91shYeCe5QyRxac3QgF2aIYisSCFLwvWxAA=="
length="44877407"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.8</title>
<sparkle:version>76</sparkle:version>
<sparkle:shortVersionString>1.9.8</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 27 Apr 2026 16:25: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>🐛 Bug Fixes</h3><ul><li>Enhance recording functionality with improved state management and error handling</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.8/Snapzy-v1.9.8.dmg"
sparkle:edSignature="nW5YJI+7D6V6yRiBMk2/c4D281ikJCouIRZp1yJI+AbMe6aNBIrWqGPenX4u3lnnXgOK306gAtWF2kc98gMyDg=="
length="44766808"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.7</title>
<sparkle:version>75</sparkle:version>
<sparkle:shortVersionString>1.9.7</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Mon, 27 Apr 2026 12:50: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>🔧 Maintenance</h3><ul><li>Bug fixes and improvements</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.7/Snapzy-v1.9.7.dmg"
sparkle:edSignature="gdJ2pCRH2ka+g0/Vq2s/WvHFCqoXSPqqD1f3Kzz9RGMAWkFHAVK3SdFijFaOqVpvxE8xP7OMfYBfI2iVI2u8AA=="
length="44183832"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.6</title>
<sparkle:version>74</sparkle:version>
<sparkle:shortVersionString>1.9.6</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sun, 26 Apr 2026 09:54: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>Improve Cloud Uploads to Floating UI</li><li>Improve cloud upload functionality for Videos/Gifs</li><li>Implement multi-selection and deletion functionality in history panel</li><li>Enhance capture settings UI with segmented navigation for general, screenshot, and recording options</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Adjust frame sizes and alignment for history settings UI elements</li><li>Add size and mode hint indicators to area selection overlay</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.6/Snapzy-v1.9.6.dmg"
sparkle:edSignature="ayGe3BRUMYSYNdTSNmjju0jDKnlCXqbZOWHBkFmWR34PZn44n8LtoliYCZi7gwsslHJRfo2EVYoZTqnp+rcSAg=="
length="44215681"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.5</title>
<sparkle:version>73</sparkle:version>
<sparkle:shortVersionString>1.9.5</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 25 Apr 2026 17:40:23 +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 file change tracking and thumbnail reload for history records</li><li>Add watermark annotation feature with customizable properties</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Implement dynamic font scaling for text annotations in overlay</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.5/Snapzy-v1.9.5.dmg"
sparkle:edSignature="5PZ4dNz3suVF0dGEDoD/c7Qm7OllRAjgyTpoAtJZJiYEcjTT5Br14L1w9N6yV1x1xsvk+BzxVD/bHan4ZV+KBg=="
length="44098882"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.4</title>
<sparkle:version>72</sparkle:version>
<sparkle:shortVersionString>1.9.4</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 25 Apr 2026 05:11:48 +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 crop interaction management with context restoration and keyboard shortcuts</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.4/Snapzy-v1.9.4.dmg"
sparkle:edSignature="CcXg+tYsuByohMtDismvooDK8Sgly8FJQAb3wNwiMLma+oB4BQ9Pw7RvtZzMr450e2uTobGyPHJJnCU5uTHKAQ=="
length="44005484"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.3</title>
<sparkle:version>71</sparkle:version>
<sparkle:shortVersionString>1.9.3</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Sat, 25 Apr 2026 02:24:38 +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 annotation features with counter tool and improved stroke width management</li><li>Add support for opening multiple independent annotate windows and improve localization for new window action</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Improve drag-to-app preparation state management and enhance drag handle UI feedback</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.3/Snapzy-v1.9.3.dmg"
sparkle:edSignature="ahL1Me77EMB1spOwLodTIF8bOiry5VJcDJv49Sx/vUfWbcR6jalqdlfjNhvTy7gm73ERqrMzHrAUT8CKtYmdAg=="
length="44001790"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.2</title>
<sparkle:version>70</sparkle:version>
<sparkle:shortVersionString>1.9.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 24 Apr 2026 16:12:18 +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 key code mapping to use active keyboard layout German for improved shortcut display</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.2/Snapzy-v1.9.2.dmg"
sparkle:edSignature="OW8JZVk0jywGWMeIrxlgDPRDXukKTMnqrvtqWLvGVZxHAUu4MTswZf7ZhtzkgJNADD3y4hQ1teYIH47vXeadBA=="
length="43960289"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.1</title>
<sparkle:version>69</sparkle:version>
<sparkle:shortVersionString>1.9.1</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Fri, 24 Apr 2026 15:42:23 +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 wallpaper management to load bundled default wallpapers and update related UI components</li><li>Add corner radius support for rectangle annotations and update related UI components</li></ul><h3>🐛 Bug Fixes</h3><ul><li>Set selected annotation ID upon adding a new annotation</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.1/Snapzy-v1.9.1.dmg"
sparkle:edSignature="DQsItgsUEffcB8P3NPdwLznXe3nwtAwkgVwao7ZNOadVN9YTR58earpK+ExxY/JqHX7pyrP+WMN+5v8yTt7iBA=="
length="43959607"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.9.0</title>
<sparkle:version>68</sparkle:version>
<sparkle:shortVersionString>1.9.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Thu, 23 Apr 2026 08:15:53 +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 Capture History management and retention policies</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.9.0/Snapzy-v1.9.0.dmg"
sparkle:edSignature="qAJBMzR9fWfU8aaXQ0ug4nU8OwgP0gc0kUj7T2kfSThdEmEeHJmRl/UMX1hHl4GqsOEcKWg4vqXEQQTO4cvODw=="
length="13720663"
type="application/octet-stream"/>
</item>
<item>
<title>Version 1.8.2</title>
<sparkle:version>67</sparkle:version>
<sparkle:shortVersionString>1.8.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<pubDate>Tue, 21 Apr 2026 10:31:54 +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>Implement keyboard input handling for area screenshot sessions in AreaSelectionController and AreaSelectionWindow for resolve issue #99</li><li>Resolve issue #100 by implement dynamic keyboard shortcut handling in AppStatusBarController</li><li>Enhance clipboard functionality for edited captures in annotation and video editor workflows</li></ul>
]]></description>
<enclosure
url="https://github.com/duongductrong/Snapzy/releases/download/v1.8.2/Snapzy-v1.8.2.dmg"
sparkle:edSignature="zphnEZqcJQlcjSnOj4VQ0KNaCYy/WL6zFNXOU3RUk5ILz4OGnhvVAor/FoGA1LSaT6MgwVFSypE1DQHheHR0Ag=="
length="13313351"
type="application/octet-stream"/>
</item>
<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>