-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreleasenotes.htm
More file actions
executable file
·1271 lines (1264 loc) · 64.6 KB
/
releasenotes.htm
File metadata and controls
executable file
·1271 lines (1264 loc) · 64.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta http-equiv="x-ua-compatible" content="IE=Edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body, html {
padding: 0;
margin: 0;
font-family: 'Segoe UI', sans-serif;
font-size: 12px;
line-height: 150%;
background: #111214;
color: #ddd;
}
h1 {
color: #4cc6ff;
font-weight: normal;
font-size: 20px;
margin: 25px 15px;
padding: 0;
}
h2 {
color: #fff;
font-weight: normal;
font-size: 16px;
margin: 10px 15px 5px;
padding: 0;
}
ul {
margin: 0;
list-style-type: none;
}
li {
margin-left: -5px;
text-indent: 0px;
}
li:before {
content: "";
width: 5px;
height: 5px;
background: #999;
display: block;
float: left;
margin: 7px 0px 0 -15px;
}
.release {
border-bottom: 1px solid #333;
padding-bottom: 25px;
padding-right: 10px;
}
.release p {
padding: 15px;
margin: 0 15px 25px;
background: #2a2a2a;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="release">
<h1>Cairo Desktop 0.4.434</h1>
<ul>
<li>Fixed numerous memory leaks and performance issues (#899, #923)</li>
<li>Fixed some instances where task categories may be incorrectly determined (#899)</li>
<li>Fixed task thumbnails disappearing too easily when attempting to click them (#914, thanks @Cosebdd!)</li>
<li>Fixed the clock occasionally not updating any more (#917)</li>
<li>Fixed the desktop icons showing in the wrong place in some mixed DPI setups (#921)</li>
<li>Fixed the handling when changing taskbar settings:<ul>
<li>Changing the taskbar mode now correctly adjusts the desktop icons out of the way (#921)</li>
<li>Disabling task labels now correctly adjusts the task button size (#918)</li>
</ul>
</li>
<li>Fixed the search menu appearing before search is available (#923)</li>
<li>Hotkeys that open menus now open the one on the same monitor as the mouse, if multiple menu bars are present (#923)</li>
<li>Toggling menu bar items no longer requires Cairo restart (#923)</li>
<li>Added translations:<ul>
<li>Norwegian (#894, thanks @elislays08!)</li>
<li>Slovenian (#892, thanks @anderlli0053!)</li>
</ul>
</li>
<li>Misc under-the-hood improvements</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.407</h1>
<ul>
<li>Window minimize/restore animations now use the Cairo taskbar button location (#881)<ul>
<li>If the button is on multiple taskbars, the primary is used</li>
</ul>
</li>
<li>When running Cairo as shell, you can now disable the Windows key from opening the Programs menu (#713)</li>
<li>Fixed several taskbar issues:<ul>
<li>Fixed taskbar not displaying the correct tasks when switching virtual desktops (#398)</li>
<li>Fixed closing a task from the taskbar not bringing prompts (i.e. for unsaved data) to the foreground</li>
<li>Fixed disabled windows, which can't be restored, being allowed to minimize</li>
<li>Fixed first selected window un-maximizing</li>
<li>Fixed focus issue when minimizing a window using the taskbar</li>
<li>Fixed some tasks not being removed from the taskbar when requested</li>
<li>Fixed Start menu window showing in the taskbar in early versions of Windows 10</li>
<li>Fixed tasks sometimes showing on the wrong taskbar after adding/removing a monitor</li>
</ul>
</li>
<li>Fixed App Grabber window size when opened on a secondary display (#872)</li>
<li>Fixed auto-hide menu bars and taskbars on a secondary screen with high DPI opening off-screen</li>
<li>Fixed Cairo behaving improperly after restarting Explorer (#861)</li>
<li>Fixed Cairo sometimes missing newly added monitors on Windows 11 (#886)</li>
<li>Fixed crash when the log file cannot be written</li>
<li>Fixed Explorer crash loop after restarting Explorer while Cairo is running on Windows 11</li>
<li>Fixed hidden files being visible in situations when they should not be</li>
<li>Fixed inability to restore the default file manager in Cairo Settings (#871)</li>
<li>Fixed many situations where Cairo would cover full-screen apps</li>
<li>Fixed menu bar and taskbar sometimes being positioned incorrectly depending on display setup</li>
<li>Fixed menu bar and taskbar sometimes duplicating when changing screen settings (#852)</li>
<li>Fixed some conditions where Cairo could steal focus</li>
<li>Fixed some non-full-screen-able windows going in front of Cairo like a full-screen window</li>
<li>Fixed "Start Cairo when logging in" option not working properly (#857)</li>
<li>Fixed updater pulling x64 builds on ARM64 (#859)<ul>
<li>Note: This means if you're currently using Cairo on ARM, you should download this release from GitHub to get the correct version. The updater will then work properly going forward.</li>
</ul>
</li>
<li>Improved performance on Windows 8 and newer</li>
<li>Removed restriction preventing enabling the notification area while the taskbar is disabled (#749)</li>
<li>Added translations:<ul>
<li>Chinese (Traditional) (#867, thanks @new1271!)</li>
</ul>
</li>
<li>Improved translations:<ul>
<li>Brazilian Portuguese (#865, thanks @E-rick23!)</li>
<li>German (#840, thanks @uDEV2019!)</li>
<li>Russian (#843, thanks @vanja-san!)</li>
</ul>
</li>
<li>Misc under-the-hood improvements</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.370</h1>
<ul>
<li>Cairo no longer requires .NET Framework 4.7.1, and includes all necessary .NET files. As a result, the download size has increased.</li>
<li>Added "add to programs menu" and "add to quick launch" commands to desktop/stacks icon context menus (#834)</li>
<li>Added option to automatically show removable drives as stacks in the menu bar (#836)</li>
<li>Added options to hide the programs or places menus (#821, thanks @TheXorog!)</li>
<li>Added updates support for the ARM64 build (#812)</li>
<li>Added a commands framework which can be used by extensions (#144)<ul>
<li>Extensions can invoke commands offered by Cairo components and other extensions</li>
<li>Extensions can register their own commands, which can appear in desktop/stacks icon context menus</li>
</ul>
</li>
<li>Fixed apps disappearing from the programs menu when the shortcut that the app was added from is deleted, but the app is still installed (#834)</li>
<li>Fixed being unable to drag desktop icons to the programs menu (#834)</li>
<li>Fixed error adding .exe files to the programs menu when the file has no description (#834)</li>
<li>Fixed extensions that are misbehaving preventing Cairo startup (#814)</li>
<li>Fixed mouse back/forward buttons navigating the desktop when the dynamic desktop is disabled (#827)</li>
<li>Fixed programs menu closing itself when the menu bar is on the bottom edge (#824)</li>
<li>Fixed "open on desktop" sometimes not appearing when right-clicking stacks (#829)</li>
<li>Fixed task list menu sometimes appearing in the wrong place (#811)</li>
<li>Fixed taskbar items sometimes disappearing after removing a monitor (#817)</li>
<li>Improved translations:<ul>
<li>German (#808, thanks @uDEV2019!)</li>
<li>Simplified Chinese (#832, thanks @Cria-Cysta!)</li>
<li>Spanish (#818, thanks @ponjadito23!)</li>
</ul>
</li>
<li>Misc under-the-hood improvements</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.317</h1>
<ul>
<li>Added auto-hide option for the menu bar (#120)</li>
<li>Added option to show the menu bar on the bottom of the screen (#142)</li>
<li>Added Flat Accent theme, which is a variant of the Flat theme that uses the current Windows accent color (#731, thanks @Blastd!)</li>
<li>Added a configurable delay to activate showing the menu bar or taskbar when using auto-hide, set to 250ms by default</li>
<li>Network and Power system notification area icons in Windows 11 now open the specific network or power flyout with version 22H2 or later</li>
<li>Notification area icons can now be middle-clicked</li>
<li>The settings window now scrolls to improve usage on small screens</li>
<li>Fixed broken shortcuts causing Cairo to open the "missing shortcut" window when not desirable (#774)</li>
<li>Fixed some applications such as Notepad, Paint, and Edge PWAs not opening when Cairo is set as shell (#734)</li>
<li>Fixed notification area icons for some apps, such as DS4Windows, not functioning</li>
<li>Fixed inverting system icons when using software rendering (#790, thanks @xoascf!)</li>
<li>Fixed taskbar items sometimes disappearing after removing a monitor (#773)</li>
<li>Fixed some potential errors when taskbar items change</li>
<li>Fixed system icons not working in Windows 11 with ExplorerPatcher or StartAllBack</li>
<li>Fixed blur behind the full-width taskbar not working when set to auto-hide</li>
<li>Improved translations:<ul>
<li>German (#719, thanks @uDEV2019!)</li>
<li>Italian (#756, thanks @Blastd!)</li>
<li>Portuguese (#755, thanks @E-rick23!)</li>
<li>Simplified Chinese (#721, thanks @wcxu21!)</li>
<li>Spanish (#746, thanks @ponjadito23!)</li>
</ul>
</li>
<li>Settings, logs, and extensions now reside within <code>%localappdata%\Cairo Desktop</code>. Settings are automatically moved to the new location and are now saved as JSON.</li>
<li>Misc under-the-hood improvements</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.245</h1>
<ul>
<li>Added new options for multi-monitor taskbars (#203):<ul>
<li>Show all tasks on all monitors (previous behavior)</li>
<li>Show tasks on the same monitor as the window (new default)</li>
<li>Show tasks on the same monitor as the window, show all on the primary monitor</li>
</ul>
</li>
<li>Added Italian translation (#708, thanks @Blastd!)</li>
<li>Added middle-click on window thumbnails to close the window (#680)</li>
<li>An ARM64 native version of Cairo is now available as a preview (#703)</li>
<li>Fixed Cairo hiding behind non-frontmost full-screen windows (#495)</li>
<li>Fixed context menus not using dark mode in Windows 11 22H2</li>
<li>Fixed incorrect desktop icons showing with Insider versions of Windows (#712)</li>
<li>Fixed popup windows going behind their parent when switching to them via the taskbar</li>
<li>Fixed some notification area icons, such as FastStone Capture, not remembering their pinned setting</li>
<li>Fixed some notification area popups appearing in the wrong location with multiple monitors</li>
<li>Improved light themes to invert known white-on-white notification area icons (#709)</li>
<li>Improved translations:<ul>
<li>Brazilian Portuguese (#676, thanks @E-rick23!)</li>
<li>Russian (#693, thanks @rndtrash!)</li>
</ul>
</li>
<li>Misc under-the-hood improvements</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.198</h1>
<ul>
<li>Added support for notification area balloon notifications (#620)<ul>
<li>Notifications appear in-line in the menu bar</li>
<li>Hovering a notification expands to show the entire contents</li>
<li>If a collapsed icon has a notification, it is temporarily shown</li>
</ul>
</li>
<li>Added Hungarian translation (#653, thanks @cinadr!)</li>
<li>Enabled using environment variables in the 'go to folder' window (#652)</li>
<li>Improved reliability of the installer (#656, thanks @sredna!)</li>
<li>Improved reliability of adjusting pinned notification area icons (#670)</li>
<li>Improved reliability of system work area adjustments</li>
<li>Improved taskbar animation curve</li>
<li>Updated Russian localization (#672, thanks @curoviyxru!)</li>
<li>Fixed crash after disabling notification area (#658)</li>
<li>Fixed errors during taskbar flash animation and the Flat theme (#655)</li>
<li>Fixed Explorer desktop icons occasionally remaining hidden after closing Cairo (#665)</li>
<li>Fixed quick launch and taskbar icons becoming pixelated when changing their size (#666)</li>
<li>Fixed the taskbar not properly resizing when the quick launch icons change</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.174</h1>
<ul>
<li>Fixed an error when starting Cairo after uninstalling a UWP app that was added to App Grabber (#644)</li>
<li>Several fixes and improvements for the "Application (combined)" taskbar grouping setting:<ul>
<li>Fixed a crash that could occur (#645)</li>
<li>Fixed progress bars getting stuck after a file transfer completes (#651)</li>
<li>Fixed unexpected animations when closing the second window for an application</li>
<li>Fixed task thumbnail window disappearing when opening or closing the second window for an application</li>
<li>Improved performance</li>
</ul>
</li>
<li>Improved "add to quick launch" taskbar menu option to set the application name instead of the name of the executable</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.164</h1>
<ul>
<li>Added ability to run eligible UWP apps (such as Windows Terminal) as administrator (#605)</li>
<li>Improved desktop navigation toolbar positioning to better adapt to changing screen sizes (#642)</li>
<li>Fixed some applications not starting from Cairo due to an incorrect working directory (#640)</li>
<li>Fixed taskbar thumbnails appearing on the wrong screen when the taskbar is shown on multiple monitors (#636)</li>
<li>Fixed "always run as administrator" dialog not saving choice</li>
<li>Fixed "run as administrator" option missing on quick launch items</li>
<li>Fixed "run as" option missing on quick launch items</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.158</h1>
<ul>
<li>Added option to group and combine taskbar buttons by application, like in Windows 7 and up (#52)<ul>
<li>Settings to group by Programs menu category, application, or application (combined)</li>
<li>When combined, multiple windows appear in the task thumbnail popup</li>
</ul>
</li>
<li>Added Windows 11 support (#622)<ul>
<li>Network, power, and volume icons show the appropriate Windows 11 controls</li>
<li>Fixed dark mode context menu</li>
<li>The Action Center icon now opens the Windows 11 notifications and calendar view</li>
</ul>
</li>
<li>Added Korean language (#621, thanks @effx13!)</li>
<li>Improved reliability of the notification area</li>
<li>Fixed Chromium-based apps, Firefox, and others incorrectly thinking the taskbar is auto-hidden and displaying a gap at the bottom of their window (#356, #401)</li>
<li>Fixed flickering menu bar and taskbar when displays change (#578)</li>
<li>Fixed 'run as administrator' option incorrectly appearing for UWP apps (#605)</li>
<li>Fixed some Windows 8 shell windows unexpectedly appearing in the taskbar</li>
<li>Fixed task middle-click to open a new instance not working with UWP apps (#627)</li>
<li>Fixed task progress appearance with task labels hidden (#615)</li>
<li>Fixed the Windows taskbar not being hidden if it re-appears unexpectedly</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.133</h1>
<ul>
<li>Added support for taskbar badges used by many apps</li>
<li>Added support for hiding system notification area icons via GPO (#588)</li>
<li>Improved flashing window behavior in the taskbar to flash the correct number of times</li>
<li>Improved performance of the taskbar</li>
<li>Improved reliability of the notification area</li>
<li>Fixed minimize/restore sounds not playing (#564)</li>
<li>Fixed some Explorer taskbar features not working after closing Cairo</li>
<li>Fixed some windows not being sized correctly when restoring (#564)</li>
<li>Fixed the "show desktop" file not working with Cairo running</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.112</h1>
<h2 id="app-management-improvements-">App management improvements:</h2>
<ul>
<li>Added complete app category management to the Programs menu (#549)<ul>
<li>If you'd like to move an app to a category that doesn't yet exist, you can now create a new one via the context menu</li>
<li>Categories can now be renamed, reordered, or removed via their context menu</li>
</ul>
</li>
<li>Improved app grabber usability (#405)<ul>
<li>Added tooltips to icons</li>
<li>Renamed "Hide" button to "Collapse" to better indicate its function</li>
</ul>
</li>
<li>Improved app renaming (#554)<ul>
<li>Added ability to rename Quick Launch apps</li>
<li>Replaced clunky inline Programs menu rename with a dialog</li>
</ul>
</li>
<li>Fixed click area on buttons at the bottom of the Programs menu being too small</li>
<li>Fixed cut off program labels in Programs menu</li>
<li>Fixed missing Store app icons, such as Forza Horizon 4 (#531)</li>
<li>Fixed the Programs menu not re-opening after a dialog is dismissed</li>
</ul>
<h2 id="general-improvements-">General improvements:</h2>
<ul>
<li>Added Turkish language support (#557, thanks @ysfchn!)</li>
<li>Added ability to type in a folder path to navigate the dynamic desktop to by either right-clicking the Browse icon on the desktop toolbar and choosing "Go to folder," or shift-clicking the Browse icon (#543)</li>
<li>Added ability for themes to disable bar transparency (#555)</li>
<li>Added shell menu dark mode support for Windows 10 21H1</li>
<li>Shift-clicking the "Exit Cairo" button will now restart Cairo (#528)</li>
<li>Improved performance of the taskbar</li>
<li>Improved taskbar app category detection (#562, thanks @kevinboss!)</li>
<li>Fixed full-screen apps being covered by Cairo when they span multiple monitors (thanks @kevinboss!)</li>
<li>Fixed Windows desktop icons being hidden with the Cairo desktop disabled (#567, thanks @kevinboss!)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop 0.4.80</h1>
<p>We've re-written significant portions of Cairo to resolve bugs, improve compatibility, enhance extensibility, and to make it easier for us to add new functionality going forward.</p>
<ul>
<li>Extensions built for Milestone 3 builds of Cairo will need to be updated before they will work in newer versions. See the CairoExtensionSamples repo for sample extensions that have been updated.</li>
<li>Command-line arguments have changed in this version. If you're using these, see the wiki for updated arguments.</li>
</ul>
<h2>Folder browsing improvements:</h2>
<ul>
<li>Re-implemented folder views to more closely resemble Windows Explorer directory listing results</li>
<li>Improved performance of loading folders</li>
<li>File and folder icons now match what is shown by Windows Explorer</li>
<li>File and folder context menus now appear in dark mode on Windows 10 version 1903 through 20H2 when specified by the selected Cairo theme</li>
<li>Special shell folders, such as This PC and Control Panel, can now be opened on the dynamic desktop and added as stacks</li>
<li>ZIP files can now be browsed into on the dynamic desktop or added to stacks (you can even add folders within a ZIP as stacks--neat!)</li>
<li>Fixed file rename not selecting the last character</li>
<li>Fixed icons appearing pixelated on high-resolution displays</li>
</ul>
<h2>Dynamic desktop improvements:</h2>
<ul>
<li>The desktop now includes items from the common desktop folder, like the Explorer desktop</li>
<li>The desktop toolbar history menu now shows tool tips with the path of each item</li>
<li>Improved desktop overlay hiding after selecting an option from the context menu</li>
<li>Improved desktop toolbar current folder tool tip</li>
<li>Fixed desktop not getting mouse capture after closing a stack</li>
<li>Fixed display of folders with an underscore in their name in the desktop toolbar history menu</li>
<li>Fixed errant drag-drop operations occurring on the desktop</li>
</ul>
<h2>Stacks improvements:</h2>
<ul>
<li>The shell context menu is now used in stacks (#496)</li>
<li>Fixed stacks 'open' button always opening in a new window regardless of desktop settings</li>
<li>Fixed stacks staying open after choosing an icon</li>
</ul>
<h2>Notification area improvements:</h2>
<ul>
<li>Fixed some icons not appearing (such as OBS and Spotify)</li>
<li>Fixed some icons not responding to clicks (such as Origin, #517)</li>
<li>Fixed some icon updates causing a crash on 32-bit systems</li>
<li>Fixed some menus flashing or not appearing at all (such as EarTrumpet and Steam, #498)</li>
</ul>
<h2>Taskbar improvements:</h2>
<ul>
<li>Added ability to hide taskbar labels (#510, thanks @Cereal-Killa!)</li>
<li>Setting to enable/disable the taskbar no longer requires a restart</li>
<li>Fixed an error when right-clicking the task list</li>
<li>Fixed some cases of incorrect categorization in the taskbar</li>
</ul>
<h2>Search improvements:</h2>
<ul>
<li>Improved responsiveness</li>
<li>Improved search results</li>
</ul>
<h2>App Grabber improvements:</h2>
<ul>
<li>Improved performance</li>
<li>Fixed App Grabber not getting focus when opening from the Programs menu</li>
<li>Fixed error on Server Core 2012 (#508)</li>
</ul>
<h2>General improvements:</h2>
<ul>
<li>Blur behind the menu bar is now enabled by default on supported systems</li>
<li>Setting to show menu bars or taskbars on all monitors no longer requires a restart</li>
<li>Updated Russian localization (#530, thanks @curoviyxru!)</li>
<li>Themes are now stored in a 'Themes' sub-directory</li>
<li>Themes can now be stored per user in <code>%localappdata%\Cairo_Development_Team\Themes</code></li>
<li>Fixed file extensions showing in the Themes drop down</li>
<li>Fixed Cairo Settings sometimes not correctly showing whether Cairo is set as the shell or not</li>
<li>Fixed issue with Cairo covering full-screen apps with multiple monitors</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.7174</h1>
<ul>
<li>Added support for hiding the volume icon via Group Policy (#484)</li>
<li>Fixed a crash on startup when using the overlapping taskbar setting (#504)</li>
<li>Fixed a potential error when right-clicking folders in the desktop folder chooser (#483)</li>
<li>Fixed blur not being applied to the full-width taskbar after restarting Cairo (#485)</li>
<li>Fixed desktop icons not moving when changing the overlapping taskbar position (#504)</li>
<li>Fixed issues with some apps that have multiple notification icons (like Open Hardware Monitor) (#481)</li>
<li>Fixed some notification area icons missing in the Windows taskbar after exiting Cairo (#481)</li>
<li>Fixed the Action Center menu extra setting being available while Cairo is running as shell (#500)</li>
<li>Improved the ease of changing fonts with themes (#450)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.7147</h1>
<ul>
<li>Added new higher-quality icons to dialog messages</li>
<li>Added option to reset the desktop toolbar position to the toolbar context menu (#470)</li>
<li>Added support for the native Windows volume icon in the notification area when running alongside Explorer (#466)</li>
<li>Added support for theming Cairo dialog message windows</li>
<li>Added support for changing the following Cairo settings without a restart: (#476)</li>
<ul>
<li>Enable menu bar shadow</li>
<li>Programs menu layout</li>
<li>Show hibernate option in Cairo menu</li>
<li>Show notification area icons</li>
<li>Taskbar display mode</li>
</ul>
<li>Improved reliability of the update process (#453)</li>
<li>Improved startup performance with large folders in stacks (#451)</li>
<li>Fixed a settings window crash that could occur with certain security software (#457)</li>
<li>Fixed an error that could occur when holding down the desktop overlay hotkey (Win-Shift-D by default) (#458)</li>
<li>Fixed Cairo alert messages causing the rest of Cairo to become unresponsive</li>
<li>Fixed Cairo displaying on top of Chrome and other Chromium-based browsers in full-screen mode (#468)</li>
<li>Fixed issues clicking some notification area icons, such as Avast utilities, and the Network icon on older Windows versions (#351)</li>
<li>Fixed Pantherbar and other apps using the Hardcodet.NotifyIcon library not appearing in the notification area (#265)</li>
<li>Fixed some Metro shell flyouts showing in the taskbar on Windows 8 (#467)</li>
<li>Fixed some programs that start before Cairo not appearing in the Cairo notification area (#465)</li>
<li>Fixed the language selector on the welcome tour</li>
<li>Fixed the taskbar list appearing in the middle of the screen when using a tablet in right-handed mode (#469)</li>
<li>Fixed Windows taskbar auto-hide settings changing after using Cairo (#320)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.7108</h1>
<ul>
<li>Added common keyboard shortcuts to selected desktop icon (#435)</li>
<li>Added shift + middle-click taskbar button shortcut to perform the opposite of the configured middle-click action (#446)</li>
<li>Fixed blur showing with auto-hide taskbar (#431)</li>
<li>Fixed Cairo displaying above full-screen windows which moved to another display (#403)</li>
<li>Fixed desktop not respecting DPI change (#447)</li>
<li>Fixed misplaced menu bar shadows with per-monitor DPI (#447)</li>
<li>Fixed misplaced taskbar with auto-hide and per-monitor DPI (#429)</li>
<li>Fixed some memory leaks (#439)</li>
<li>Fixed windows not reacting to workarea changes when Cairo is set as shell (#445)</li>
<li>Improved the efficiency of the notification area (#440, #449)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.7086</h1>
<ul>
<li>Taskbar improvements:</li>
<ul>
<li>Added a close button to taskbar thumbnails (#400)</li>
<li>Added blur behind the full-width taskbar when "blur behind the menu bar" is enabled (#404)</li>
<li>Fixed incorrect aspect ratio on taskbar thumbnails (#420)</li>
<li>Fixed not indicating the active window when Cairo is launched (#411)</li>
<li>Fixed not properly adjusting size in response to display changes</li>
<li>Fixed not responding to DPI changes when "show taskbar on multiple monitors" is enabled, but "show menu bar on multiple monitors" is disabled</li>
<li>Fixed some windows not appearing in the taskbar (#396)</li>
</ul>
<li>Desktop improvements:</li>
<ul>
<li>Added ability to immediately rename when creating a new file or folder via the 'New' menu</li>
<li>Added support for showing wallpaper on all displays when Cairo is running as shell</li>
<li>Added support to automatically start the system shell when Cairo closes unexpectedly while running as shell</li>
<li>Cairo now automatically starts in shell mode if no other shell is running (to disable this, start Cairo with the <code>/noshell</code> command line argument) (#387)</li>
<li>Fixed bottom-most windows opening underneath the wallpaper when Cairo is running as shell</li>
<li>Fixed Cairo exiting when swapping displays if the desktop is disabled (#422)</li>
<li>Fixed sometimes appearing above other windows unintentionally on Windows 8 and 10</li>
<li>Fixed sometimes being sized incorrectly after a display change</li>
<li>Fixed Win + D hotkey hiding desktop icons on Windows 8 and 10 (#254)</li>
<li>Fixed incorrect click and drag behavior when renaming files and folders</li>
<li>Fixed icon tooltips flickering</li>
<li>Fixed the desktop overlay removing the wallpaper when Cairo is running as shell</li>
<li>Fixed toolbar position resetting when screen size changes (#422)</li>
<li>Fixed wallpaper disappearing when disabling the desktop while Cairo is running as shell (#408)</li>
<li>Improved handling when the current wallpaper file is not found</li>
</ul>
<li>Fixed welcome tour appearing on wrong monitor (#417)</li>
<li>Settings improvements:</li>
<ul>
<li>Restarting Cairo is no longer required to change the following settings: "Enable desktop", "Desktop overlay hotkey", "Enable dynamic desktop navigation toolbar", "Cairo menu hotkey", "Blur behind the menu bar"</li>
<li>Fixed hotkey setting dropdowns not taking effect when changing via keyboard</li>
<li>Fixed the settings window not reflecting wallpaper changes from other apps (#411)</li>
<li>Removed option to hide sub-directories (#416)</li>
</ul>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.7028</h1>
<ul>
<li>Improved appearance of full-width taskbar</li>
<li>Improved taskbar sizing with large number of taskbar buttons</li>
<li>Fixed empty language selection in welcome window</li>
<li>Fixed startup apps from certain locations not running (#376)</li>
<li>Fixed welcome tour not showing on first run</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.7023</h1>
<ul>
<li>Added ability to lock the screen from the Cairo menu</li>
<li>Added support for Polish (#383, thanks @dekiertanna!)</li>
<li>Updated the flat theme to have a flat desktop toolbar style</li>
<li>Fixed the autohide taskbar not showing when dragging files onto taskbar buttons</li>
<li>Fixed the Windows taskbar being hidden when the Cairo taskbar is disabled (#377)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.7015</h1>
<ul>
<li>Taskbar improvements galore!</li>
<ul>
<li>Added live thumbnail previews and Aero Peek support to the taskbar, with option to disable (#52)</li>
<li>Added Run and Task Manager to the taskbar context menu</li>
<li>Added animations to taskbar autohide</li>
<li>Added shift-click shortcut to taskbar buttons to open a new instance regardless of middle-click setting</li>
<li>Added support for changing taskbar size, taskbar position, and full-width taskbar settings without restarting Cairo</li>
<li>Improved taskbar autohide to show the taskbar when the mouse is over the menu bar, if the taskbar and menu bar are on the same screen edge (#356)</li>
<li>Improved the appearance of progress bars in the task list</li>
<li>Fixed taskbar autohide activating when dragging quick launch icons or opening context menus (#114)</li>
<li>Fixed some apps not being added to quick launch when adding via drag or taskbar menu</li>
<li>Fixed some cases where the Windows taskbar could re-appear</li>
</ul>
<li>Added settings to hide the volume icon, action center icon, clock, and search icon (#180)</li>
<li>Added support for more hotkeys when Cairo is set as shell: Ctrl+Esc, Win+Comma, Win+S, Win+Alt+D</li>
<li>Added support for menu bar extensions and removed the old plugin system</li>
<li>Added the ability to open the logs folder from Cairo settings</li>
<li>Fixed notification area popups, such as Network, being misplaced (#151, #158, #366)</li>
<li>Fixed hotkeys not working after connecting to a machine via Remote Desktop</li>
<li>Fixed the desktop context menu not appearing when right-clicking in the left margin</li>
<li>Fixed the "not available" cursor showing when renaming a file</li>
<li>Fixed the settings window showing options not available on the current Windows version</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6984</h1>
<ul>
<li>Improved navigation speed on the dynamic desktop, especially with large folders</li>
<li>Fixed memory leaks and reduced resource usage</li>
<li>Fixed taskbar app categories not updating when making changes in the App Grabber (#356)</li>
<li>Fixed the desktop overlay sometimes not becoming the topmost window</li>
<li>Fixed the taskbar sometimes appearing incorrectly when configured to be at the top of the screen</li>
<li>Fixed issues when changing the primary display to one with a different DPI setting</li>
<li>Fixed crashes (#363, #364)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6971</h1>
<ul>
<li>Added ability to scroll the desktop using the mouse scroll wheel</li>
<li>Added Russian language (#359, thanks @curoviyxru!)</li>
<li>Added system notification area icons, such as network and power, when Cairo is running as shell (#146, #304, #310)</li>
<li>Added taskbar progress indicator support (#169)</li>
<li>Added volume mixer shortcut to the volume icon menu</li>
<li>Fixed an issue causing the Explorer shell to launch when opening Explorer windows with Cairo set as shell</li>
<li>Fixed crash when the taskbar could not initialize properly (#357)</li>
<li>Fixed lock screen causing Cairo to go behind windows</li>
<li>Fixed some applications crashing when Cairo is running alongside Explorer, such as some installers, 1Password, LaunchBox, and Novabench (#95, #154, #279)</li>
<li>Fixed some background style settings not showing localized names (#360)</li>
<li>Fixed some shell windows not appearing on the taskbar</li>
<li>Fixed stacks sometimes being the wrong size</li>
<li>Improved reliability when displays are added/removed and when screen resolution or DPI are changed (#110, #213)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6947</h1>
<ul>
<li>Reduced CPU usage versus the past couple builds</li>
<li>Fixed Cairo not yielding to full-screen apps when multi-monitor features aren't enabled (#350)</li>
<li>Fixed Cairo not yielding to some full-screen apps, such as Steam Big Picture</li>
<li>Fixed dynamic desktop keeping a lock on some folders, so you couldn't delete them</li>
<li>Fixed dynamic desktop not resizing when screen size changes</li>
<li>Fixed inability to open folders with a comma in the path</li>
<li>Fixed video file type filter in background settings to allow choosing video files</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6943</h1>
<ul>
<li>Added support for pinned notification area icons (#102)</li>
<ul>
<li>Allows selecting notification icons to always be shown even when the notification area is collapsed</li>
<li>Configure which icons are pinned and in what order they should be displayed using Cairo Settings</li>
<li>Default pinned icons are Power, Network, and Action Center</li>
</ul>
<li>Dynamic desktop improvements</li>
<ul>
<li>Added ability to set home directory by right-clicking the home button; current setting is shown in the tooltip</li>
<li>Back/forward buttons now show as disabled when they cannot be used (#340)</li>
<li>Changing desktop locations using the history menu now goes back/forward instead of adding an additional history entry</li>
<li>Fixed being able to navigate to deleted folders</li>
<li>Fixed Cairo being frozen when dropping or pasting a large file to Cairo</li>
<li>Fixed desktop overlay toggling when clicking out of history menu</li>
<li>Fixed dragging folders from desktop to stacks</li>
<li>Fixed toolbar location saving on high DPI displays</li>
</ul>
<li>Added flat theme</li>
<li>Added 'Move' and 'Size' options to taskbar button context menu</li>
<li>Added support for disabling the desktop via Group Policy (#349)</li>
<li>Added validation to prevent bad values in the date/time and desktop home fields in Cairo Settings (#344)</li>
<li>Improved App Grabber scrolling to show dragged items</li>
<li>Improved display of image thumbnails</li>
<li>Fixed App Grabber closing when renaming a newly created category</li>
<li>Fixed an error that could occur with multiple displays</li>
<li>Fixed programs menu forgetting the selected category</li>
<li>Fixed notification area not being able to be used when set as shell and taskbar is disabled, and added an explanation in cases when it cannot be used (#345)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6906</h1>
<ul>
<li>Drag & drop support</li>
<ul>
<li>Dragging a file onto a taskbar icon brings that window to the front (#85)</li>
<li>Files and folders can be dropped onto the desktop, or dragged to another window (#323)</li>
<li>Files and folders can be dragged out of Stacks</li>
<li>Left-click drag performs a move, right-click drag performs a copy</li>
<li>Quick Launch apps can be dragged into the Programs menu if they don't exist already</li>
</ul>
<li>Desktop improvements</li>
<ul>
<li>Fixed desktop sometimes flashing above other windows</li>
<li>Fixed icon flickering issues (#332)</li>
<li>Fixed tooltips showing under windows</li>
</ul>
<li>Desktop navigation improvements</li>
<ul>
<li>Back and forward buttons now go back and forward based on your browsing, rather than folder structure (#312)</li>
<li>Mouse back/forward buttons can be used to navigate the desktop (#306)</li>
<li>To go up a directory, shift-click or right-click the back button</li>
<li>The position of the desktop navigation toolbar is now persisted (#334)</li>
</ul>
<li>Full screen app handling improvements</li>
<ul>
<li>Per-monitor full screen awareness</li>
<li>Fixed Cairo drawing over games and other full-screen windows (#105, #216)</li>
<li>Fixed Cairo stealing focus when leaving full screen</li>
<li>Fixed menu bar and taskbar sometimes not restoring to topmost when leaving full screen (#253)</li>
</ul>
<li>Settings improvements</li>
<ul>
<li>Added ability to set desktop wallpaper via Cairo settings (#230)</li>
<li>Desktop icon appearance changes now take effect without restarting Cairo</li>
<li>Theme changes now take effect without restarting Cairo</li>
</ul>
<li>Shell improvements</li>
<ul>
<li>Added more Windows hotkeys (#311)</li>
<li>Added shortcut to desktop settings in desktop context menu</li>
<li>Added support for Bing image of the day wallpaper</li>
<li>Added support for video wallpaper, including DreamScene wallpapers</li>
<li>Fixed wallpaper gap at bottom of screen</li>
<li>Video wallpaper pauses when an app enters full screen</li>
</ul>
<li>Taskbar improvements</li>
<ul>
<li>Fixed first click on taskbar not performing the requested action</li>
<li>Fixed flashing taskbar items not stopping flashing when clicked</li>
<li>Fixed possibility of adding duplicate apps to Quick Launch</li>
<li>Fixed some applications such as Solidworks not showing in the taskbar (#273)</li>
</ul>
<li>App Grabber now automatically selects the latest version of Office apps</li>
<li>Added option to show the categories list on the left side of the Programs menu (#331)</li>
<li>Fixed double-right-click sometimes opening files</li>
<li>Fixed Explorer starting when changing settings (#339)</li>
<li>Fixed "New" menu on the desktop context menu</li>
<li>Fixed possibility of using both the Cairo and the Windows notification area at the same time</li>
<li>Fixed search field losing focus when moving mouse cursor away</li>
<li>Fixed several issues when running Cairo configured as shell before logging out</li>
<li>Improved notification area icon support for some apps such as EarTrumpet (#324)</li>
<li>Fixed a few potential crashes</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6842</h1>
<ul>
<li>Many taskbar improvements!</li>
<ul>
<li>Added restore, minimize, and maximize options to the context menu that match Windows behavior</li>
<li>Added setting to allow middle-click to close windows in the taskbar, like a browser (#115)</li>
<li>Added icons and 'new window' option to context menu</li>
<li>Fixed apps running as an administrator not restoring from the Cairo taskbar (#286)</li>
<li>Fixed closed UWP apps spontaneously appearing in the taskbar</li>
<li>Fixed some cases of windows not being displayed with the correct app category</li>
<li>Fixed the taskbar allowing you to minimize/maximize windows that couldn't be</li>
<li>Improved reliability of window icons</li>
<li>Improved the task list menu to have all the same features as taskbar buttons</li>
</ul>
<li>Added option in Cairo Settings to show "Hibernate" in the Cairo menu if supported by the system (#179)</li>
<li>Fixed pinned Windows taskbar items not being added to Cairo quick launch automatically (#301)</li>
<li>Fixed removing a monitor on a dual-screen system with multi-monitor menu bar/taskbar enabled rendering Cairo unusable (#302)</li>
<li>Fixed the desktop sometimes becoming unusable on a screen resolution change</li>
<li>Fixed "Sleep" showing in the Cairo menu on systems that do not support sleep</li>
<li>Fixed empty space in Cairo Settings when set as shell</li>
<li>Cairo now automatically restarts from certain fatal errors</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6824</h1>
<ul>
<li>Added ability to control if Cairo runs at logon via Cairo Settings (#290, thanks @Brummell67!)</li>
<li>Added default buttons to all alerts</li>
<ul>
<li>Default buttons have a darker border</li>
</ul>
<li>Fixed multiple Cairo Settings windows being opened (#293, thanks @Brummell67!)</li>
<li>Fixed some windows (such as Firefox) not appearing immediately in the taskbar (#292)</li>
<li>Fixed tool tips obscuring taskbar and menu bar items (#280)</li>
<li>Improved ability to theme alerts</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6800</h1>
<p>Cairo now requires .NET Framework 4.7.1. If you are on a version of Windows older than Windows 10 1709, please ensure .NET 4.7.1 is installed before upgrading Cairo. This change means Cairo will no longer run on Windows Vista.</p>
<ul>
<li>Increased clickable area of notification area icons (#259)</li>
<li>Fixed an issue that could cause the menu bar to become unresponsive (#147)</li>
<li>Minor under-the-hood improvements</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6795</h1>
<p>Cairo now requires .NET Framework 4.7.1. If you are on a version of Windows older than Windows 10 1709, please ensure .NET 4.7.1 is installed before upgrading Cairo. This change means Cairo will no longer run on Windows Vista.</p>
<ul>
<li>Added separate 'Open in new window' and 'Open on desktop' items to Stacks context menu</li>
<li>Added 'Open in new window' and 'Remove from Stacks' options to folder context menu</li>
<li>Added ability to add currently-running programs to Quick Launch via the taskbar context menu (#271)</li>
<li>Added ability to show the taskbar using the full screen width (#268)</li>
<li>Fixed installer not aborting when the .NET version is too old (#284)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6781</h1>
<ul>
<li>Added ability to change application category from the context menu (#126)</li>
<li>Added Dutch (Nederlands) language (#272, Thanks Fireblade92!)</li>
<li>Improved visual feedback on menu bar and desktop (#140)</li>
<li>Fixed desktop overlay background not going behind the taskbar</li>
<li>Fixed incorrect minimize animation (#255)</li>
<li>Fixed text box context menu when renaming files from the desktop</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6768</h1>
<ul>
<li>Desktop context menu improvements (#240)</li>
<ul>
<li>Desktop icon context menus now have all options that are available in Explorer</li>
<li>Added 'New' menu and 'Properties' item to desktop background context menu</li>
</ul>
<li>Fixed Desktop showing in front of windows unintentionally (#244, #245)</li>
<li>Fixed clicks on the menu bar shadow not going to the intended application</li>
<li>Fixed uninstaller running while Cairo is still running, causing incomplete removal (#241)</li>
<li>Fixed a crash with certain wallpaper formats on Hyper-V Server</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6758</h1>
<ul>
<li>Fixed wallpaper always displaying as "stretch" mode when Cairo is set as shell (#226)</li>
<li>Fixed Cairo not behaving correctly when set as all users' shell (#227)</li>
<li>Fixed "Exit Cairo" option appearing on the Cairo menu when set as shell (#227)</li>
<li>Fixed menu bar clock not switching time zones correctly (#233)</li>
<li>Changed Cairo to use the Apache 2.0 license, rather than the old proprietary license</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6746</h1>
<ul>
<li>Added German language (thanks @Revoluzifer!)</li>
<li>Added Spanish language (thanks @JiachengLiu13579!)</li>
<li>Fixed some minor memory leaks</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6723</h1>
<ul>
<li>Added Czech language (thanks @zen0bit!)</li>
<li>Added folder name in App Grabber Installed list (#192)</li>
<li>Improved display of Windows Store app icons</li>
<li>Improved notification area icon handling</li>
<li>Updated French language (#181)</li>
<li>Fixed calendar date not updating (#195)</li>
<li>Fixed invalid notification icons appearing</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6701</h1>
<ul>
<li>Added ability to view and clear desktop browsing history by right-clicking on the "select a folder" button in the desktop toolbar (#159)</li>
<li>Added ability for themes to change the menu bar border (#173)</li>
<li>Improved notification area to fix hidden Spotify icon (#174) and fix dancing OneDrive icons</li>
<li>Improved blank notification area icons to show a placeholder icon</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6693</h1>
<ul>
<li>Added Brazilian Portuguese language - thanks @jonathands!</li>
<li>Added Swedish language - thanks @m0gg3!</li>
<li>Added scroll wheel support to menu bar stacks (#139)</li>
<li>Fixed taskbar becoming hidden after closing full-screen window (#165)</li>
<li>Fixed a possible App Grabber crash and improved consistency of text</li>
<li>Improved multi-monitor efficiency</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6680</h1>
<ul>
<li>Added logging system (#129)</li>
<ul>
<li>Logs can be found in %localappdata%\Cairo_Development_Team\Logs</li>
<li>Logging level can be adjusted in Cairo Settings > Advanced</li>
</ul>
<li>Added ability to hold shift key to open folders in File Explorer (#125)</li>
<li>Added ability to use middle mouse button to open Stacks in a new window (#133)</li>
<li>Added "run as different user" option to items in the Programs menu while holding the shift key and right-clicking (#141)</li>
<li>Added tooltips to desktop navigation bar, including current location (#117)</li>
<li>Fixed Cairo running disabled startup items when set as shell (#119)</li>
<li>Improved volume icon to represent current volume (#148)</li>
<li>Updated French language (#152)</li>
<li>Under-the-hood improvements to support upcoming features</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6654</h1>
<ul>
<li>Added sound icon to Cairo notification area (#50)</li>
<li>Improved app compatibility in notification area (#86, #121)</li>
<ul>
<li>Some notable improvements are Discord, MacType, OneDrive, and Rainmeter</li>
</ul>
<li>Fixed workarea not adjusting correctly on display change</li>
<li>Fixed workarea not adjusting when Cairo set as shell with multiple monitors</li>
<li>Fixed crash introduced by Windows key shortcut with multiple monitors</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6649</h1>
<ul>
<li>Added Chinese language (credit @yanjinhuagood, #111)</li>
<li>Improved notification area reliability</li>
<li>Removed "Periodically re-establish notification area hook" as it is no longer needed</li>
<li>Updated French language</li>
<li>Fixed Windows network flyout not appearing (#50)</li>
<li>Fixed unavailable menu option showing when Cairo is set as shell (#107)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6639</h1>
<ul>
<li>Added high-resolution Dynamic Desktop toolbar icons</li>
<li>Added arrows to make re-ordering categories in App Grabber easier</li>
<li>Added Windows key shortcut to open Programs menu when Cairo is set as the system shell (#100)</li>
<li>Added button in Cairo Settings > Advanced to toggle between Cairo and Explorer as the system shell (#101)</li>
<li>Moved all advanced settings to Cairo Settings > Advanced tab</li>
<li>Fixed Taskbar showing even when disabled when multi-monitor is enabled (#96)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6634</h1>
<ul>
<li>Added support for showing Cairo on multiple monitors (#40)</li>
<ul>
<li>Can be enabled for Menu Bar and/or Taskbar</li>
<li>Supports monitor hot plugging</li>
</ul>
<li>Added support for Taskbar auto-hide (#48)</li>
<li>Added ability to drag message windows</li>
<li>Added ability to drag shortcuts into App Grabber</li>
<li>Improved settings organization</li>
<li>Fixed App Grabber allowing empty category names</li>
<li>Fixed possible crash (#94)</li>
<li>Fixed workarea incorrectly restoring when running Cairo without Explorer (#93)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6623</h1>
<ul>
<li>Added ability to open folders from Stacks and Places in the desktop overlay</li>
<li>Added ability to close desktop overlay by clicking the empty area</li>
<li>Added ability to scroll large folders on the Dynamic Desktop</li>
<li>Added button to clear search text (#74)</li>
<li>Added option to use the Windows 10 Acrylic blur behind the menu bar (#78)</li>
<li>Improved performance opening large Programs menus</li>
<li>Improved performance opening large Stacks folders</li>
<li>Improved scrolling through Stacks</li>
<li>Fixed appearance of search text box on Windows 7 and earlier</li>
<li>Fixed desktop overlay obscuring everything when set as shell (replacing Explorer)</li>
<li>Fixed errors when opening files and Cairo's desktop is disabled (#91)</li>
<li>Fixed new files not appearing in large Stacks folders</li>
<li>Clarified some terminology (#89)</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6617</h1>
<ul>
<li>Streamlined update process (no more clicking through the installer!)</li>
<ul>
<li>Please submit an issue if you have a problem getting the update installed.</li>
</ul>
<li>Improved startup speed</li>
<li>Updated French translations (#88)</li>
<li>Updated Tour language (#89)</li>
<li>Fixed "Add to Quick Launch" menu item not persisting (#90)</li>
<li>Fixed error when opening Task List with no windows open</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6616</h1>
<ul>
<li>Added a Welcome to Cairo tour on first launch to assist new users</li>
<ul>
<li>To check it out as an existing user, launch Cairo with `/tour`</li>
</ul>
<li>Added support for per-monitor DPI, and scaling when DPI changes</li>
<ul>
<li>This is available for recent versions of Windows 10</li>
</ul>
<li>Fixed desktop overlay not always hiding when opening items</li>
<li>Fixed icon context menus breaking after the file is renamed</li>
<li>Made some tweaks under the hood</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6608</h1>
<ul>
<li>Added a new button to the taskbar for toggling Desktop overlay (#45)</li>
<li>Added ability to change Cairo menu hotkey (#82)</li>
<li>Added ability to change Desktop overlay hotkey (#73)</li>
<li>Fixed size and position of the Desktop with high-DPI displays</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6602</h1>
<ul>
<li>Added Desktop Overlay (#45)</li>
<ul>
<li>Toggle using Win+Shift+D</li>
<li>Can be disabled in Settings</li>
</ul>
<li>Added Cairo menu shortcut (#82)</li>
<ul>
<li>Activate using Win+Shift+Z</li>
<li>Can be disabled in Settings</li>
</ul>
<li>Default taskbar icon size is now Medium</li>
<li>Improved display of long app category names in the Programs menu and task list</li>
<li>Fixed renaming categories in App Grabber not updating the Programs menu</li>
<li>Fixed desktop icons going beneath the taskbar</li>
<li>Removed fix for WinKey+D (Show Desktop) hiding Cairo Desktop in favor of Desktop Overlay</li>
</ul>
</div>
<div class="release">
<h1>Cairo Desktop M3.6598</h1>
<ul>
<li>Improves performance of loading directories</li>
<li>Improves appearance of App Grabber lists</li>