-
Notifications
You must be signed in to change notification settings - Fork 11
/
changelog-beta.txt
1017 lines (822 loc) · 79.9 KB
/
changelog-beta.txt
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
1.15.1 - April 09, 2023
! Fixed a code injection issue where TotalFinder would fail to successfully inject on certain legacy / unsupported systems that were patched using OpenCore Legacy Patcher / OCLP. (※ Please note that this issue has nothing to do with the UEFI bootloader named OpenCore — TotalFinder has never had any known compatibility issues with the OpenCore UEFI bootloader.) [Ventura] [Monterey] [Big Sur] [Catalina]
! Fixed an issue where the new Coloured Labels logic would be unable to obtain the label colour of certain items that have coloured label information stored in a slightly different way than what was thought to be possible during testing. [Ventura]
! Fixed an issue where the new Coloured Labels logic would use the oldest label colour found on an item with multiple labels, instead of the newest. [Ventura]
! Fixed a rendering issue where the TotalFinder icon in the Finder preferences on macOS 11 Big Sur and newer would render with aliasing artifacts, especially on non-Retina/HiDPI displays where the issue was very severe. [Ventura] [Monterey] [Big Sur]
! Fixed a rendering issue where the TotalFinder icon in the Finder preferences on macOS 11 Big Sur and newer was unable to be tinted by the user's macOS UI tint colour when selected. [Ventura] [Monterey] [Big Sur]
* Major internal refactors were made to the Coloured Labels feature, resulting in better optimisation of label colour lookup operations. [Ventura] [Monterey] [Big Sur] [Catalina]
+ Certain behaviour flags that were used during the testing of the new Coloured Labels logic are now controllable via TotalFinder's power-user-oriented "Tweakables" feature, which you can use by creating specific files in your home directory (<code>~</code>, or <code>${HOME}</code>) using the command-line utility <code>touch</code>. See below for more details. [Ventura] [Monterey] [Big Sur] [Catalina]
+ The newly-added Tweakable flag <code>~/.totalfinder-alwaysenablenewlabellookupmethods</code> enables the new Coloured Labels lookup logic on macOS 12 Monterey and below, which normally use a different label colour lookup method that no longer works as of macOS 13 Ventura. [Monterey] [Big Sur] [Catalina]
+ The newly-added Tweakable flag <code>~/.totalfinder-disablelabelcolourlookupoptimisation</code> disables all Coloured Labels lookup optimisations, which may be useful as a troubleshooting or debugging step. [Ventura] [Monterey] [Big Sur] [Catalina]
* Made many improvements to the TotalFinder diagnostics utility (<code>diagnose-totalfinder.sh</code>) that improve the usefulness of its output. [Ventura] [Monterey] [Big Sur] [Catalina]
+ Added an experimental feature that allows users to make the Visor show above other apps, but not the Dock whenever the Visor is in a pinned state. This experimental feature is currently only accessible by running <code>defaults write com.binaryage.totalfinder TotalFinderVisorDrawAboveOtherAppsWhenPinned 1</code> in a Terminal session. (※ Replace the 1 with a 0 to disable the feature.) [Ventura] [Monterey] [Big Sur] [Catalina]
+ A new Visor-related Tweakable flag was added: <code>~/.totalfinder-useaggressivevisordrawpriority</code> will set the Visor window to a much higher draw priority when the "Show on top of the Dock" feature is enabled. This can be useful if you encounter an app that is still able to draw above the Visor even with "Show on top of the Dock" enabled. [Ventura] [Monterey] [Big Sur] [Catalina]
* Various other internal refactors and improvements were made to TotalFinder as a whole. [Ventura] [Monterey] [Big Sur] [Catalina]
1.15.0 - January 10, 2023
+ Added full support for macOS 13 Ventura! [Ventura]
+ Added detection and automatic handling for enabling arm64e ABI support, which is newly required as of macOS 13 for Apple Silicon machines only. (※ For more information, <a href="https://discuss.binaryage.com/t/8364/227">please read this post</a>.) [Ventura]
+ Added detection and user guidance for disabling SIP NVRAM protections, which is newly required as of macOS 13 for Apple Silicon machines only. [Ventura]
+ Added custom Finder icon handling specifically for IconChamp. (※ To use custom Finder icons with TotalFinder enabled, please enable the "Use original Dock icon" option in the TotalFinder preferences.) [Ventura] [Monterey] [Big Sur] [Catalina]
! Restored full functionality of TotalFinder's Copy Path menu on macOS 13. [Ventura]
! Restored full functionality of TotalFinder's Cut and Paste feature on macOS 13. [Ventura]
! Restored full functionality of TotalFinder's Cut, Copy, and Paste buttons found in the right-click context menu on macOS 13. [Ventura]
! Restored full functionality of TotalFinder's Coloured Labels feature on macOS 13. [Ventura]
* Completely rewrote large portions of Coloured Labels's label colour lookup functionality. [Ventura] [Monterey] [Big Sur] [Catalina]
! Fixed a crash that would occur whenever Coloured Labels was enabled on macOS 13. [Ventura]
! Fixed an issue on macOS 13 where right-click context menus in Finder would become prematurely truncated. [Ventura]
! Fixed an issue on macOS 13 where right-click context menus in Finder would sometimes fail to appear at all. [Ventura]
! Fixed translucent item rendering for items located on the Desktop and in Finder windows set to Icon view on macOS 13. [Ventura]
1.14.3 - September 15, 2022
! Fixed compatibility with macOS 11.6.8 20G730, which is the latest version of macOS Big Sur as of this writing. TotalFinder features that were broken with this update (most notably but not limited to Cut and Paste) now work correctly again! (※ macOS 11.6.7 and 11.6.6 were unaffected by the issue.) [Big Sur]
1.14.2 - June 20, 2022
+ Added a new user-configurable option to always use Finder icon rendering for the Colorful Sidebar feature. When enabled, this option will cause sidebar icons to display exactly how they would in Finder, which also disables the leftover skeuomorphic icons for the "Music", "Pictures", and "Movies" folders. (※ This option will also cause TotalFinder to ignore the user-custom ~/.totalfinder-sidebar-icons.plist file.)
! Fixed an issue where the Colorful Sidebar feature would not display most sidebar icons correctly on macOS 12 Monterey, macOS 11 Big Sur, and macOS 10.15 Catalina. [Monterey] [Big Sur] [Catalina]
! Fixed an issue where custom Finder icons applied using other macOS tweaks (such as IconChamp) would no longer display once TotalFinder was enabled. (※ To use custom Finder icons with TotalFinder enabled, please enable the "Use original Dock icon" option in the TotalFinder preferences.) [Monterey] [Big Sur] [Catalina]
! Fixed a layout issue that caused the localised string for "Freelance Windows" in the TotalFinder preferences to be cut off for some languages, like Japanese. [Monterey] [Big Sur] [Catalina]
1.14.1 - April 27, 2022
+ Added <a href="https://totalfinder.binaryage.com/apple-silicon">unofficial support</a> for Apple Silicon machines to TotalFinder.
+ Added Apple Silicon BootPolicy configuration state detection to TotalFinder diagnostics.
+ Added more localisation support to TotalFinder. These new, previously-untranslated strings have been translated to Japanese, Traditional Chinese (Taiwan), Simplified Chinese (China), and Czech.
! Fixed a crash to stock Finder that would occur on macOS 12 Monterey if the "Enter Time Machine" button found in the Time Machine menu bar item dropdown was pressed. [Monterey]
1.14.0 - November 3, 2021
+ Initial compatibility with macOS 12.0 [Monterey]
- Removed checking for a license. TotalFinder is provided as-is <a href="https://blog.binaryage.com/totalfinder-totalspaces-future/">without support</a>.
! Fixed dimming of icons in Icon View and on Desktop when they are marked for Cut (CMD+X).
1.13.10 - March 14, 2021
! Fixed <a href="https://discuss.binaryage.com/t/macos-big-sur-and-totalfinder/7662/111">a crash when entering dual mode with DMG windows</a>
! Fixed <a href="https://discuss.binaryage.com/t/macos-big-sur-and-totalfinder/7662/111">a glitch when entering dual mode</a> [Big Sur]
1.13.9 - January 13, 2021
+ On M1 chip, TotalFinder refuses to launch with explanation.
1.13.8 - November 23, 2020
! Resolved <a href="https://totalfinder.binaryage.com/injection-troubles">injection troubles</a>.
1.13.7 - November 19, 2020
+ Improved compatibility with macOS 11.0 [Big Sur]
1.13.6 - November 16, 2020
+ Improved compatibility with macOS 11.0 [Big Sur]
1.13.5 - November 15, 2020
+ Improved compatibility with macOS 11.0 [Big Sur]
1.13.4 - October 26, 2020
+ Improved compatibility with macOS 11.0 [Big Sur]
1.13.3 - October 11, 2020
+ Improved compatibility with macOS 11.0 [Big Sur]
1.13.2 - October 02, 2020
+ Improved compatibility with macOS 11.0 [Big Sur]
1.13.1 - September 23, 2020
+ Improved compatibility with macOS 11.0 [Big Sur]
1.13.0 - September 09, 2020
+ Initial compatibility with macOS 11.0 [Big Sur]
1.12.3 - December 05, 2019
! Fixed an issue when the <a href="https://discuss.binaryage.com/t/totalfinder-does-not-open-finder-on-catalina/7387/6">Dock icon stopped opening new TotalFinder windows</a> [Mojave] [Catalina]
! Fixed a visual glitch with gray bands in context menus [Catalina]
- Removed "Freelance Windows" options from TotalFinder tabs settings.
1.12.2 - November 16, 2019
! Fixed <a href="https://discuss.binaryage.com/t/copy-past-on-right-click-not-working/7413">problems clicking cut/copy/paste menu buttons</a> [Catalina]
! Fixed issues uploading crash reports due to non-english locales.
1.12.1 - November 16, 2019
- Unfortunately this release is broken so I unpublished it
1.12.0 - July 01, 2019
+ Initial compatibility with macOS 10.15 [Catalina]
1.11.8 - February 18, 2019
+ When enabling Column View auto-width we newly override Finder's minimal column width to allow narrow columns (Finder didn't allow column width less than 160px).
! Fixed a regression when <a href="https://discuss.binaryage.com/t/cmd-double-click-does-not-open-window-in-new-tab/7115">CMD + double click didn't open a new tab</a>.
! CMD+N opens a new TotalFinder window as it should. [Mojave]
1.11.7 - February 14, 2019
+ Tab configuration gets <a href="https://discuss.binaryage.com/t/kill-all-tabs-relaunch-finder-relaunch-totalfinder-all-previously-killed-tabs-windows-relaunch-appear/7096">stored more often</a>.
+ Newly TotalFinder <a href="https://discuss.binaryage.com/t/auto-close-for-tabs-showing-unreachable-locations/7110">does not restore tabs with invalid locations</a>.
! Fixed <a href="https://discuss.binaryage.com/t/square-anchor-button-in-visor/7108">invalid pin button image in Visor</a>.
1.11.6 - February 13, 2019
! Fixed a regression when <a href="https://discuss.binaryage.com/t/trash-window-becomes-grey/7106">some tabs could stay gray after external close</a> affecting macOS prior 10.14.
! Fixed some edge cases when TotalFinder tabs could stay gray when dragging last native tab out to another native tab bar. [Mojave]
! When enabling Column View auto-width and don't specifying lower bound. Columns weren't resized under some circumstances.
1.11.5 - February 10, 2019
! Fixed <a href="https://discuss.binaryage.com/t/totalfinder-mojave-native-tabs-not-working/7084">broken handling of native tabs</a> under macOS 10.14. [Mojave]
1.11.4 - November 05, 2018
! Reimplemented visual indication of files marked for cut in Column View and Gallery View. [Mojave]
1.11.3 - October 03, 2018
! Fixed several cases when label backgrounds were not properly updated after a change. [Mojave] [High Sierra]
! Fixed a case when new dark mode related code would crash Finder under macOS 10.11. [El Capitan]
1.11.2 - September 21, 2018
+ Full support for Dark Mode under macOS 10.14. [Mojave]
! Properly update status menu when enabling/disabling Visor.
! Prevent duplicate TotalFinder items in user's Login Items.
1.11.1 - July 9, 2018
! Fixed rare crashes of TotalFinderCrashWatcher.app, how ironic?
! Fixed <a href="https://discuss.binaryage.com/t/totalfinder-1-11-0-darkens-finder-labels/6592">improper detection of Dark Mode</a> under pre-Mojave systems. [High Sierra] [Sierra] [El Capitan]
! Fixed broken macOS version detection in TotalFinder agent. Sierra users <a href="https://discuss.binaryage.com/t/total-finder-1-11-0-doesnt-work-in-sierra/6595">were presented with Mojave installation workflow</a>. [High Sierra] [Sierra] [El Capitan]
1.11.0 - July 7, 2018
+ Initial compatibility with macOS 10.14 [Mojave]
+ Due to hardened macOS security <a href="https://totalfinder.binaryage.com/sip">SIP must be disabled in Mojave</a>. [Mojave]
+ Added support for Dark Mode in Mojave. [Mojave]
* Tabs colors might look slightly different than in previous TotalFinder versions. Tab colors might not perfectly match toolbar colors in Dark Mode. I will try to fix this in future releases.
- Normally TotalFinder prevents displaying dot files on Desktop when display of system files is enabled. This is not yet implemented under Mojave. [Mojave]
1.10.10 - March 31, 2018
! Fixed <a href="https://discuss.binaryage.com/t/go-to-folder-feature-partly-broken/5473"> confused "Go To" dialog in dual mode</a>.
! Fixed <a href="https://discuss.binaryage.com/t/draggable-window-contents/6335">ghost window dragging via bottom status bar</a>.
! Fixed CrashWatcher issues introduced in previous version.
1.10.9 - March 23, 2018
! Fixed and improved Crash Watcher app. Uploading crash reports stopped working.
1.10.8 - March 21, 2018
! Fixed <a href="https://discuss.binaryage.com/t/totalfinder-1-10-7-coloured-tags/6132">flaky redrawing of Colored Labels in List View mode</a>. [High Sierra]
! Fixed <a href="https://discuss.binaryage.com/t/aliases-lose-coloring/3350">alias files losing Colored Labels</a>. [High Sierra]
! Fixed <a href="https://discuss.binaryage.com/t/clicking-finder-icon-in-dock-no-longer-works-as-expected/3608">Visor refocus behavior</a>.
1.10.7 - December 11, 2017
! Fixed <a href="https://discuss.binaryage.com/t/total-finder-1-10-4-bug-with-seeing-files-listed-in-columns-view/6023/9">remaining problems with vertical window resizing</a>.
! Colored tags are displayed properly when <a href="https://discuss.binaryage.com/t/bug-coloured-tags/6063/2">scrolling Finder view in list mode</a>.
1.10.6 - December 9, 2017
! Fixed <a href="https://discuss.binaryage.com/t/coloured-labels-on-desktop-items/5975">problems with displaying Colored Labels on Desktop</a>. [High Sierra]
! Drives and other <a href="https://discuss.binaryage.com/t/coloured-labels-on-desktop-items/5975/2">virtual items have working Colored Labels on Desktop</a>.
! Resizing TotalFinder window vertically could <a href="https://discuss.binaryage.com/t/total-finder-1-10-4-bug-with-seeing-files-listed-in-columns-view/6023/5">clip Finder's content unexpectedly</a>.
1.10.5 - November 30, 2017
! Fixed <a href="https://discuss.binaryage.com/t/tf-1-10-2-fails-in-high-sierra-10-13-after-re-enabling-sip/5945/4">installer issue</a> with "TotalFinder is corrupted" message when upgrading directly from v1.9.3.
1.10.4 - November 14, 2017
* Major code refactoring. Thanks for testing this version.
1.10.3 - October 14, 2017
! Fixed crash when relaunching Finder from TotalFinder preferences after disabling/enabling Tabs feature. [High Sierra]
! Fixed <a href="https://discuss.binaryage.com/t/totalfinder-moving-finder-window/5889/2">TotalFinder window dragging</a> via Finder's toolbar background. [High Sierra]
! Fixed newly introduced <a href="https://discuss.binaryage.com/t/jumping-tabs-drawing-errors-etc/5892">tab redrawing issue when tearing tabs off and dropping them back</a>.
1.10.2 - September 11, 2017
! Fixed scenarios when downgrading and TotalFinder installer would ingore it and keep the newer version.
! Marking for cut operation <a href="https://discuss.binaryage.com/t/cut-doesnt-seem-to-lighten-the-icon/5750">didn't properly dim icons</a> in Icon View. [Sierra] [High Sierra]
! Fixed iCloud-related crashes when enabled colored sidebar icons under High Sierra. [High Sierra]
! Prevent losing focus from right-side of dual mode when sliding Visor.
! Fixed unreliable Visor hotkey resetting bug introduced in v1.9.7.
1.10.1 - August 22, 2017
! Fixed <a href="https://discuss.binaryage.com/t/total-finder-1-9-7-freezes-on-os-x-10-12-6">freezing under Sierra</a> with Colored Labels enabled browsing in Column View. [Sierra] [High Sierra]
! Fixed crash under El Capitan with Folders on Top enabled browsing in Column View. [El Capitan]
1.10.0 - August 21, 2017
+ Made "Copy Path URL" feature <a href="https://discuss.binaryage.com/t/copy-path-as-url-from-network-location">aware of network mount points</a>.
* Improved compatibility with macOS 10.13. [High Sierra]
- Removed support for macOS 10.9. [Mavericks]
- Removed support for macOS 10.10. [Yosemite]
+ Implemented <a href="https://totalfinder.binaryage.com/sip-versions">upgrade workflow</a> for SIP system component. [TotalFinderSIP]
* Major review and refactoring of whole codebase (with the help of AppCode from JetBrains)
1.9.7 - June 27, 2017
* Improved compatibility with macOS 10.13. [High Sierra]
1.9.6 - June 15, 2017
+ Initial compatibility with macOS 10.13. [High Sierra]
! Fixed duplicate Visor window after tweaking Visor preferences.
1.9.5 - May 10, 2017
! Fixed Cut&Paste issue <a href="https://discuss.binaryage.com/t/totalfinder-cmd-x-issues-w-desktop/5225">when pasting a file on Desktop</a>. [Sierra]
1.9.4 - May 5, 2017
! Fixed an issue with <a href="https://discuss.binaryage.com/t/grey-screen-in-full-screen-mode/5488">grey window in full screen mode</a>.
1.9.3 - April 26, 2017
* <a href="https://discuss.binaryage.com/t/side-bar-icon-size/5448">Scale sidebar icons</a> when Colored Sidebar Icons feature is enabled.
* Allow <a href="https://discuss.binaryage.com/t/how-to-specify-custom-sidebar-icons/5461">custom specification of Colored Sidebar Icons<a>.
1.9.2 - April 22, 2017
! Fixed <a href="https://discuss.binaryage.com/tags/ghost">occasional "ghost" windows</a> when using Visor and opening folders from external apps.
! Fixed font smoothing when using Colored Labels in Column view.
! Fixed <a href="https://discuss.binaryage.com/t/tf-1-9-0-keeps-prompting-me-to-install-sip-component">a bug with suppression check-box in the dialog prompting installation of the SIP component<a/>.
1.9.1 - March 25, 2017
+ Performs periodic checks and auto-repairs if <a href="https://discuss.binaryage.com/t/rogue-finder-window-becomes-stuck-wont-move-cant-close-it-either/5221">frame window is missing</a>.
! Fixed <a href="https://discuss.binaryage.com/t/tf-1-9-0-keeps-prompting-me-to-install-sip-component/5376">an option to suppress some SIP installation dialogs</a>.
! Fixed background color after tearing a tab off the main window. [Sierra]
! Fixed a bug when tabs would not update after entering or leaving dual mode. [Sierra]
* Improved <a href="https://discuss.binaryage.com/t/tf-1-9-0-opens-external-drives-in-new-window-no-tabs/5374">DMG detection</a>.
* Changed Visor Pin button to <a href="https://discuss.binaryage.com/t/tf-1-9-0-wont-launch-with-sip-fully-enabled/5368/2">blue color</a>.
1.9.0 - March 20, 2017
+ TotalFinder can be newly launched <a href="https://blog.binaryage.com/sip-and-installing-total-apps">with System Integrity Protection fully enabled</a>. [Sierra] [El Capitan]
+ Compatibility with Finder 10.12.5. [Sierra]
+ New icons in Preferences.
+ Dark menubar icon.
+ Holding SHIFT during tab creation will open it in a new window.
! Fixed potential crash/lock when opening DMG files.
! Fixed colored labels redrawing bug. [Sierra]
! Fixed a case when Finder window could be misaligned with framing TotalFinder window.
1.8.2 - January 5, 2017
+ Compatibility with Finder 10.12.3. [Sierra]
! Fixed <a href="https://discuss.binaryage.com/t/totalfinder-lauches-very-slowly-in-macos-sierra/4884">slow start after system reboot</a>. [Sierra]
! Fixed wrong tab context menu position. [Sierra]
1.8.1 - September 24, 2016
- Disabled TotalFinder's Folders on Top feature on macOS 10.12, which now offers Folders on Top natively as an option in Finder's preferences. However, Finder's implementation only allows Folders on Top when sorting by Name, so we'll look to improve upon that. [Sierra]
1.8.0 - September 20, 2016
* Compatibility with MacOS 10.12 (<a href="https://totalfinder.binaryage.com/system-integrity-protection">you have to disable SIP</a>). [Sierra]
1.7.12 - February 16, 2016
! Fixed <a href="https://discuss.binaryage.com/t/totalfinder-crash-constantly/4505">occasional crashing in Column Mode with Folders on Top enabled</a>. [El Capitan]
1.7.11 - February 08, 2016
+ Compatibility with OS X 10.11.4. [El Capitan]
! Fixed <a href="https://discuss.binaryage.com/t/sorting-issue/4341">a sorting issue when changing sorting order</a>. [El Capitan]
* Updated <a href="https://sparkle-project.org/">Sparkle library</a> to latest version.
1.7.10 - October 20, 2015
+ Introduced Chinese (HK) translation by <a href="https://github.com/binaryage/totalfinder-i18n/commit/25fd5ae33d2da463c08cdbf67699bafdd923a6fa">Perry Lo</a>
! Fixed reseting selection <a href="https://discuss.binaryage.com/t/1-7-9-selection-bug/4300">described here</a>. [El Capitan]
* Minor performance imporvement in 'Folders on Top' code. [El Capitan]
1.7.9 - October 18, 2015
+ 'Folders on Top' feature <a href="https://discuss.binaryage.com/t/folder-on-top-bug-in-icon-view/4276">works in Icon View</a> as well under El Capitan. [El Capitan]
! Fixed <a href="https://discuss.binaryage.com/t/1-7-8-quick-look-problem-in-column-mode/4267">Quick Look problem</a> and <a href="https://discuss.binaryage.com/t/1-7-8-open-a-desktop-folder-and-spotlight-issues/4272">Show in Finder issues</a> when 'Folders on Top' was enabled. [El Capitan]
! Auto-sizing of columns should be without observable delay in most cases. [El Capitan]
! Fixed source of potential crashes when using 'Folders on Top'.
! <a href="https://discuss.binaryage.com/t/persistent-name-column-width-in-list-view-mode/4274">Name column expands to available width</a> in List View mode. [El Capitan]
1.7.8 - October 14, 2015
! Fixed <a href="https://discuss.binaryage.com/t/1-7-7-is-broken/4263">broken copy&paste</a> (regression introduced in 1.7.7).
! Automatic column resizing is not applied on preview columns.
! Fixed closing all windows (when clicking red close button while holding option).
1.7.7 - October 13, 2015
+ Re-implementation of auto-sizing columns in Column View for El Capitan. [El Capitan]
! Returned previous behaviour of Coloured Sidebar under Yosemite. [Yosemite]
1.7.6 - October 12, 2015
+ Re-implementation of sidebar mirroring in dual mode for El Capitan. [El Capitan]
1.7.5 - October 11, 2015
+ New Folders on Top implementation for El Capitan (works in Column View Mode as well and fixes issues <a href="https://discuss.binaryage.com/t/bug-with-folder-on-top-feature/4239">described here</a>). [El Capitan]
+ Colorful Sidebar updated for El Capitan. [El Capitan]
! Fixed misplaced colored labels under El Capitan. [El Capitan]
1.7.4 - October 6, 2015
+ Returned option for HFS Path in Copy Path Menu.
! Fixed problem with localizations. [El Capitan]
1.7.3 - September 29, 2015
! Fixed problem with <a href="https://discuss.binaryage.com/t/total-finder-does-not-restore-tabs-locations-on-restart/4130">restoring tabs after Finder restart</a> (introduced in 1.7.2).
- Removed support for OS X 10.8 (Mountain Lion).
- Removed option for HFS Path in Copy Path Menu.
1.7.2 - September 28, 2015
* Compatibility with OS X 10.11 (<a href="https://totalfinder.binaryage.com/system-integrity-protection">but you have to disable SIP</a>). [El Capitan]
+ TotalFiner warns about <a href="https://totalfinder.binaryage.com/system-integrity-protection">System Integrity Protection</a> if active (and offers further actions). [El Capitan]
+ Added labels support under 10.11. [El Capitan]
! Fixed visual glitch when opening DMG files under 10.11. [El Capitan]
! Do not change background color if TotalFinder window loses key status but stays main.
! Labels: improved rendering of tag circles under some circumstances (they have a nice white bezel). [Yosemite]
1.7.1 - August 11, 2015
* Initial partial compatibility with OS X 10.11. (<a href="https://discuss.binaryage.com/t/totalfinder-status-under-os-x-10-11-el-capitan/3858">discussion</a>) [El Capitan]
! Fixed a problem with <a href="https://discuss.binaryage.com/t/totalfinder-license-info-lost-or-settings-got-unexpectedly-reset/3772">license resetting on some machines</a>.
! Opening new tab with + button <a hred="https://discuss.binaryage.com/t/open-new-tabs-in-yosemite/3898">didn't respect setting to open in previous location</a>
1.6.27 - June 5, 2015
! Fixed a problem with <a href="https://discuss.binaryage.com/t/file-moving-copying-ui-bug-in-1-6-2x-betas-must-to-top-area-outside-of-tab/3810">dragging files to tabs</a> (regression introduced in 1.6.24).
! Fixed a rare problem of <a href="https://discuss.binaryage.com/t/totalfinder-focussed-tab-unresponsive-until-tabs-switched/3804">unresponsive Finder windows</a> [Yosemite]
1.6.26 - June 2, 2015
! Visor tabs didn't have <a href="https://discuss.binaryage.com/t/mouse-actions-in-tabs-work-only-on-very-top-pixels-and-not-the-full-button/3791">clickable close buttons</a> (regression introduced in 1.6.24).
! Visor activation didn't work via <a href="https://discuss.binaryage.com/t/totalfinder-double-opt-shortcut-doesnt-trigger-in-yosemite/3588">double-tapping on some machines</a>.
! Respect "open new tabs with previous location" setting when <a href="https://discuss.binaryage.com/t/open-split-using-current-location/2531">creating a new tab for dual mode</a>.
1.6.25 - May 30, 2015
* Installer/uninstaller/packaging icons changed to Yosemite-style.
! Double-keypress code does not read com.apple.mouse.doubleClickThreshold system preference anymore (this might cause OPT+OPT style Visor activation to not work for users who have some crazy high value set there).
1.6.24 - May 29, 2015
* Switching toolbar display mode from icons-only to something else does not look ugly anymore. [Yosemite]
1.6.23 - May 26, 2015
* TotalFinder newly checks if <a href="https://discuss.binaryage.com/t/totalfinder-license-info-lost-or-settings-got-unexpectedly-reset/3772">settings plist file is missing or corrupted</a>.
* TotalFinder stores a backup of licensing info in Finder's plist itself (To ease the pain of users who run MacKeeper or CleanMyMac to wipe all TotalFinder settings out and then wonder why their TotalFinder got suddenly unregistered).
! Fixed a timing problem with <a href="https://discuss.binaryage.com/t/totalfinder-does-not-launch/3744">TotalFinder startup</a>.
1.6.22 - May 25, 2015
! Finally reliable DMG detection.
! Adressed instability issues introduced in 1.6.19.
1.6.21 - May 24, 2015
! Improved DMG detection from 1.6.20. Some users were reporting unexpected behaviour.
1.6.20 - May 21, 2015
! Tabs were not resized properly to adapt changing window width (regression introduced in 1.6.19).
! TotalFinder was sometimes unexpectedly <a href="https://discuss.binaryage.com/t/totalfinder-open-in-new-tab-always-opens-a-new-window/1128">opening new tabs as new windows</a>.
1.6.19 - May 20, 2015
! Fixed sluggish navigation in column mode.
! Fixed more cases of ghost windows without frames.
! TotalFinder would not launch under some circumstances.
1.6.18 - May 1, 2015
* Yes, the developer is back from the wonderland of ClojureScript!
* Compatibility with OS X 10.10.3. [Yosemite]
! Fixed revelaing windows when <a href="https://discuss.binaryage.com/t/clicking-finder-icon-in-dock-no-longer-works-as-expected">clicking the Dock icon</a> under 10.10.3.
! Fixed a bug which could potentially lead to a memory corruption and upredictable behaviour.
! TotalFinder <a href="https://discuss.binaryage.com/t/totalfinder-hangs-or-crashes-finder-at-startup/1986">should not crash on startup</a> when restoring original tabs state.
! Removed code signature check in TotalFinder launcher, it started causing troubles to some users.
1.6.17 - November 7, 2014
! Fixed broken licensing dialog.
1.6.16 - November 5, 2014
* Compatibility with <a href="http://www.macrumors.com/2014/11/03/first-yosemite-10-10-1-beta-now-available/">OS X 10.10.1 beta</a>. [Yosemite]
! Finally fixed the annoying problem of <a href="https://discuss.binaryage.com/t/visor-problem-on-boot/2761">broken Visor hotkey after restart</a>.
1.6.15 - November 3, 2014
* Reimplemented internal system of storing TotalFinder preferences (preferences are no longer shared with Finder in com.apple.finder.plist but are held separately in com.binaryage.totalfinder.plist). [Yosemite] [Mavericks]
! Fixed the problem of <a href="https://discuss.binaryage.com/t/additional-visual-bug-in-list-view/2721">blank lines in List View</a> when colored labels feature was enabled. [Yosemite]
! Implemented more code which should prevent <a href="https://discuss.binaryage.com/t/recurring-ghost-tf-windows-odd-sliding-spacetospace/2640">ghost Finder windows</a>. [Yosemite]
1.6.14 - October 30, 2014
! Fixed broken <a href="https://discuss.binaryage.com/t/totalfinder-1-6-12-incompatibility-with-quicksilver">interoperability with AppleScript</a> (since 1.6.10)
! Toolbar customization palette does not obscure toolbar items anymore [Yosemite]
! Prevented toolbar flickering and bad layout when toggling it on and off again [Yosemite]
1.6.13 - October 19, 2014
* It is possible to set conflicting keyboard shortcuts in TotalFinder Preferences (User is warned but has an option to set the conflicting shortcut anyway).
! Additionally global keyboard shortucs which are disabled <a href="https://github.com/shpakovski/MASShortcut/commit/0633545a4666d969dfbb860e540eb3b008893651">are no longer treated as conflicting shortcuts by TotalFinder</a>.
! Under some circumstances <a href="https://discuss.binaryage.com/t/totalfinder-will-not-start-automaticly/2617">TotalFinder was not launched automatically</a> after system start. [Yosemite]
! Toggling 'Show hidden files' and other TotalFinder view options did not refresh file lists.
! Fixed a problem when TotalFinder maximized window after double-clicking a tab. [Yosemite]
1.6.12 - October 2, 2014
! Reverted "unwanted window maximizations" fix from 1.6.11 - it seriously <a href="https://discuss.binaryage.com/t/bug-in-1-6-11-dragging-tab-to-create-new-window/2595">broke tabs code</a> under Mavericks. [Yosemite]
1.6.11 - September 30, 2014
! Compatibility with OS X 10.10 (GM1). [Yosemite]
! Fixed <a href="https://discuss.binaryage.com/t/problem-with-totalfinder-v1-6-10-viewing-folders-in-columns-with-side-by-side-view">dual mode problems</a> introduced in 1.6.10. [Mavericks]
! Resolved unwanted window maximizations when double-clicking tabs. [Yosemite]
! Clicking "new tab" button could add tab to a wrong TotalFinder window (focus-related issue).
! Dragging files over tabs works reliably.
1.6.10 - September 19, 2014
! Compatibility with OS X 10.10 (DP7 and DP8). [Yosemite]
! Fixed problems with <a href="https://discuss.binaryage.com/t/editing-filenames-bug/2271/12">stuck keyboard focus</a> (I found a better way how to implement sharing keyboard focus between Finder windows embedded under TotalFinder frame window. This is a huge improvement.)
! Fixed fullscreen transition issues. [Mavericks]
* Added <a href="https://github.com/binaryage/totalfinder-i18n/commit/3a67f79acd9403500dc91942be54ca4f712d5e28">Malay localization</a>.
1.6.9 - August 19, 2014
! Hotfix release for compatibility with OS X 10.10 (developer preview 6). Note traffic-light buttons can be misplaced. Coloured labels have issues too. I'm working on a fix. [Yosemite]
1.6.8 - August 18, 2014
! Fixed <a href="https://discuss.binaryage.com/t/tf-1-6-7-finder-minimize-button-yellow-not-working-10-9-4">broken minimize button</a> (regression introduced in 1.6.7).
! Removed potential focus ring around new tab button (regression introduced in 1.6.7).
1.6.7 - August 14, 2014
! TotalFinder <a href="https://discuss.binaryage.com/t/tf-1-6-6-on-10-9-4-doesn-t-launch">didn't launch after system reboot</a> (regression introduced in 1.6.6).
! Colored icons in Sidebar work again under all supported systems.
* TotalFinder is not causing warnings in Console log. [Yosemite]
* Visor's pin button is properly styled under Yosemite. [Yosemite]
1.6.6 - August 12, 2014
! Sidebar width preservation works again (regression introduced in 1.6.5).
! Fixed right-click context menus under tab icons (regression introduced in 1.6.5).
! Fixed empty sidebar issue under 10.8 (regression introduced in 1.6.5). [Mountain Lion]
1.6.5 - August 10, 2014
! Improved compatibility with OS X 10.10 (developer preview 5). [Yosemite]
+ Dock progress functionality works again under OS X 10.10 (developer preview 5). [Yosemite]
* Improved dock progress when multiple operations are progressing concruently.
* Less intrusive way how to arrange Finder views to fit in TotalFinder window.
! Fixed sidebar visual glitch and colors under OS X 10.10. [Yosemite]
1.6.3 - August 5, 2014
! Fixed compatibility with OS X 10.10 (developer preview 5). [Yosemite]
- Dock progress functionality temporarily does not work under OS X 10.10 (developer preview 5). [Yosemite]
* Reimplemented old code for bringing Visor up by double-tapping a key
1.6.2 - July 21, 2014
+ Introduced TotalFinderDockIconIgnoresVisor tweak <a href="https://discuss.binaryage.com/t/visor-window-shows-when-clicking-on-finder-dock-icon/2225">requested here</a>.
! Fixed misbehaving Visor's Show/Hide item under menubar status icon.
! Another attempt to fix <a href="https://discuss.binaryage.com/t/totalfinder-hangs-or-crashes-finder-at-startup/1986">Finder hanging during TotalFinder startup affecting some users</a>.
* Improved compatibility with OS X 10.10 (developer preview 3). [Yosemite]
1.6.1 - June 19, 2014
+ Initial compatibility with OS X 10.10 (developer preview). [Yosemite]
! Fixed crash in uninstaller when required font was missing in the system.
! Fixed infinite redrawing loop eating 100% of CPU and <a href="https://discuss.binaryage.com/t/totalfinder-hangs-or-crashes-finder-at-startup/1986/23">affecting some users</a>.
! Fixed scenario when cut selection <a href="https://discuss.binaryage.com/t/totalfinder-does-not-clear-selection-keyboard-shortcuts-dont-work/1611/12">stopped updating itself</a>.
* General improvement of stability (we started using weak pointers to keep track of Finder windows).
1.6 - May 08, 2014
$ Related blog post: <a href="https://blog.binaryage.com/totalfinder-with-colored-labels">TotalFinder 1.6 with Colored Labels</a>
- Removed support for OS X 10.7 [Lion]
1.5.38 - May 03, 2014
! Fixed a rare case when some Desktop icons could be missing (ghost icons). [Mavericks]
* Improved drawing of colored labels behind Desktop icons.
1.5.37 - April 30, 2014
! Fixed missing Copy Path menu. [Lions]
! Fixed switching to Time Machine. [Mavericks]
* Resolved possible crash when cut & pasting item to Desktop. [Mavericks]
* Resolved possible random crash when executing commands via menu or toolbar.
1.5.36 - April 24, 2014
! Right clicking a folder on Desktop and selecting paste applies operation on the folder (not on Desktop itself).
* DMGs now open as separate standard Finder windows (this should resolve confusion about missing sidebars).
* Colored Labels are slightly smaller on Desktop and in Icon View (selection bubble will cover them).
* Fixed color bleeding when an item in List View is selected and has Colored Label.
1.5.35 - April 12, 2014
! Fixed <a href="https://discuss.binaryage.com/t/double-click-on-volume-opens-in-separate-window-not-in-tab-1-5-34/1741">issues introduced in previous beta release</a> (I had a bad day yesterday).
1.5.34 - April 11, 2014
* Colored Labels are now flat and desaturated a bit (this improved readability and unified the style).
* Finder's texts are properly anti-aliased when rendered over Colored Labels.
* Hiding dot files on Desktop works <a href="https://discuss.binaryage.com/t/desktop-ds-store-ghost-bug/1710">without creating ghost holes</a>.
* DMGs now open as separate standard Finder windows (this will hopefully resolve confusion about missing sidebars).
* When you torn-off a native Finder tab it creates a native Finder window (originally it was adopted as a new TotalFinder tab which was pretty confusing).
! Resolved another <a href="https://discuss.binaryage.com/t/mavericks-totalfinder-window-moves-position-on-screen-by-itself/1687/10">background click-drag issue</a>.
1.5.33 - April 7, 2014
! Colored Labels work properly for <a href="https://discuss.binaryage.com/t/totalfinder-1-5-29-update-brings-back-true-labels/1672/9?u=darwin">symlinks and aliases</a>.
* Improved rendering of Colored Labels <a href="https://discuss.binaryage.com/t/desktop-labels-colored-tabs-be-too-big/1713">under Desktop icons</a>.
* Improved rendering of Colored Labels in Icon View to better match Dektop icons.
1.5.32 - April 6, 2014
+ Colored Labels work newly also with Desktop items
! Colored Labels <a href="https://discuss.binaryage.com/t/vote-on-new-maverick-finder-labels-gradient-or-flat/1680/10?u=darwin">render properly</a> regarless of System scrollbars setting.
! Finder <a href="https://discuss.binaryage.com/t/bug-selection-text-in-finder-selection-is-black-instead-of-white/1678">selection is rendered in white</a> in Column Mode again.
! Resolved <a href="https://discuss.binaryage.com/t/mavericks-totalfinder-window-moves-position-on-screen-by-itself/1687">occasional random window jumping</a> when click-dragging.
! Fixed a regression when system version detection code would cause TotalFinder to crash under Hungarian localized OS (and possibly under other localized OSes).
1.5.31 - April 3, 2014
! Fixed pretty serious crash scenario when closing tabs/windows.
! Finder <a href="https://discuss.binaryage.com/t/bug-selection-text-in-finder-selection-is-black-instead-of-white/1678">selection is rendered in white</a> in Column Mode again.
* Improved rendering of Colored Labels in Column and List View as <a href="https://discuss.binaryage.com/t/vote-on-new-maverick-finder-labels-gradient-or-flat/1680">discussed here</a>.
1.5.30 - April 1, 2014
! Fixed startup crash on 10.9 systems (affected initial Mavericks release without any updates).
! Colored Labels were renderng in Icon View regardless of Preferences.
* Improved rendering of Colored Labels in Icon View => rounded corners.
1.5.29 - March 31, 2014
+ <a href="https://discuss.binaryage.com/t/wish-return-finder-labels-to-mavericks/662/">Colored Labels</a> - pre-Mavericks style label colors (List View, Column View, Icon View) [Mavericks]
! Context menu buttons <a href="https://discuss.binaryage.com/t/mavericks-big-contextual-menu-window/441/10">adapt to width of localized strings</a>.
1.5.28 - March 29, 2014
+ <a href="https://discuss.binaryage.com/t/wish-return-finder-labels-to-mavericks/662/">Colored Labels</a> - pre-Mavericks style label colors (in List Mode only, working on Column Mode next) [Mavericks]
! <a href="https://discuss.binaryage.com/t/totalfinder-does-not-clear-selection-keyboard-shortcuts-dont-work/1611/10">Fixed broken cut command on Desktop</a> - a bug introduced in 1.5.26.
! Fixed <a href="https://discuss.binaryage.com/t/mavericks-big-contextual-menu-window/441">wide context menu</a> problem.
1.5.27 - March 23, 2014
! <a href="https://discuss.binaryage.com/t/totalfinder-does-not-clear-selection-keyboard-shortcuts-dont-work/1611/4">Broken Copy/Cut/Paste functionality</a> after closing righ-click context menu introduced in 1.5.26.
* <a href="https://discuss.binaryage.com/t/cut-does-not-work-reliably-w-o-cutpaste-buttons/1060/7">Cut operation is more flexible</a>, possible resolution of failing cut operation.
1.5.25 - March 19, 2014
! Fixed fixed <a href="https://discuss.binaryage.com/t/weird-behavior-on-using-finder-folder-shotcuts/1571">graphical glitch</a> when changing paths via applescript.
* Cut works in <a href="https://discuss.binaryage.com/t/tf-1-5-19-cant-cut-a-file-from-the-results-of-a-search/1487">search results</a>, possible resolution of failing cut operation.
1.5.24 - March 15, 2014
! Fixed toolbar flickering during window resizing in Column View.
! Fixed <a href="https://discuss.binaryage.com/t/minimize-animation-broken/1530">stuck animation</a> when minimizing windows.
! Activating TotalFinder via clicking on tabs background transfers focus to Finder properly.
! Expanding window to whole screen works now reliably when pressing green + button.
! Crash watcher could <a href="https://discuss.binaryage.com/t/totalfinder-attempts-to-re-report-crash-from-yesterday/1563">pop up with old crash log</a>.
* Background color does not flash after sliding visor up.
1.5.22 - February 28, 2014
* Added missing files for Hungarian and Croatian localizations.
* Switching to full screen streches window to whole screen.
! Full screen menu item (CTRL+CMD+F) works reliably.
! Sometimes background color of windows could stay wrong.
! Prevented ghost Finder window when clicking Finder's Dock icon.
! Clicking "Add Tab" button on window without focus could operate on different browser window.
1.5.21 - February 27, 2014
! Colourful sidebar <a href="https://discuss.binaryage.com/t/no-coloured-icons-after-update-to-1-5-19/1469">shows all icons in colours</a>.
! Fixed <a href="https://discuss.binaryage.com/t/version-1-5-19-bug-unable-to-set-tags/1462">broken tags and other issues</a> in newly created Finder windows.
! Sorting of <a href="https://discuss.binaryage.com/t/folder-on-top-function/1079/16">file groups works under Chinese localization</a>.
1.5.20 - February 25, 2014
! Doing rename in the left-side panel of dual view <a href="https://discuss.binaryage.com/t/a-couple-of-bugs-using-latest-version-in-10-9-2/1456">could lock focus to the right side</a>.
! Fixed <a href="https://discuss.binaryage.com/t/a-couple-of-bugs-using-latest-version-in-10-9-2/1456">double-clicking tabs</a> when having enabled "Double click a window's title bar to minimize" in the Dock prefs.
! Fixed a rare (but dangerous) situation when highlighted tab selection did not match folder view displayed by Finder.
1.5.19 - February 25, 2014
! Fixed a crashing scenario when enabled auto-widths in Column View.
1.5.18 - February 24, 2014
! Fixed <a href="https://discuss.binaryage.com/t/totalfinder-grabs-space/1444">unwanted space switches</a> introduced in 1.5.14.
1.5.17 - February 24, 2014
! Fixed serious crashing introduced in 1.5.16 (when remebered folder does not exist after TotalFinder restart).
1.5.16 - February 24, 2014
* Folders on Top: <a href="https://discuss.binaryage.com/t/folder-on-top-function/1079">Reliable sorting of groups</a> in all List View, Column View and CoverFlow View.
! Tabs properly resize when window frame is resized.
1.5.15 - February 20, 2014
! Fixed <a href="https://discuss.binaryage.com/t/tf-1-5-14-causes-endless-finder-growth-under-10-8-5/1440">infinite resizing loop</a> in 1.5.14 (I'm sorry for that).
1.5.14 - February 20, 2014
+ Introduced Bengali translation by <a href="https://github.com/binaryage/totalfinder-i18n/commit/ae2a85d477720dabecf193569bb69bf671bd7f21">Omi Azad</a>
+ When enabled Folders on Top feature in List View and arranged by Kind: <a href="https://discuss.binaryage.com/t/folder-on-top-function/1079">the "Folders" group is sorted first</a> under Mavericks
! Fixed problem of <a href="https://discuss.binaryage.com/t/windows-jitter-and-flicker-when-resizing-even-preferences/498">blinking windows when resizing</a>.
! Fixed cases of missing sidebar when reopening windows.
! The desktop window is skipped when cycling windows via CMD+`.
! Right-side window could have problems with <a href="https://discuss.binaryage.com/t/columns-not-resizable-in-dual-panel-mode/1402">resizing and persistence of column widths</a> in the right side of dual mode.
! Fixed situations when main window could be resized to too narrow width.
* Internal optimizations to improve TotalFinder performance.
* Improved dragging and dropping tabs - focus should stay with dropped tab.
1.5.12 - February 12, 2014
! Fixed <a href="https://discuss.binaryage.com/t/new-update-with-fullscreen-support/1398">glitches when transitioning to fullscreen</a> mode.
! Fullscreen mode is supported only under Mavericks.
! Items in List View turn gray when <a href="https://discuss.binaryage.com/t/cut-and-paste-glitches/1276">marking files for Cut operation</a> under Mavericks.
- Removed 'Always Maximize' option - this is the standard behaviour under Mavericks.
1.5.11 - February 10, 2014
+ Implemented support for fullscreen mode (finally!)
1.5.10 - February 2, 2014
+ Compatibility with OS X 10.9.2 [Mavericks]
+ Visor can be shown on screen with mouse cursur (a new "Screen" option under visor preferences)
* Cleanup of code implementing colored icons in sidebar.
1.5.9 - December 30, 2013
+ Introduced Hindi translation by <a href="https://github.com/ashishpandey">Ashish Pandey</a>
* <a href="https://discuss.binaryage.com/t/appears-that-contextual-menus-appear-to-be-broken-in-the-new-10-9-2-devloper-preview-of-mavericks/1165">Compatibility with OS X 10.9.2 (beta)</a>.
* Visor focus restoration is <a href="https://discuss.binaryage.com/t/tf-can-sometimes-force-an-unwanted-space-switch/175/18?u=darwin">respecting space boundaries</a>
1.5.6 - December 5, 2013
! Fixed missing app icon (the problem introduced in 1.5.5).
* "Open in new tab" context-menu item opens TotalFinder's tab under Mavericks.
1.5.5 - November 16, 2013
* <a href="https://discuss.binaryage.com/t/issues-with-mavericks-10-9-1-beta/919">Compatibility with OS X 10.9.1 (beta)</a>.
! Finally fixed <a href="https://discuss.binaryage.com/t/folder-on-top-with-sort-by-date-added-v-1-5/410">misbehaving folders on top</a>.
1.5.4 - November 16, 2013
+ Added a tweak to <a href="https://discuss.binaryage.com/t/totalfinder-tabs-in-mavericks/280">disable tabs completely</a> (in TotalFinder Preferences -> Tabs).
! Fixed <a href="https://discuss.binaryage.com/t/folder-on-top-with-sort-by-date-added-v-1-5/410">misbehaving folders on top</a>.
! Fixed <a href="https://discuss.binaryage.com/t/mavericks-scroll-bars-vanished-dual-mode-right-window-problems">broken scrollbars in dual mode</a> under Mavericks.
! Fixed <a href="https://discuss.binaryage.com/t/dual-mode-new-tab-resize-bug/874">wide sidebar bug</a> when opening dual mode too quickly.
! Fixed <a href="https://discuss.binaryage.com/t/cut-file-and-paste-to-desktop/232">cut&paste bug</a> when pasting to Desktop under Mavericks.
! Fixed <a href="https://discuss.binaryage.com/t/uninstaller-crashes-immediately/502">crashing uninstaller</a> under Lion.
! Sparkle updater was <a href="https://discuss.binaryage.com/t/the-update-asked-for-my-password-why/838">randomly asking for password</a> (in some rare cases).
! Fixed the installer on system with multiple users logged in concruently.
* <a href="https://discuss.binaryage.com/t/cmd-click-on-sidebar-mavericks/376">CMD+click into sidebar</a> under Mavericks opens new TotalFinder tab instead of a native tab.
1.5.2 - October 18, 2013
! Prevented (potential) scenario when TotalFinder launcher could cause continuous Finder crashing.
* Checking TotalFinder bundle signature to prevent running cracked version. Cracked version 1.5 caused 100% Finder crashes and pretty big headache under Mavericks. Anyway, if you are using a cracked version you are doing it wrong ;-)
1.5 - October 10, 2013
<li><span class="sticker note"><b>NOTE</b></span> <span class="info">This is a major version to be stable channel. Thank you for helping to test all previous releases.
1.4.30 - October 9, 2013
! Under Mavericks, drag and drop would break after dragging file onto a tab.
! Sparkle updater shows TotalFinder icon and does not throw errors about missing update feed.
* The "New tab" button should be visually identical to Chrome's
1.4.29 - October 1, 2013
+ Introduced new custom-built uninstaller app.
! Fixed several crash scenarios.
1.4.27 - September 19, 2013
! Fixed problem with <a href="https://discuss.binaryage.com/t/bug-totalfinder-looks-bad-on-airdrop">rendering AirDrop view</a>.
! Fixed rendering of path bar under Mavericks.
* Under Mavericks, opening folder with CMD+click opens it in a new TotalFinder's tab (use CMD+OPT+click to open it in native Finder's tab).
1.4.26 - September 16, 2013
! Fixed broken crash reporter.
1.4.25 - September 15, 2013
! Fixed blinking of dual panel (especially under Lion).
! Fixed a crash in FoldersOnTop code.
1.4.24 - September 13, 2013
! Fixed some random crashes related to our crash reporting code.
! Fixed <a href="https://discuss.binaryage.com/t/status-bar-in-latest-update">missing status bar</a> when toolbar and sidebar are hidden.
* Option+click on close (miniaturize) button will close (miniaturize) all windows.
* Prevents <a href="https://discuss.binaryage.com/t/tf-can-sometimes-force-an-unwanted-space-switch">unwanted space switch</a> when using pinned visor.
1.4.23 - August 31, 2013
! Fixed crashes when entering Column View under Lion with enabled auto-columns-width feature.
! Fixed visual artefacts when using search or switching view mode (introduced in 1.4.19).
1.4.19 - August 30, 2013
+ Major Mavericks compatibility improvements: Tabs, Visor, CopyPathMenu, ColourfulSidebar and fixes in other plugins.
! Fixed some edge cases when TotalFinder <a href="https://discuss.binaryage.com/t/tf-wont-launch-at-system-startup-when-in-system-pref-login-items">wasn't launched during startup</a>.
! Fixed annoying <a href="https://discuss.binaryage.com/t/cant-get-rid-of-the-shortcut-a-for-folders-on-top">'A' shortcut bug</a>.
! Fixed issues when restoring files from TimeMachine.
* Various improvements in automatic column resizing code.
1.4.18 - July 16, 2013
+ Crash logs include TotalFinder-specific info if available.
! Fixed more crashes with enabled column-view auto-width feature.
1.4.17 - July 10, 2013
+ Ported some plugins under Mavericks: FoldersOnTop, DockProgressBar, ColumnViewAutoWidth and SystemFiles.
! Fixed remaining installation issues.
! Fixed occasional crash when rendering Dock progress bar.
! Fixed occasional crash with enabled column-view auto-width feature.
! Fixed occasional problem with Cut menu item under Edit menu. It showed "Copy" and CMD+X keyboard shortcut did not work anymore.
* Cut-Copy-Paste context menu buttons resize properly with localized names.
* Updated French and Turkish localizations.
1.4.16 - June 28, 2013
! 1.4.15 was crashing on Lion systems :-(
1.4.15 - June 27, 2013
* Internal improvements in the Tabs plugin.
1.4.14 - June 26, 2013
* TotalFinder launches cleanly under OS X 10.9 (Mavericks). Most features are disabled under Mavericks. We will re-enable them one by one as we will progress porting the code to the new system.
1.4.13 - June 24, 2013
! Fixed installation issues introduced in 1.4.11 and 1.4.12 (bad day - I'm sorry for that).
1.4.12 - June 24, 2013
! Fixed installation issues introduced in 1.4.11.
1.4.11 - June 22, 2013
+ It is possible to set minimal width when enabling automatic column widths.
* Added retina versions of menubar icons.
* Automatic adjusting of columns in Column View works more reliably.
* More robust TotalFinder launcher (some people had issues with applescript errors).
* Dock icon progress bars are more similar to system progress bars.
1.4.10 - June 6, 2013
+ New preference to enable automatic adjusting of columns in Column View.
+ Compatibility with OS X update 10.8.4
! Fixed issues when leaving TimeMachine.
* Various minor improvements.
1.4.9 - March 26, 2013
+ New preferences system (gives us more flexibility in exposing feature tweaks).
+ Added a feature to enable a progress bar over the Dock icon when copying files (<a href="https://getsatisfaction.com/binaryage/topics/copy_progress_bar_in_dock_icon">requested here</a>).
+ Added a feature to enable colored sidebar icons (based on <a href="http://cooviewerzoom.web.fc2.com/colorfulsidebar.html">Colorful Sidebar SIMBL</a>).
+ Finally added "Open new tabs with previous location" preferences tweak.
! Fixed redrawing issues when entering and leaving TimeMachine.
! Fixed weird crashes when evaluating keyboard shortcuts while system is switched to some exotic keyboard layouts.
! Fixed a problem when activating pinned Visor.
! Visor might steal ESC system-wide in some circumstances. Now ESC is properly scoped to active Visor window.
! Fixed an error where, on some systems, TotalFinder might fail during system startup with "Connection invalid -609" error.
* Shortcut recording now uses <a href="https://github.com/shpakovski/MASShortcut">MASShortcut</a> component by Vadim Shpakovski.
* General stability improvements.
1.4.8 - December 02, 2012
! Fixed broken paste command in context menus (<a href="https://getsatisfaction.com/binaryage/topics/cut_copy_paste-dqz4d#reply_10704003">issue</a>).
! Fixed redrawing issues under high CPU load (<a href="https://getsatisfaction.com/binaryage/topics/redraw_issues_mountain_lion_10_8_2">issue</a>).
* Improved Visor sliding. Fading and sliding should be smoother. Removed random flickering in multi-display setups (<a href="https://getsatisfaction.com/binaryage/topics/total_finder_and_multiple_displays">issue</a>).
- Switched new tabs rendering back to original code. It is not ready for primetime (<a href="https://getsatisfaction.com/binaryage/topics/tabs_graphics_in_v1_4_7_seem_corrupted">issue</a>).
1.4.7 - December 01, 2012
+ Compatibility with Finder 10.8.2 (which is included in OS X update 10.8.3)
* Updated tabs rendering with the latest code from Chromium project.
! Fix disabled copy command in search results and some other places (a bug introduced in 1.4.5).
1.4.6 - November 22, 2012
! Fixed pinned Visor behavior broken in 1.4.5 (<a href="https://getsatisfaction.com/binaryage/topics/when_visor_is_pinned_and_not_frontmost_i_can_no_longer_bring_back_finder_with_my_hotkey_also_unpinned_loses">issue</a>).
! Focus Visor when clicking the Dock icon while having an opened unfocused pinned Visor (<a href="https://getsatisfaction.com/binaryage/topics/visor_minimizes_when_attempting_to_bring_it_to_front_with_dock_icon">issue</a>).
* Improved window dragging via Finder's toolbar or status bar.
1.4.5 - November 20, 2012
+ Implemented "Reopen Closed Tab" (<a href="https://getsatisfaction.com/binaryage/topics/_reopen_closed_tab_command">idea</a>).
+ It is now possible to copy UNC-style paths from Copy Path submenu.
! Double-clicking Finder's toolbar miniaturizes whole window.
! Cut/Copy/Paste buttons appear in context menus also when clicking into Finder's background.
! Visor window is correctly repositioned after connecting or disconnecting external display.
* Added TotalFinder menu into Finder main menu item (for people who remove TotalFinder's menubar icon).
1.4.4 - November 15, 2012
! Clicking Finder icon in the Dock brings back miniaturized window (<a href="https://getsatisfaction.com/binaryage/topics/minimized_windows_bug">issue</a>).
! CMD+W does not close whole window in case there is only one tab in dual mode.
! Escape key could stop working when closed last tab in Visor window.
1.4.3 - September 27, 2012
! Prevent redrawing issues and delay when minimizing TotalFinder window.
! New tabs were opening outside Visor (<a href="https://getsatisfaction.com/binaryage/topics/folders_opening_outside_visor">issue</a>).
! Clicking Dock icon could cause random switching of Spaces.
! Prevent rare crashes when dragging files over tabs.
! Always use English keyboard layout when dealing with keyboard shortcuts. This should fix issues when using exotic keyboard layouts.
1.4.2 - September 18, 2012
! Fixed "Folders On Top" bug introduced in 1.4.1 (<a href="https://getsatisfaction.com/binaryage/topics/desktop_icons_flashing_continuously_hidden_unhidden">issue</a>).
1.4.1 - September 17, 2012
+ Added Vietnamese translation by <a href="https://github.com/craigcosmo">Craig Nguyen</a>
+ Compatibility with Finder 10.8.1 (which is included in OS X update 10.8.2).
! Fixed unreliable "Reveal in Finder" requests from other apps (<a href="https://getsatisfaction.com/binaryage/topics/finder_window_does_not_open_but_every_other_time_from_other_apps">issue</a>).
! Fixed "Folders On Top" issues when list was displayed as unsorted and caused weird dragging bugs (<a href="https://getsatisfaction.com/binaryage/topics/total_finder_drags_the_wrong_file">issue</a>).
! Fixed issues with missing sidebar or toolbar in some scenarios (<a href="https://getsatisfaction.com/binaryage/topics/total_finder_opening_with_no_side_panel">issue</a>, <a href="https://getsatisfaction.com/binaryage/topics/sidebar_not_appearing_in_new_tabs">issue</a>).
! Fixed a minor memory leak.
* New tabs get created in the last browser in the current space.
1.4 - July 31, 2012
! External Finder activation works reliably (<a href="https://getsatisfaction.com/binaryage/topics/opening_folder_that_already_has_a_non_active_tab_no_longer_brings_tab_to_front">issue</a>)
! Fixed toolbar customization panel issues and window sheets are placed properly under the toolbar.
! Close button on dual tab didn't work.
! Fixed Visor auto-hiding when Finder is losing focus (<a href="https://getsatisfaction.com/binaryage/topics/autohiding_visor_doent_work_reliably">issue</a>).
* Prevents minor flicker during tab switching via keyboard.
1.3.13 - July 30, 2012
! TotalFinder renders nicely on Retina MacBooks (<a href="https://getsatisfaction.com/binaryage/topics/retina_support-347pw">issue</a>)
! Visor auto-slides down when Finder loses active status. This should fix unreliable sliding historically based on losing keyboard focus (<a href="https://getsatisfaction.com/binaryage/topics/autohiding_visor_doent_work_reliably">issue</a>).
! No ghost windows after restarting (when Visor was pinned and up before restart).
* Prevents visual artifacts during Exposé.
1.3.12 - July 29, 2012
* TotalFinder should feel much more responsive. I have optimized tab rendering, dragging and window layouting. Also some old windowing problems should be history.
! Visor stays up when you open a file via QuickLook.
1.3.11 - July 28, 2012
! Real fix preventing frozen Finder windows under Mountain Lion (<a href="https://getsatisfaction.com/binaryage/topics/issue_with_1_3_9">issue</a>).
1.3.10 - July 27, 2012
! Prevent frozen Finder windows under Mountain Lion (<a href="https://getsatisfaction.com/binaryage/topics/issue_with_1_3_9">issue</a>).
! Fixed a possible crash during TotalFinder shutdown.
1.3.9 - July 27, 2012
! Fixed misplaced Dropbox overlays in Icon View under Mountain Lion.
! Fixed a crash when releasing a dragged tab.
1.3.8 - July 26, 2012
! Prevent crashes when dragging tab icon out as a new tab (<a href="https://getsatisfaction.com/binaryage/topics/dragging_folder_icon_from_a_tabs_title_crashes_totalfinder_1_3_2">issue</a>).
* New "Switch Active Panel" item under Window menu => allows remapping OPT+TAB shortcut (<a href="https://getsatisfaction.com/binaryage/topics/custom_keyboard_shortcut_for_switch_active_panel">issue</a>).
* Prevent flicker when switching tabs via CTRL+TAB.
1.3.7 - July 25, 2012
+ Added Mongolian translation by <a href="https://github.com/gtulga">Tulga Gandavaa</a>.
! Fixed sidebar width syncing issues under Mountain Lion.
! Clicking the Dock icon will bring Visor reliably up or down.
! Constrain Visor's height to available screen space (<a href="https://getsatisfaction.com/binaryage/topics/window_too_tall_on_11_inch_macbook_air_with_visor_on">issue</a>).
! Prevent bounce-back effect when hiding or minimizing windows.
* Prevent flicker when closing windows.
1.3.6 - July 24, 2012
! Fixed CMD+W problem introduced in v1.3.5.
! Fixed stuck Visor window during sliding when the Dock is visible.
! Fixed localization issues introduced in v1.3.5.
! Fixed gray-ish toolbar context menu problem in v1.3.5.
1.3.5 - July 22, 2012
+ Fixed compatibility with Finder 10.8 under Mountain Lion (GM).
+ TotalFinder binaries are signed to make Gatekeeper happy.
+ Compatibility with Finder 10.7.5 (OS X update 10.7.5).
- Removed support for Finder 10.6 under Snow Leopard.
! Fixed uploading of crash reports via CrashWatcher.
* Improved stability and performance. I did big refactoring and code cleanup. Broken all features into separate TotalFinder "plugins".
* Better performance of Visor sliding.
* Resolved some additional situations causing "ghost" windows.
* Slightly improved visual style of tab rendering. A few Retina tweaks copied over from Google's Chrome sources. Waiting for my Retina MBP to really test it.
* Paths in tabs are truncated from the left (again).
1.3.4 - April 25, 2012
! Fixed broken right pane of Dual Mode under 10.7.4 (<a href="https://getsatisfaction.com/binaryage/topics/split_screen_problems_on_osx_10_7_4">issue</a>).
1.3.3 - April 24, 2012
+ Compatibility with Finder 10.7.3 (which is included in OS X update 10.7.4).
1.3.2 - December 3, 2011
+ Compatibility with Finder 10.7.2 (which is included in OS X update 10.7.3).
* Improved performance when Folders on Top is enabled.
! Do not resolve symlinks when doing Cut&Paste (<a href="http://getsatisfaction.com/binaryage/topics/cuting_symbolic_link_also_cuts_original_directory">issue</a>).
1.3.1 - October 25, 2011
! Resolved an issue causing 100% CPU usage when opening "All Files" with enabled Folders on Top (<a href="http://getsatisfaction.com/binaryage/topics/99_finder_cpu_load">issue</a>).
! Fixed a bug causing missing sidebars after opening DMG files (<a href="http://getsatisfaction.com/binaryage/topics/sidebar_not_appearing_in_new_tabs">issue</a>).
! Fixed memory leaks reported by static analysis in Xcode 4.2.
1.3 - October 04, 2011
+ Compatibility with Finder 10.7.1 (which is included in OS X update 10.7.2).
! Symbolic links to folders sort as expected when "Folders on Top" is enabled.
- Removed Asepsis feature and the kernel extension. Asepsis is now freely available as a <a href="https://asepsis.binaryage.com">standalone software</a>.
1.2.5 - August 11, 2011
! Finally fixed memory leaks in CrashWatcher (<a href="http://getsatisfaction.com/binaryage/topics/crashreporter_starts_excessive_memory_consumption">issue</a>).
1.2.4 - August 08, 2011
! Fixed AppleScript command for setting window bounds (<a href="http://getsatisfaction.com/binaryage/topics/lion_totalfinder_breaks_finder_window_tandem_scripts">issue</a>).
1.2.3 - August 08, 2011
+ New Tab command opens default window location as set in General Finder Preferences. Previously it was opening the same location as the current tab. This was causing a lot of support requests because novices can be stuck in DMG view without Sidebar (Lion does not have pill button anymore and CMD+OPT+T to show/hide toolbar with Sidebar is not a well-known keyboard shortcut).
! Resolved some rare crashes in Folder On Top feature.
* The CrashWatcher was improved and <a href="https://github.com/binaryage/crashwatcher">open-sourced</a>. I've also resolved memory leaks.
* TotalFinder.app can be freely relocated. Also optional ~/.totalfinder config is not used anymore.
1.2.2 - July 22, 2011
* Ironed out more sidebar issues.
! Show/Hide Path Bar and Show/Hide Status Bar commands work reliably (even in dual mode).
1.2.1 - July 21, 2011
! I believe this is correct solution for <a href="http://getsatisfaction.com/binaryage/topics/problem_with_scrolling_in_dual_mode_tf_1_2_on_lion">Sidebar issues</a> under Lion.
* Compatibility check does not complain that Lion has unsupported version of Finder.
1.2 - July 20, 2011
! Hopefully fixed some Sidebar issues. For example gray background when collapsing Sidebar view under Lion.
1.1.18 - July 18, 2011
! TotalFinderCrashWatcher: fixed improper path escaping when calling Ruby scripts - failed in 1.1.17 to upload crash logs.
1.1.17 - July 18, 2011
! Lion: New Asepsis was crashing under Lion (<a href="http://getsatisfaction.com/binaryage/topics/lion_gm_1_1_16_asepsis_totalfinder_kext_fails_total_finder">issue</a>).
! Lion: Fixed compatibility with Afloat and other SIMBL plugins which use <a href="https://github.com/rentzsch/jrswizzle">jrswizzle library</a>.
* TotalFinderCrashWatcher: <a href="http://vgable.com/blog/2008/03/05/calling-the-command-line-from-cocoa/">more reliable way</a> of launching Ruby scripts and preventing multiple instances from running.
1.1.16 - July 17, 2011
! Improper placement of tab's popup menu (<a href="http://getsatisfaction.com/binaryage/topics/new_ui_bug_in_1_1_15">issue</a>).
! CrashWatcher didn't detect TotalFinder-related crashes reliably.
! Lion: Asepsis feature implemented from scratch (<a href="http://getsatisfaction.com/binaryage/topics/lion_bugs">issue</a>).
! Lion: Make sure items get properly sorted after adding new files into folder (<a href="http://getsatisfaction.com/binaryage/topics/lion_bugs">issue</a>).
! Lion: Sidebar mirroring in dual mode works as under Snow Leopard.
! Lion: When switching tabs sidebar width stays the same as under Snow Leopard.
! Lion: Finder's file browser could freeze when opening folder with many files where Finder would display "More" icon.
* Tab animations are faster to match current Chrome settings.
* Prevent tab icon jumping when switching to and from dual mode. Also put 2px space between icon and tab title.
1.1.15 - June 22, 2011
+ It is possible to drag small tab icons (folder proxy icons) (<a href="http://getsatisfaction.com/binaryage/topics/re_enable_small_icon_dragging">issue</a>).
* Fixed tab focus problem when creating tabs by dragging folders into tab bar.
1.1.14 - June 15, 2011
+ TotalFinderCrashWatcher - a new improved way for reporting TotalFinder crashes.
+ Applications and scripts may now ask Finder via AppleScript if TotalFinder has been loaded (<a href="https://github.com/binaryage/totalfinder-osax">more info</a>).
+ Alternative TotalFinder installation path may be specified via optional ini file (<a href="https://github.com/binaryage/totalfinder-osax">more info</a>).
! Fixed the annoying iPhoto issue (<a href="http://getsatisfaction.com/binaryage/topics/iphoto_isnt_playing_nicely_with_finder_or_automator_services">issue</a>).
! Fixed broken "open location" applescript event (<a href="http://getsatisfaction.com/binaryage/topics/problems_with_automator_or_applescripts">issue</a>).
! Visor's pin state indication wasn't updated when using keyboard shortcut (<a href="http://getsatisfaction.com/binaryage/topics/pin_visor_not_working_in_latest_version_of_tf">issue</a>).
! Made reading and writing of DSDontWriteNetworkStores flag reliable (<a href="http://getsatisfaction.com/binaryage/topics/when_i_toggle_dont_write_ds_store_files_to_network_shares_it_resets_the_domain_default_pair_of_com_apple">issue</a>).
* TotalFinder reports reasonable error message when fails launching.
- TotalFinder is not using Spotlight anymore to locate TotalFinder.app if not found on standard location.
1.1.13 - June 1, 2011
! Fixed crash reporter - report upload failed because of gist API changes.
1.1.12 - May 31, 2011
+ Major progress on <a href="https://totalfinder.binaryage.com/lion">Lion compatibility</a>.
! Fixed uninstaller - TotalFinder.osax wasn't removed properly.
* Unfocused pinned Visor receives focus when activated. Second activation hides it.
* Visor Pin state is persistent between TotalFinder restarts.
* Sparkle offers update options during first launch (after installation).
* Implemented URL scheme: totalfinder://register/[name]/[key] for better registering experience in the future.
1.1.11 - March 29, 2011
+ Localized into Belorussian by <a href="https://github.com/maksar">Alexander Shestakov</a>.
! Fixed broken feature of dragging files to tabs (<a href="http://getsatisfaction.com/binaryage/topics/_move_file_from_and_to_a_tab">issue</a>).
! Fixed invalid version info reported at some places (<a href="http://getsatisfaction.com/binaryage/topics/newest_version_99eeac1_instead_of_1_8">issue</a>).
1.1.10 - March 22, 2011
+ Compatibility with Finder 10.6.8 (which is included in OS X update 10.6.7).
! Hopefully fixed installer's troubles updating TotalFinder binary.
1.1.9 - March 19, 2011
+ Initial compatibility with OS X 10.7 (Lion). Please read <a href="https://totalfinder.binaryage.com/lion">Lion Compatibility Page</a> to get more info.
+ Localized into Greek by <a href="https://github.com/evripidis">Evripidis Argyropoulos</a>.
+ Localized into Lithuanian by <a href="https://github.com/hemc">Nuno Salvador</a>.
1.1.8 - February 25, 2011
! Fixed broken installer in 1.1.6 and 1.1.7. This one is hopefully correct.
1.1.7 - February 25, 2011
! Fixed broken installer in 1.1.6 - I'm sorry again (<a href="https://github.com/binaryage/totalfinder-installer/commit/44b4ac54f54a3d3eec61fafee69376fa2d877032">mysterious issue</a>).
1.1.6 - February 25, 2011
+ Compatibility with Finder in the upcoming OS X update (10.6.7)
+ Localized into Danish by <a href="https://github.com/Tyilo">Asger Hatuop Drewsen</a>.
+ Localized into Macedonian by <a href="https://github.com/bojan">Bojan</a>.
+ Localized into Ukrainian by <a href="https://github.com/CryAngel">CryAngel</a>.
! Fixed some "gray window" problems. (<a href="http://getsatisfaction.com/binaryage/topics/grey_window_if_visor_pinned_when_alt_t">issue</a>).
! Fixed broken checkbox "Don't write DS_Store files to network drives". (<a href="http://getsatisfaction.com/binaryage/topics/change_values_used_for_dsdontwritenetworkstores">issue</a>, <a href="http://getsatisfaction.com/binaryage/topics/dont_write_ds_store_to_network_checkbox_not_working">issue</a> and <a href="http://getsatisfaction.com/binaryage/topics/when_i_toggle_dont_write_ds_store_files_to_network_shares_it_resets_the_domain_default_pair_of_com_apple">issue</a>).
* Moved traffic lights placement to match Chrome (<a href="http://getsatisfaction.com/binaryage/topics/copy_chromiums_new_traffic_light_placement">issue</a>).
* You can now move TotalFinder.app outside /Applications folder. Launcher uses Spotlight to locate TotalFinder.app if not found in /Applications. (<a href="http://getsatisfaction.com/binaryage/topics/totalfinder_stops_working_if_totalfinder_app_is_moved">issue</a> and <a href="http://getsatisfaction.com/binaryage/topics/tf_will_not_launch_in_user_application_folder">issue</a>).
* Asepsis checks presence of .DS_Store file, it does not do redirection when .DS_Store exists (see Console.app for affected folders). This fixes display of DMG backgrounds when Asepsis enabled.
1.1.5 - January 10, 2011
+ Added command-command, control-control and shift-shift activation options to Visor feature. To switch between them click the button image.
! Fixed broken option-option activation introduced in 1.1.4. (<a href="http://getsatisfaction.com/binaryage/topics/option_option_activation_broken">issue</a>).
1.1.4 - January 09, 2011
+ Added Copy Path menu item support (<a href="http://dl.dropbox.com/u/559047/Screenshots/copypath-menuitem-sample.png">see sample</a>). Must be enabled in Preferences > TotalFinder > Tweaks.
+ Localized into Bulgarian by <a href="https://github.com/ivaylodj">Ivaylo Djounov</a>.
+ Localized into Indonesian by <a href="https://github.com/atmawarin">Ganis Angger Atmawarin</a>.
! Prevented ghost icons. (<a href="http://getsatisfaction.com/binaryage/topics/gosh_icon_on_desktop_after_file_move">issue</a>)
! Prevented a small memory leak left behind with every closed Finder window.
! Fixed duplicate window names in Windows Menu and also when switching tabs window name is correctly updated. (<a href="http://getsatisfaction.com/binaryage/topics/front_tab_names_appear_twice_under_windows_menu">issue</a>)
! TotalFinder no longer hardcodes ⌘ ⌥ → and ⌘ ⌥ ← for tab switching. (<a href="http://getsatisfaction.com/binaryage/topics/running_totalfinder_disables_cmd_opt_rightarrow_expand_all_effect">issue</a>)
! Fixed problem where Visor may get activated back again when in dual mode and ESC is pressed. (<a href="http://getsatisfaction.com/binaryage/topics/when_in_dual_pane_with_visor_up_esc_to_close_visor_does_not_work">issue</a>)
* Prevented initial window flickering during TotalFinder startup.
* Improved internal code structure.
1.1.3 - December 18, 2010
! Fixed crash when unplugging monitor (<a href="http://getsatisfaction.com/binaryage/topics/totalfinder_crashes_when_unplugging_monitor_from_macbook_pro">issue</a>).
! Fixed disjointed UI during Visor activation when clicking icons in the Dock and the Desktop (<a href="http://getsatisfaction.com/binaryage/topics/visor_bug_in_version_1_1_2">issue</a>).
1.1.2 - December 17, 2010
+ Localized into Finnish. Thanks to <a href="https://github.com/rantom">Tomi Rantalankila</a>!
! TotalFinder shows window titles in Expose (<a href="http://getsatisfaction.com/binaryage/topics/no_window_titles_in_snow_leopard_expose">issue</a>).
! Fixed annoying bug where windows could not receive focus under some circumstances (<a href="http://getsatisfaction.com/binaryage/topics/windows_have_no_focus">issue</a> and <a href="http://getsatisfaction.com/binaryage/topics/total_finder_not_getting_the_focus_back">issue</a>).
! When cycling through windows skip the desktop window (<a href="http://getsatisfaction.com/binaryage/topics/_cycle_through_windows_menu_command_is_always_disabled_grayed_out">issue</a>).
! Fixed window displacement bug where tab was pulled out and returned back into the same window (<a href="http://getsatisfaction.com/binaryage/topics/dragging_a_tab_out_and_back_gives_graphics_artifacts">issue</a>).
! When sliding Visor up, visor window always appears on top of other TotalFinder windows.
* The cut-operation cooperates better with system clipboard (<a href="http://getsatisfaction.com/binaryage/topics/cutting_files_folders_and_finders_clipboard">issue</a>)
* Tab switching should be a bit faster and window switching/dragging should not flicker.
* Default menubar icon is black (it was previously gray).
1.1.1 - December 7, 2010
+ Compatibility with Finder 10.6.7 (in the upcoming OS X update)
! Fixed scrolling bug in icon view in dual mode (<a href="http://getsatisfaction.com/binaryage/topics/no_scroll_in_the_right_window_of_double_mode">issue</a>).
! Fixed icons disappearing after cut operation on the Desktop (<a href="http://getsatisfaction.com/binaryage/topics/cut_option_hides_desktop_icons">issue</a>).
1.1 - December 6, 2010
1.0.4 - December 4, 2010
+ Localized into Korean and Welsh. Thanks to <a href="https://github.com/lth1301">Taehwan Lee</a> and <a href="https://github.com/justinrjett">Justin Jett</a>!
! Fixed Visor sliding in dual mode (<a href="http://getsatisfaction.com/binaryage/topics/hiding_in_visor_and_dual_mode_only_hides_the_second_window">issue</a>).
! Solved possible crash situation when dragging TotalFinder window via frame.
! Solved possible crash situation when TotalFinder gets deminiaturized.
* Files marked for Cut&Paste are semi-transparent. We removed that small cut icon from 1.0.3.
* Desktop and all file browsers reflect when item gets marked for cut.
* New tabs open set with path from previously active tab.
* Reimplemented sidebar tweaks in dual mode.
* Toolbar switching is fast (for example via pill button or via keyboard shortcut).
* Prevent frame flickering in various situations. Especially when sliding Visor.
1.0.3 - November 29, 2010
! Fixed broken Sparkle updater (<a href="http://getsatisfaction.com/binaryage/topics/totalfinder_1_0_2_issue_check_for_updates_is_broken">issue</a>).
! Fixed broken Visor tab selection and Pin Button (<a href="http://getsatisfaction.com/binaryage/topics/totalfinder_1_0_2_issue_broken_tab_selection">issue</a>).
1.0.2 - November 29, 2010
+ Cut&Paste in Finder, finally! The feature implemented by <a href="https://github.com/akahan">Roman Yusufkhanov</a> (<a href="http://getsatisfaction.com/binaryage/topics/move_files_and_folders_with_cut_past">issue</a>).
+ New icon with slightly modern look + new Menu Bar icons. Nicely done by <a href="http://robinraszka.com">Robin Raszka</a>.
! Fixed broken crash report uploading (<a href="https://github.com/blog/738-sidejack-prevention-phase-2-ssl-everywhere">GitHub started using SSL</a>).
* Added command to select next and previous tab into Window menu (<a href="http://getsatisfaction.com/binaryage/topics/shortcuts_to_switch_tabs">issue</a>).
* Opening folders in Expose mode works without breaking the UI (<a href="http://getsatisfaction.com/binaryage/topics/no_window_titles_in_snow_leopard_expose">issue</a>).
* Fixed opening Trash from Dock or activating Folder when TotalFinder window is minimized.
* Registration Dialog is immune to extraneous whitespace and new-lines in the middle of the license key.
* Visor sliding should be more smooth (will focus on Visor functionality more in the next release).
* Pulling tabs in and out is much more smooth.
* Many internal improvements in project structure.
1.0.1 - October 12, 2010
+ Localized into Polish and Portugal. Thanks to <a href="http://github.com/binaryage/totalfinder-i18n/contributors">translators</a>, you rock!
+ Introduced secret tweak TotalFinderDontTweakSidebar, to help folks having <a href="http://getsatisfaction.com/binaryage/topics/sidebar_not_appearing_in_new_tabs">this issue</a>.
! Do not apply "Folders on Top" sorting on the desktop view. This should fix <a href="http://getsatisfaction.com/binaryage/topics/gosh_icon_on_desktop_after_file_move">ghost icons on the desktop</a>.
! Fixed "Go To ..." keyboard shortcuts in Dual Mode (<a href="http://getsatisfaction.com/binaryage/topics/folder_navigation_problem_in_dual_pane_mode">issue</a>).
* Registration Dialog is immune to extraneous whitespace characters.
* In trial mode the window badge shows remaining days.
- Removed annoying dialog which popped after every 10 tab switches. It was a bad idea.
1.0 - September 27, 2010
+ Unlocked licensing subsystem.
+ Updated website for 1.0 and added <a href="https://totalfinder.binaryage.com/documentation">documentation</a>.
0.9.10 - September 15, 2010
+ Licensing subsystem (will be unlocked in 1.0).
+ "Folders On Top" feature works reliably in all views. Nice and clean code contributed by Russian hacker Roman Yusufkhanov. Big kudos!