-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangelog2.html
1159 lines (1114 loc) · 57.2 KB
/
changelog2.html
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>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>What's new in TotalSpaces2?</title>
<style type="text/css" media="screen">
body,h1,h2,h3,h4,p,table{padding:0;margin:0;}
ol li{margin-bottom:5px;}
a{text-decoration:none;font-variant:normal;color:#1e51be;}
a:hover{text-decoration:underline;}
*{font-family:"Helvetica Neue",Arial,Helvetica,sans-serif}
#page{padding-right:20px;padding-top:35px;padding-left:20px;font-size:9pt;}
#page p{padding-top:5px;padding-bottom:5px;font-size:9pt;line-height:14pt;}
.changelog body,.changelog h1,.changelog h2,.changelog h3,.changelog h4,.changelog p,.changelog table{padding:0;margin:0;}
.changelog ol li{margin-bottom:5px;}
.changelog a{text-decoration:none;font-variant:normal;color:#1e51be;}
.changelog a:hover{text-decoration:underline;}
.changelog h1{font-size:12pt;padding-top:5px;padding-bottom:5px;}
.changelog h2{font-size:11pt;padding-top:5px;padding-bottom:5px;}
.changelog p{padding-top:5px;padding-bottom:5px;font-size:9pt;line-height:14pt;}
.changelog div.infobox{border:0px solid silver;margin-bottom:10px;clear:both;}
.changelog div.infobox h3{font-size:8pt;border-bottom:1px solid silver;background-color:#e2ecfe;padding:3px 5px;color:#000;}
.changelog div.infobox p{padding:5px;font-size:8pt !important;}
.changelog div.infobox img.left{float:left;}
.changelog ul.changes{margin:0;padding-left:30px;list-style-type:none;padding-right:10px;padding-top:6px;}
.changelog ul.changes li{margin-bottom:5px;}
.changelog .blog-post-pointer {padding-bottom:5px !important; }
.changelog .blog-post-pointer a {font-weight: bold;}
.changelog .titlebox { background-color: #eee; border-bottom: 0px solid #aaa; margin-top: 20px; line-height: 20px;}
.changelog h4{float:left;font-size: 12px;padding:3px;line-height:16px;font-weight: bold; padding-left: 10px; padding-right:6px; width: 100px; white-space:nowrap; text-align:right;}
.changelog h5{margin:0;padding:0;padding:3px;margin-left:6px;font-size:10px;color:#666;line-height:16px;font-weight:normal;}
.changelog .sticker { float: left; width: 80px; display: block; text-align: right; }
.changelog .sticker b { color: white; font-weight: bold; padding: 1px 6px 2px 6px; -moz-border-radius: 3px; -webkit-border-radius: 3px; font-size: 10px; position: relative; top:-1px; }
.changelog .fixed b { background-color: #00A825; }
.changelog .new b { background-color: #BCB901; }
.changelog .removed b { background-color: #BC0E00; }
.changelog .improved b { background-color: #0486BC; }
.changelog .note b { background-color: #AEAEAE; }
.changelog .alert b { background-color: #AE5555; }
.changelog .known_bug b { background-color: #f98d02; }
.changelog .info { display: table; padding-left: 6px; }
</style>
</head>
<body>
<div id="page" class="changelog" style="padding: 5px 12px">
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.9.9.dmg">2.9.9</a>
</h4>
<h5>
30 May 2021
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Improved compatability.</span></li>
<li><span class="sticker note"><b>NOTE</b></span> <span class="info">TotalSpaces2 is not compatible with Apple Silicon Macs.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.8.12.dmg">2.8.12</a>
</h4>
<h5>
16 May 2020
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Improved 10.15.5 compatability.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.8.8.dmg">2.8.8</a>
</h4>
<h5>
9 March 2020
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Updated for 10.15.4 compatability.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.8.6.dmg">2.8.6</a>
</h4>
<h5>
5 November 2019
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a crashing issue with multiple monitors when separate spaces is turned off.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.8.5.dmg">2.8.5</a>
</h4>
<h5>
5 October 2019
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Compatibility with macOS Catalina.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">TotalSpaces2 is now notarized.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">An issue which prevented the correct permissions being granted by macOS.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed some API bugs.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Dragging windows to other screens takes note of the cursor position better.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.7.12.dmg">2.7.12</a>
</h4>
<h5>
12 March 2019
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Now works with latest releases of macOS 10.14.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Errors loading in High Sierra.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Improved stability during loading, should improve ability to load on certain hardware combinations on Mojave.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.7.6.dmg">2.7.6</a>
</h4>
<h5>
2 October 2018
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed crash of Dock plugin on startup in Mojave experienced by some machines.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an issue where the menu bar icon would not show the space number in light mode when reduced transparency is on.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an issue where app names would not show correctly in Apps preferences in Mojave in dark mode.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an issue where the menu bar icon would show incorrect space numbers when multiple monitors are being used.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.7.5.dmg">2.7.5</a>
</h4>
<h5>
23 September 2018
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Support for macOS 10.14 Mojave.</span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Notification graphic now supports dark mode.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Better messaging about SIP and installation issues.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Better messaging if Dock communication doesn't start correctly.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.6.24.dmg">2.6.24</a>
</h4>
<h5>
18 March 2018
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Mouse location is now correctly found even when using window managers that cause it to be teleported.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed visibility of windows when zooming in and out to the overview grid in 10.13.4.</span></li>
<li><span class="sticker removed"><b>REMOVED</b></span> <span class="info">The above fix required removing the Whole Grid Zoom option, unfortunately this is no longer available in High Sierra.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Hotcorner detection works better now with certain external monitor configurations.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.6.22.dmg">2.6.22</a>
</h4>
<h5>
26 February 2018
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Improved Chinese localisation.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fix failure to initialise correctly on macOS 10.13.4.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.6.21.dmg">2.6.21</a>
</h4>
<h5>
14 December 2017
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Dragging a space in the overview grid now swaps with the destination rather than reordering the spaces. The old behaviour can be turned on by the command: defaults write com.binaryage.TotalSpaces2 dragSwapsSpacesInGrid -bool NO</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fix crash when moving Chrome windows on earlier versions of OSX.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fullscreening a video in Safari or other apps could cause the system to incorrectly jump to space 1.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.6.15.dmg">2.6.15</a>
</h4>
<h5>
8 November 2017
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Windows were not being given focus when brought to the front in macOS 10.13.1. Now they are.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Overview grid now works again on Sierra when not using "displays have separate spaces" mode.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.6.13.dmg">2.6.13</a>
</h4>
<h5>
26 September 2017
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker alert"><b>ALERT</b></span><span class="info">This upgrade requires SIP to be temporarily disabled, <a href="https://totalspaces.binaryage.com/sipupgrade">see here</a>. <b>TotalSpaces2 cannot run without being able to upgrade its system component. Please make sure you have time to do this before accepting this upgrade. NOTE: If you already have SIP disabled, please just upgrade as normal, this process is not required.</b></span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Added support for MacOS 10.13 High Sierra.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Prevented changing space when Mission Control is active which caused display issues.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Improved handling of desktop in Single desktop Expose.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed crash when not using displays have separate desktops mode.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.5.4.dmg">2.5.4</a>
</h4>
<h5>
20 March 2017
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li><span class="sticker new"><b>NEW</b></span> <span class="info">TotalSpaces2 can be newly launched <a href="https://blog.binaryage.com/sip-and-installing-total-apps">with System Integrity Protection fully enabled</a>.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">SUFeedURL related crash.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Black screen issues during transitions in Sierra 10.12.4.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Improved updater version and security.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Background image rendering in the overview grid when using the Lo res setting.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">You can no longer accidentally activate mission control or desktop expose by gestures or hotcorners when using the overview grid.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Much better launch time of TotalSpaces2.app after mac has been rebooted.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">TotalFinder windows can now be dragged correctly in the overview grid.</span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Added support for held modifiers with Mouse button triggers.</span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Added support for held modifiers with Hotcorner triggers.</span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Added Mouse trigger for "Single desktop exposé" action.</span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Added "Switch to previous space" action with hotkey, mouse button, and hotcorner triggers.</span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Added a conflict checker when assigning a Mouse button trigger.</span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Added Menu pane to Preferences with a handful of new preferences.</span></li>
<li><span class="sticker new"><b>NEW</b></span> <span class="info">Added "Single desktop exposé" and "Instant exposé" to the menu.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Improved App and Toolbar icons.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Added a handful of helpful labels to the Preferences.</span></li>
<li><span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Added support for "Single desktop exposé" on OS X 10.9 Mavericks.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed hotkeys not working after first being set.</span></li>
<li><span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed "Change space by moving mouse to the edge of the screen" not triggering on the right edge when using a tablet for mouse input.</span></li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.4.9.dmg">2.4.9</a>
</h4>
<h5>
1 October 2016
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Crash when rearranging Spaces in the overview grid on 10.11 and prior.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.4.8.dmg">2.4.8</a>
</h4>
<h5>
27 September 2016
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Compatibility with 10.9 and 10.10.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.4.6.dmg">2.4.6</a>
</h4>
<h5>
12 September 2016
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Added MacOS Sierra compatibility (still requires a modification to <a href="http://totalspaces.binaryage.com/elcapitan">System Integrity Protection</a>).</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.3.11.dmg">2.3.11</a>
</h4>
<h5>
24 February 2016
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">It was not possible to select All Spaces in app assignments for apps other than the top one.</span>
</li>
<li>
<span class="sticker new"><b>IMPROVED</b></span> <span class="info">When items are added in Apps prefs they are assigned to the current space instead of all spaces.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.3.9.dmg">2.3.9</a>
</h4>
<h5>
3 December 2015
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Overview grid can no longer be triggered if lock screen is showing.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">For technical users, TotalSpaces2 can be run with SIP enabled by <a href="http://totalspaces.binaryage.com/elcapitan-with-sip">following this procedure</a>.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Spaces in the installation path of TotalSpaces2 no longer confuse the license manager.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.3.6.dmg">2.3.6</a>
</h4>
<h5>
22 September 2015
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">El Capitan compatibility (WARNING: only with SIP setting modified; <a href="http://totalspaces.binaryage.com/elcapitan">see here for more details</a>)</span>
</li>
<li>
<span class="sticker removed"><b>NOTE</b></span> <span class="info">TotalSpaces2 WILL NOT WORK on El Capitan on a normally configured Mac <a href="http://totalspaces.binaryage.com/elcapitan">see here for more info</a>)</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Allow numeric keypad keys to be set as hotkeys without modifier keys.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Permit ESC and DELETE keys with modifiers as hotkeys.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Do not alert about hotkey being in use if system hotkey is defined but disabled.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Command line preference to turn on old style notification graphic. defaults write com.binaryage.TotalSpaces2 oldStyleNotification -bool YES</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Improve trackpad handling, should fix rare method cache corrupt crashes.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Rare bug causing space switch commands from the keyboard to be ignored.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.2.20.dmg">2.2.20</a>
</h4>
<h5>
19 April 2015
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Spiffy new space change notification graphic with animation.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Single desktop exposé mode (Yosemite only).</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Better layout of windows when using exposé.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">TotalSpaces2 now warns you if spaces cannot be added because they exceed the system limits (approx 16).</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Possible crash when unplugging a display.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Better synchronisation with TotalSpaces2 API clients when adding and removing spaces.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Issue where hotkeys may not be registered correctly if the layout had changed.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Danish translation.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Reduced the chance of spurious space changes when changing space quickly using the slide transition.</span>
</li>
<li>
<span class="sticker removed"><b>REMOVED</b></span> <span class="info">Removed growl support due to some instability. Use the API instead.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Option to disable notification graphic animations.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">API to move arbitary windows to new positions.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Some small memory leaks.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Less chance that grid will become briefly visible before zoom to grid animation starts.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.2.9.dmg">2.2.9</a>
</h4>
<h5>
1 October 2014
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Full compatability with OSX Yosemite (GM).</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Notification graphic now dismisses correctly when Sticky Keys is on.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Layout of preferences in other languages than English.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Fixed some German translations.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed possible crash in app preferences.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Corrected background of dashboard space under Yosemite in the overview grid.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">TotalSpaces2 is now packaged in a dmg and no longer needs to run the installer each time it is updated.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Better prevention of switchbacks caused by slow to activate apps.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">System generated space changes are now reported to apps that use the API.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.2.6.zip">2.2.6</a>
</h4>
<h5>
11 August 2014
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info"></a>Option to lock grid switching together when using multiple monitors in Layout preferences.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info"></a>New defaults setting to turn off icons in the grid. defaults write com.binaryage.TotalSpaces2 hideSpaceIcons -bool YES.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info"></a>Incorrect positioning of windows after dragging between screens.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info"></a>It was possible that TotalSpaces2 would ignore newly plugged in screens.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info"></a>Mouse-edge space switches can no longer be triggered when the screen is locked.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Yosemite compatibility, see <a href="http://discuss.binaryage.com/t/totalspaces2-yosemite-status/2160">here for discussion</a>.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New defaults setting for swipes/hotkeys to change the active screen rather than the one with the mouse in. defaults write com.binaryage.TotalSpaces2 useActiveScreenForSwitching -bool YES</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Adds hjkl keys for navigation in the overview grid for vim users.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Issue where trackpad/swiping could work incorrectly when the lid was closed.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Italian translation.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Corrections to Chinese translation.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.1.10.zip">2.1.10</a>
</h4>
<h5>
6 May 2014
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Windows will adjust their position automatically if you drag them slightly too high in the overview grid.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Individual space hotkeys are now shown in the menu.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">TotalSpaces2 API is now available. See <a href="https://github.com/binaryage/totalspaces2-api/tree/master/ruby">the ruby bindings</a>.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">You can now assign a mouse button to instant exposé.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Possible but rare deadlock when exiting the grid.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Possible failure to connect with Dock on startup.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Hotcorners are no longer triggered when chinese/japanese character recognition is active.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Prevention of 5 finger fluid space change gestures when 4 finger swiping enabled.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">When the status bar hidden setting is on, re-launching the application now just shows the preferences rather than changing the setting.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Retina graphics for preferences tab icons. Better late than never.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Cmd-Q no longer quits TotalSpaces when the preferences or about dialog is showing.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Bug where MS Office windows did not move between spaces correctly.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.0.17.zip">2.0.17</a>
</h4>
<h5>
8 January 2014
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Compatability with Mavericks 10.9.2.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Changing dock defaults plus restarting Dock.app should no longer confuse TotalSpaces2.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">You can no longer swipe between desktops whilst the screen is locked.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">It is no longer possible to add an arbitary number of rows in layout preferences.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Possible hang in Dock due to deadlock when rendering application icons in the overview grid.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Should TotalSpaces notice that Dock appears to be hung it will recover by restarting it.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Option to include pre-releases of TotalSpacecs2 in your auto-updates.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Activating the overview grid via a top hotcorner in fullscreen mode no longer causes the grid to immediately cancel.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Adds Chinese mandarin and Taiwanese localizations.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Windows no longer disappear from the overview grid when the desktop background changes if spaces spans displays mode is turned on.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Command line setting to only recognise space change hotkeys if the modifier keys on the right side of the keyboard are used.
<code>defaults write com.binaryage.TotalSpaces2 rightSideDirectionModifierKeysOnly YES</code></span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Moving Word windows using the Move window hotkey now works better.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.0.11.zip">2.0.11</a>
</h4>
<h5>
19 November 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Rare threading bug that could cause a crash.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.0.10.zip">2.0.10</a>
</h4>
<h5>
17 November 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Threading bug that could sometimes crash the dock when exiting the overview grid.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">For keyboard jockeys, you can now tab between the displays in the overview grid.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">TotalSpaces2 now disables the background slide transition when taking apps to fullscreen if Use transitions is turned off.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">TotalSpaces gets colorful! New command line setting to change the color of the menu bar icon. Example: defaults write com.binaryage.TotalSpaces2 menuBarIconColor "094be5"</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">When using spaces span displays mode it is not supported by OSX to move the dashboard space from the top left position. TotalSpaces now disallows this.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New defaults setting to reduce caching of the overview grid if slowdown of Mail.app is experienced. defaults write com.binaryage.TotalSpaces2 lowerMemoryUsage YES</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.0.7.zip">2.0.7</a>
</h4>
<h5>
31 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">The custom hotkeys prefs for changing space and moving windows could sometimes interfere with each other.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">When controlling TotalSpaces hotkeys from another application (such as BTT) the notification graphic no longer becomes stuck.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.0.5.zip">2.0.5</a>
</h4>
<h5>
30 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New hotkeys preferences to allow custom settings for moving space for those that do not wish to use the arrow keys.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Possible crash when unplugging monitors.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">The notification graphic would show an incorrect layout when a fullscreen app had been quit.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">You can now use a wider variety of hotkeys, including fn-arrows.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Growl support.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Swedish localization.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.0.2.zip">2.0.2</a>
</h4>
<h5>
23 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Circulating left from space 1 in "Next row" mode would go to the bottom right space rather than the highest numbered space.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where changed space names would not get updated in the menu.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Per space hotkeys are now correctly labelled with row and column in the layout preferences popover.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Unoccupied grid locations are now correctly shown greyed out when removing spaces.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Potential (dashed) spaces in the layout view now always draw correctly.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.0.1.zip">2.0.1</a>
</h4>
<h5>
23 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Version check fixed - TotalSpaces2 can not now be incorrectly installed on earlier versions of OSX.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">TotalSpaces2 now uninstalls TotalSpaces from the startup items if it is present.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-2.0.0.zip">2.0</a>
</h4>
<h5>
22 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Dragging an item to a space on another display via the overview grid (using a hotcorner) now works correctly.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Opening layout preferences before desktop information had become available could cause the app to hang.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">You can now click on potential (dashed) spaces in the layout view to adjust the exact number that will be added.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Better exception handling and recovery.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-0.9.14.zip">0.9.14</a>
</h4>
<h5>
18 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">If a previous licence for TotalSpaces is detected, an upgrade button will be shown instead of a buy button.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Changing the desktop picture could cause the windows for that space to become hidden in the overview grid.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Sometimes the desktop picture in the overview grid would not update correctly.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">When setting a per-space hotkey, the hotkey recorder is now labelled with the position of the space because that's actually where the hotkey goes to (not the specific space).</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-0.9.13.zip">0.9.13</a>
</h4>
<h5>
16 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed crashing bug in concurrency code.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug that could cause the overview grid to not show.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-0.9.12.zip">0.9.12</a>
</h4>
<h5>
14 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Registration enabled ready for release. However you can continue to use betas without registration until 5 November.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug in per-space hotkeys that prevented them working on secondary screens.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-0.9.11.zip">0.9.11</a>
</h4>
<h5>
12 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Additional protection so that a fault in the TotalSpaces runloop won't crash the dock.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="https://downloads.binaryage.com/TotalSpaces2-0.9.10.zip">0.9.10</a>
</h4>
<h5>
9 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an issue where the overview grid could become unresponsive if a second display was unplugged whilst it was showing.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where non-slide transitions would show incorrectly on the main display when in displays have separates spaces was turned off.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">TotalSpaces2 now automatically disables Mission Control's auto rearrange spaces mode because it is incompatible with having a fixed grid.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">TotalSpaces2 no longer forces the interface language to English.</span>
</li>
</ul>
</div>
</div>
<div class="release">