forked from microdotblog/microblog-mac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appcast.xml
1830 lines (1779 loc) · 70.5 KB
/
appcast.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Micro.blog for Mac</title>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version 3.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added import for Glass photo archives. Select File → Import → Glass and select the unzipped export folder from Glass.</li>
<li>Added showing auto-generated bookmarked web page summaries for Micro.blog Premium. Select View → Bookmark Summaries.</li>
</ul>
]]></description>
<pubDate>Thu, 25 Jul 2024 09:40:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.3.zip" sparkle:shortVersionString="3.3" sparkle:version="152" length="4262238" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.2.4</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed importing blog post titles from .bar archives.</li>
<li>Fixed not showing an error message with invalid session tokens. Now prompts to sign out and back in again.</li>
</ul>
]]></description>
<pubDate>Tue, 23 Jul 2024 15:00:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.2.4.zip" sparkle:shortVersionString="3.2.4" sparkle:version="151" length="4257959" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.2.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added a new Get Info window for uploads, to show URL and auto-generated text for photos. The keyboard shortcut is ⌘-shift-I.</li>
<li>Fixed issue sometimes adding tab-related disabled menu items to View menu.</li>
</ul>
]]></description>
<pubDate>Wed, 10 Jul 2024 08:30:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.2.3.zip" sparkle:shortVersionString="3.2.3" sparkle:version="150" length="4257236" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.2.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Enabled notes feature for all users. Set it up on the web first and then click Notes in the Mac sidebar.</li>
<li>Added tabs in Posts screen to show all posts or only drafts.</li>
<li>Added new "Copy HTML for Narration" right-click option for audio. This copies the <code><audio></code> tag but hides the browser audio player.</li>
<li>Updated saved window position to keep track of standalone pages separately from blog posts.</li>
<li>Fixed "Copy HTML" button in photo detail window.</li>
<li>Fixed showing publishing status and incorrect new posts message.</li>
</ul>
]]></description>
<pubDate>Fri, 05 Jul 2024 08:30:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.2.2.zip" sparkle:shortVersionString="3.2.2" sparkle:version="149" length="4246368" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.2.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed blank conversation when viewed from a user profile.</li>
<li>Fixed keyboard navigation after clicking "Show More" and for some timeline views.</li>
<li>Updated main window keyboard shortcut to command-shift-O, adding command-O for Notes.</li>
<li>Improved some row colors and "Show More" button.</li>
</ul>
]]></description>
<pubDate>Sun, 07 Apr 2024 11:45:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.2.1.zip" sparkle:shortVersionString="3.2.1" sparkle:version="148" length="4243181" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added new logs window to show current blog publishing status and other errors.</li>
<li>Added keyboard navigation for the timeline. Up and down arrows to select posts, return key to view conversation, and command-R to reply.</li>
<li>Added View menu → Go to @username command to show your profile.</li>
<li>Added keyboard shortcut command-[ for back button.</li>
<li>Added right-click option to delete selected upload.</li>
<li>Added "..." button for selected books in a bookshelf, same options as right-click.</li>
<li>Improved book cover caching.</li>
<li>Improved icons and other little layout fixes.</li>
<li>Fixed Markdown header color when writing a blog post.</li>
</ul>
]]></description>
<pubDate>Fri, 05 Apr 2024 10:15:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.2.zip" sparkle:shortVersionString="3.2" sparkle:version="147" length="4241817" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.1.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added an indicator in the notes list for shared notes.</li>
<li>Added a "New Post" right-click menu option for notes, to copy the note text into a new blog post.</li>
<li>Fixed an issue with resetting the note text after searching.</li>
<li>Fixed showing the currently selected notebook in the notebooks menu.</li>
</ul>
]]></description>
<pubDate>Sat, 17 Feb 2024 11:55:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.1.3.zip" sparkle:shortVersionString="3.1.3" sparkle:version="146" length="4220430" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.1.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed a few more bugs related to the new notes feature, including potential crashes, and better sync of the notes secret key via iCloud.</li>
</ul>
]]></description>
<pubDate>Wed, 14 Feb 2024 12:05:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.1.2.zip" sparkle:shortVersionString="3.1.2" sparkle:version="145" length="4217349" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.1.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed accidentally showing the new Notes sidebar item (and related problems) even if there's no Micro.blog Premium subscription.</li>
<li>For more about the new notes feature in version 3.1, see <a href="https://www.manton.org/2024/02/13/introducing-notes-in.html">this blog post from Manton Reece</a>.</li>
</ul>
]]></description>
<pubDate>Tue, 13 Feb 2024 12:12:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.1.1.zip" sparkle:shortVersionString="3.1.1" sparkle:version="143" length="4216941" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added notes! Micro.blog notes are private or can be shared with others using a special URL. For more about this new feature, see <a href="https://www.manton.org/2024/02/13/introducing-notes-in.html">this blog post from Manton Reece</a>.</li>
<li>Also check out our companion iOS app for notes, Strata, available in the App Store.</li>
</ul>
]]></description>
<pubDate>Tue, 13 Feb 2024 10:00:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.1.zip" sparkle:shortVersionString="3.1" sparkle:version="142" length="4216924" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.0.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added new tags window (cmd-shift-T) for Micro.blog Premium subscribers to filter bookmarks.</li>
<li>Fixed showing a view from an existing conversation causing pane overlapping problems.</li>
</ul>
<p>Micro.blog now requires macOS 11 Big Sur.</p>
]]></description>
<pubDate>Fri, 11 Aug 2023 14:30:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.0.3.zip" sparkle:shortVersionString="3.0.3" sparkle:version="138" length="4123288" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.0.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Improved toolbar to not hide new post and account button at narrow window sizes. Publishing status collapses with shorter text. Thanks @otaviocc!</li>
<li>Added swipe back on highlights screen.</li>
<li>Fixed highlight web page title wrapping.</li>
<li>Fixed some memory leaks and other little bugs.</li>
<li>Fixed potential hang when editing tags on some systems.</li>
<li>Fixed showing edited tags with spaces after commas.</li>
</ul>
<p>Micro.blog now requires macOS 11 Big Sur.</p>
]]></description>
<pubDate>Wed, 02 Aug 2023 10:45:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.0.2.zip" sparkle:shortVersionString="3.0.2" sparkle:version="136" length="4104235" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.0.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added current selected tag to Bookmarks screen.</li>
<li>Fixed actually deleting highlight when delete option chosen in right-click menu.</li>
<li>Fixed dark mode inconsistencies and improved colors.</li>
</ul>
<p>Micro.blog now requires macOS 11 Big Sur.</p>
]]></description>
<pubDate>Sat, 29 Jul 2023 09:10:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.0.1.zip" sparkle:shortVersionString="3.0.1" sparkle:version="134" length="4098020" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 3.0</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>This new version is for Micro.blog Premium subscribers:</p>
<ul>
<li>Added highlights screen with recent highlights and tags filter button.</li>
<li>Added "New Post" right-click option for highlights, to start a new blog post with the text.</li>
<li>Added showing tags on bookmarks screen, with clicking to edit tags.</li>
</ul>
<p>Micro.blog now requires macOS 11 Big Sur.</p>
]]></description>
<pubDate>Fri, 28 Jul 2023 11:15:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_3.0.zip" sparkle:shortVersionString="3.0" sparkle:version="133" length="4098020" type="application/octet-stream" />
<sparkle:minimumSystemVersion>11.0</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.9.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Updated bookshelves to recognize library loans and holds. Use the web version of Micro.blog to connect with Libby.</li>
<li>Updated photo icon in new post window.</li>
<li>Moved publishing status message to the toolbar.</li>
<li>Fixed Day One export to attach photos when referenced with Markdown.</li>
<li>Fixed large video uploads to show better error message.</li>
<li>Fixed accounts pop-up for multiple accounts to use better menu position.</li>
</ul>
]]></description>
<pubDate>Wed, 28 Jun 2023 11:22:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.9.1.zip" sparkle:shortVersionString="2.9.1" sparkle:version="132" length="4090980" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.9</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Updated new post limit to 300 characters, or 600 if there's a block quote included in the post. Full-length blog posts with titles can still be as long as you want.</li>
</ul>
]]></description>
<pubDate>Mon, 25 Feb 2023 09:00:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.9.zip" sparkle:shortVersionString="2.9" sparkle:version="129" length="4056097" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.8.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed correctly sending cross-posting setting to Micro.blog when no services selected.</li>
</ul>
<p>...plus the big change from version 2.8:</p>
<ul>
<li>Added new menu item View → Cross-posting to show checkboxes for which cross-posting services are used for the new post.</li>
</ul>
]]></description>
<pubDate>Thu, 23 Feb 2023 10:10:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.8.1.zip" sparkle:shortVersionString="2.8.1" sparkle:version="128" length="4056170" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.8</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added new menu item View → Cross-posting to show checkboxes for which cross-posting services are used for the new post.</li>
</ul>
]]></description>
<pubDate>Thu, 23 Feb 2023 10:00:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.8.zip" sparkle:shortVersionString="2.8" sparkle:version="127" length="4055991" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.7</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added new macOS icon. Thanks Brad Ellis!</li>
<li>Added inline Reply/Bookmark buttons for the timeline. Click on a post to show the conversation, and click on the date/time to open the post URL for sharing.</li>
<li>Fixed new post window increasing in height.</li>
<li>Fixed categories pane reloading when selected blog changes.</li>
<li>Fixed main window default size and truncated Discover text.</li>
</ul>
]]></description>
<pubDate>Tue, 03 Jan 2023 10:30:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.7.zip" sparkle:shortVersionString="2.7" sparkle:version="126" length="4050101" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.6.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Improved Mastodon username highlighting when writing a new post.</li>
<li>Added progress spinner to menu rows to better show timeline loading.</li>
<li>Fixed photo viewer window title to not include new CDN hostname.</li>
</ul>
]]></description>
<pubDate>Sun, 27 Oct 2022 16:00:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.6.1.zip" sparkle:shortVersionString="2.6.1" sparkle:version="124" length="3681538" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.6</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added user search to Discover screen.</li>
<li>Fixed URL scheme <code>microblog://post?text=</code> to start a new post even when the app isn't open yet.</li>
</ul>
]]></description>
<pubDate>Fri, 28 Oct 2022 13:31:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.6.zip" sparkle:shortVersionString="2.6" sparkle:version="123" length="3717429" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.5.4</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed dragging files from the Finder to the Uploads screen, which accidentally broke in the last version.</li>
<li>Fixed extra space at top of books list.</li>
</ul>
]]></description>
<pubDate>Tue, 26 Jul 2022 09:30:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.5.4.zip" sparkle:shortVersionString="2.5.4" sparkle:version="120" length="3711698" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.5.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Updated dragging from Apple Photos to support higher resolution photos.</li>
<li>Added context menu item for Copy HTML to photos in Uploads. Hold down option key to copy Markdown instead.</li>
<li>Added support for previewing animated GIFs in zoomed image window.</li>
<li>Fixed displaying GIFs and WebP in Posts screen and Uploads.</li>
<li>Fixed restoring arrow cursor over sidebar menu.</li>
<li>Fixed extra space at top of some lists.</li>
</ul>
]]></description>
<pubDate>Mon, 25 Jul 2022 09:00:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.5.3.zip" sparkle:shortVersionString="2.5.3" sparkle:version="118" length="3722447" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.5.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added preference for Day One journal used during export. Thanks @otaviocc!</li>
<li>Fixed color bar at top of main window sidebar that would appear and then disappear when scrolling.</li>
</ul>
]]></description>
<pubDate>Sat, 02 Jul 2022 10:45:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.5.2.zip" sparkle:shortVersionString="2.5.2" sparkle:version="116" length="3747586" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.5.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added auto-saving draft posts to your Mac and prompting to save a draft to Micro.blog when closing without publishing.</li>
<li>Fixed new sidebar Replies and Bookshelves rows when using an external blog.</li>
<li>Fixed Uploads to select image when right-clicking.</li>
</ul>
]]></description>
<pubDate>Sat, 04 Jun 2022 11:05:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.5.1.zip" sparkle:shortVersionString="2.5.1" sparkle:version="115" length="3742344" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.5</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added viewing and editing your replies.</li>
<li>Added new Bookshelves pane to manage books you're reading or want to blog about. Right-click or control-click on a book for more options.</li>
<li>Fixed some other potential bugs with slow internet connections and errors.</li>
</ul>
]]></description>
<pubDate>Tue, 31 May 2022 09:00:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.5.zip" sparkle:shortVersionString="2.5" sparkle:version="113" length="3736201" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.4.4</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed including photos in Day One export. Thanks @otaviocc!</li>
<li>Fixed accidentally converting PNGs to JPEGs when attaching to a post.</li>
</ul>
]]></description>
<pubDate>Tue, 26 Apr 2022 10:00:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.4.4.zip" sparkle:shortVersionString="2.4.4" sparkle:version="107" length="3613796" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.4.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added right-click menu to Uploads screen for copying link or opening image.</li>
<li>Fixed opening photo windows from the timeline.</li>
<li>Fixed crash when uploading videos without a Micro.blog Premium subscription.</li>
</ul>
]]></description>
<pubDate>Fri, 1 Apr 2022 09:00:00 -0500</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.4.3.zip" sparkle:shortVersionString="2.4.3" sparkle:version="106" length="3612824" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.4.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added right-click context menu for Posts and Pages with options to open post in browser or copy link.</li>
<li>Fixed opening some photos at full size from timeline.</li>
</ul>
]]></description>
<pubDate>Mon, 17 Jan 2022 10:00:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.4.2.zip" sparkle:shortVersionString="2.4.2" sparkle:version="104" length="3611053" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.4.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added HTML syntax highlighting along with Markdown.</li>
<li>Fixed photo scaling in preview window.</li>
<li>Fixed cursor not changing back to an arrow over posts list.</li>
</ul>
]]></description>
<pubDate>Tue, 11 Jan 2022 09:10:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.4.1.zip" sparkle:shortVersionString="2.4.1" sparkle:version="101" length="3607306" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.4</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added View menu → Preview when writing a blog post. The preview floats over other windows and will show you what the current Markdown or HTML will look like.</li>
<li>Fixed posts list not updating when saving a new draft.</li>
<li>Fixed post button for drafts to show that the draft will be published. Use File → Save to keep saving as a draft on Micro.blog.</li>
</ul>
]]></description>
<pubDate>Mon, 10 Jan 2022 09:00:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.4.zip" sparkle:shortVersionString="2.4" sparkle:version="100" length="3618703" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added File → Import → Blog Archive to preview and import .bar files.</li>
<li>Added double-clicking on .bar files in Finder to open them for importing.</li>
<li>Improved .bar export to more closely match format from Micro.blog.</li>
</ul>
]]></description>
<pubDate>Mon, 26 Dec 2021 12:22:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.3.zip" sparkle:shortVersionString="2.3" sparkle:version="98" length="3594595" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added File → "Schedule Post" menu command to set date to publish in the future. This is enabled for new posts or drafts.</li>
<li>Added return key for opening selected items in Posts, Pages, and Uploads screens.</li>
<li>Changed File → "Save Draft" to save to Micro.blog without closing the editing window.</li>
<li>Fixed posts screen text color when window not frontmost.</li>
</ul>
]]></description>
<pubDate>Tue, 14 Dec 2021 08:35:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.2.zip" sparkle:shortVersionString="2.2" sparkle:version="97" length="3550985" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.1.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added View menu → "Go to User" menu command to quickly open someone's profile by username.</li>
<li>Added publishing progress pane to top of Timeline after posting.</li>
<li>Updated row selection in Posts and Pages to be full-width to better match Timeline selection.</li>
<li>Fixed account toolbar item background color in Dark Mode. Thanks @vincode!</li>
</ul>
]]></description>
<pubDate>Thu, 11 Nov 2021 08:30:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.1.2.zip" sparkle:shortVersionString="2.1.2" sparkle:version="96" length="3540078" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.1.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed file export issue that would cause blog export with many photos to get increasingly slower, sometimes crashing.</li>
<li>Fixed notification bar color for new messages to better fit in Dark Mode.</li>
<li>Fixed uploading animated GIFs in new posts.</li>
</ul>
]]></description>
<pubDate>Tue, 31 Aug 2021 12:30:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.1.1.zip" sparkle:shortVersionString="2.1.1" sparkle:version="94" length="3619823" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Added emoji topics pop-up menu to Discover.</li>
<li>Added export menu for WordPress, Blog Archive Format, Markdown folder, and Day One.</li>
<li>Fixed posting window to disable smart quotes.</li>
</ul>
]]></description>
<pubDate>Wed, 14 Jul 2021 10:15:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.1.zip" sparkle:shortVersionString="2.1" sparkle:version="90" length="3617640" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.0.5</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Improved post search to use server to include all matching posts (for search terms over 3 characters).</li>
<li>Added web site URL to user profile screens.</li>
<li>Updated sidebar icons to be lighter when window isn't frontmost.</li>
<li>Fixed disabling categories menu item for pages.</li>
<li>Fixed text-substitution problems when writing a new post.</li>
<li>Fixed potential crash when loading posts without a date.</li>
</ul>
]]></description>
<pubDate>Mon, 28 Jun 2021 12:45:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.0.5.zip" sparkle:shortVersionString="2.0.5" sparkle:version="85" length="3475130" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.0.4</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Updated photos import to support new export file format from Instagram.</li>
<li>Updated categories pane to automatically show when categories are set.</li>
<li>Fixed editing categories on existing posts.</li>
<li>Fixed crash when uploading video for non-Premium subscribers.</li>
<li>Fixed photo upload to be more consistent from the open dialog or dragged files.</li>
</ul>
<p>Special thanks to Daniel Jalkut for contributing some of these bug fixes!</p>
]]></description>
<pubDate>Thu, 27 May 2021 11:00:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.0.4.zip" sparkle:shortVersionString="2.0.4" sparkle:version="83" length="3472511" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.0.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Updated for new "Apple Silicon" M1-based Macs.</li>
<li>Fixed selecting main timeline window when clicking on new post window.</li>
</ul>
]]></description>
<pubDate>Sat, 21 Nov 2020 07:45:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.0.3.zip" sparkle:shortVersionString="2.0.3" sparkle:version="81" length="3470524" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.0.2</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed accidentally showing tab bar in new post windows.</li>
<li>Fixed background in new post window if Dark Mode changes while app is running.</li>
<li>Fixed remembering new post window position.</li>
<li>Fixed potential crash when clearing posts search.</li>
<li>Fixed error when opening prefs window for some settings.</li>
<li>Fixed photo window default size resetting.</li>
<li>Fixed copyright year in about box.</li>
<li>Updated camera icon on macOS 11 Big Sur.</li>
</ul>
]]></description>
<pubDate>Mon, 05 Oct 2020 09:00:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.0.2.zip" sparkle:shortVersionString="2.0.2" sparkle:version="79" length="2554366" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.0.1</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Fixed sidebar background in Dark Mode.</li>
<li>Fixed leftover Favorite button instead of Bookmark.</li>
</ul>
<p>...plus all the changes for Micro.blog 2.0:</p>
<ul>
<li>Moved new post and reply to its own window.</li>
<li>Added new Pages and Uploads sections.</li>
<li>Renamed Favorites to Bookmarks and added New Bookmark menu command.</li>
<li>Updated with new icons and toolbar, ready for macOS 11 Big Sur.</li>
<li>Added Copy HTML button when viewing uploaded photos.</li>
<li>Added new microblog://bookmark?url= URL scheme.</li>
<li>Added read links in Bookmarks for Micro.blog Premium.</li>
<li>Many other minor fixes.</li>
</ul>
]]></description>
<pubDate>Tue, 29 Sep 2020 14:27:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.0.1.zip" sparkle:shortVersionString="2.0.1" sparkle:version="77" length="2553818" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 2.0</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>Changes in this version:</p>
<ul>
<li>Moved new post and reply to its own window.</li>
<li>Added new Pages and Uploads sections.</li>
<li>Renamed Favorites to Bookmarks and added New Bookmark menu command.</li>
<li>Updated with new icons and toolbar, ready for macOS 11 Big Sur.</li>
<li>Added Copy HTML button when viewing uploaded photos.</li>
<li>Added new microblog://bookmark?url= URL scheme.</li>
<li>Added read links in Bookmarks for Micro.blog Premium.</li>
<li>Many other minor fixes.</li>
</ul>
]]></description>
<pubDate>Tue, 29 Sep 2020 12:50:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_2.0.zip" sparkle:shortVersionString="2.0" sparkle:version="76" length="2553528" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.14</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 1.9.3</title>
<description><![CDATA[
<style>
ul {
margin-left: 0px; padding-left: 20px;
}
li {
padding: 2px;
}
</style>
<p>A few bug fixes for this update:</p>
<ul>
<li>Fixed crash importing photos from Instagram archive.</li>
<li>Fixed not showing error message when posting fails.</li>
<li>Fixed window and split view divider resizing.</li>
</ul>
]]></description>
<pubDate>Wed, 22 Apr 2020 09:35:00 -0600</pubDate>
<enclosure url="https://s3.amazonaws.com/micro.blog/mac/Micro.blog_1.9.3.zip" sparkle:shortVersionString="1.9.3" sparkle:version="71" length="2930705" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.12</sparkle:minimumSystemVersion>