-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangelog.html
1135 lines (1089 loc) · 52.9 KB
/
changelog.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 TotalSpaces?</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 .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="http://downloads.binaryage.com/TotalSpaces-1.2.11.zip">1.2.11</a>
</h4>
<h5>
18 October 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Disallow installing TotalSpaces on Mavericks (because it won't work), use TotalSpaces2.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Added Croatian translation.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.2.10.zip">1.2.10</a>
</h4>
<h5>
10 August 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Circulation fixed for certain cases when using swipe to change space.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.2.9.zip">1.2.9</a>
</h4>
<h5>
4 June 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">There is less delay between spaces when chaining space switches together.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">TotalSpaces no longer recognises swipes when the alt/option key is held down because some apps use this (eg Xcode, Chrome).</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Pressing the overview grid shortcut several times quickly no longer results in a stuck image for the current space in the grid.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed crash when accessing the overview grid under certain circumstances when full screen apps have changed.</span>
</li>
<li>
<span class="sticker fixed"><b>IMPROVED</b></span> <span class="info">Localisation additions and improvements.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.2.2.zip">1.2.2</a>
</h4>
<h5>
3 May 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">There is now an option to have an animated zoom in and out of the overview grid if you are using Mountain Lion.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Hold SHIFT down whilst hovering above a window in the overview grid to see a zoomed version of that window - handy to see which window is which.</a></span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Space names are now shown in the overview grid.</a></span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Added a hotcorner setting for activating the overview grid with exposé.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Rather than having a fixed setting, TotalSpaces now allows you to choose whether to drop a window in a new screen position or to keep it's original position by using the ALT(Option) key when dragging windows between desktops in the overview grid.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">And if you don't like the way it works, there's a new command line setting to change the default action when dragging windows in the grid: defaults write com.binaryage.TotalSpaces placeWindowsAsDroppedByDefault NO</a></span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New setting to automatically check for updates in general preferences.</a></span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">There is no longer a space-to-space transition when you leave the overview grid.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">The space transitions now always match the direction you commanded even when circulating.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">The hotcorner settings now apply to all corners in a multi screen setup, not just the furthest left or right ones.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Clicking on a dock folder tile to close a previously opened stack or grid no longer results in it immediately re-opening.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New growl notification when you attempt to change desktop but are at the edge and cannot do so in the requested direction.</a></span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">The icon size for full screen apps in the overview grid is now limited to stop them being too big when small grids are used.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">You can now assign the letter A with a modifier key as a hotkey if you wish.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">TotalSpaces now supports access via an API. If you are a developer, you may be interested in this. Read more <a href="https://github.com/binaryage/totalspaces-api">on github.</a></span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">TotalSpaces no longer forces use of the discrete graphics on mid 2010 MacBook Pros running OSX 10.8.3.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">TotalSpaces no longer allows triggering the overview grid from a hotcorner when a full screen game such as Starcraft is active.</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">German, Turkish, Swedish, Czech translations. New translations, and fixes/corrections welcome - <a href="https://github.com/binaryage/totalspaces-i18n">see here.</a></span>
</li>
<li><span class="sticker note"><b>NOTE</b></span><span class="info">Additional changes in 1.2.2 (vs 1.2.0):</span></li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Zoom and space transitions now work properly when MSWord is present on more than one space.</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Apps preferences now work correctly when there are multiple spaces with the same name.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.1.3.zip">1.1.3</a>
</h4>
<h5>
20 January 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an error in the licence registration code that caused it to work unreliably for a small number of users</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an issue that prevented SizeUp users from moving windows to the left and right spaces on Mountain Lion</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.1.0.zip">1.1</a>
</h4>
<h5>
17 January 2013
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">You can now assign hotkeys to each individual grid space in Layout preferences</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">4th and 5th mouse buttons are now supported for opening the overview grid</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New hotkey to go directly to expose mode in the overview grid without having to press space</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">When Dock restarts (sometimes on wake or with monitor change) the space names are now correctly restored</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New explanatory splash screen on first launch</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Added Reveal and Fade transitions</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">App assignment prefs now more logically sort by app name and not bundle id</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">You can now press TAB to move between the grid and the full screen apps in the overview grid</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">More robust monitoring of TS/Dock communications resulting in faster restore of functionality should dock restart</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Highlight of active space in the overview grid is now a bit more obvious</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">TotalSpaces no longer causes shutdown to fail to complete on some systems</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">TotalSpaces could occasionally revert to ordinary apple transitions when mission control defined space shortcuts were used exclusively</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">TotalSpaces will no longer incorrectly show a transition when attempting to drag a window to a fullscreen space (which is not a thing you can do)</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New command line preferences for side timer values in seconds: sideSwitchDelay (0.1 - 3.5 default:1.1), sideSwitchDelayWithModkeys (0.1 - 3.5 default:0.3), sideSwitchRepeatDelay (0.5 - 3.5 default:1.0)</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.0.5.zip">1.0.5</a>
</h4>
<h5>
3 December 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Activating expose in the overview grid with many windows present (> 20) on a single space caused excessive CPU and delay</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.0.4.zip">1.0.4</a>
</h4>
<h5>
27 November 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">The notification graphic stays visible for as long as you hold the modifier keys down when you change space using a hotkey</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">The default hotkeys are now SHIFT-ALT-arrows and SHIFT-ALT-space so as not to conflict with the default mission control hotkeys</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed crash or freeze when Mission Control has the same hotcorner set as TotalSpaces. It's still not a useful configuration though!</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Status menu no longer shows incorrect space ticked when an app switch caused a space change (on Lion)</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Trackpad left and right swiping gestures are now correctly reset to match full screen swiping setting when TotalSpaces is quit</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Eliminated occasional jerkiness or visible wobble when switching spaces with transitions turned off</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Possible crash when overview grid was activated two times very quickly in succession</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Reduced delay and occasional jitter when selecting a new space from the overview grid with transitions turned off</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.0.1.zip">1.0.1</a>
</h4>
<h5>
25 October 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">An incorrect direction was be shown by the arrow in the notification graphic when changing space via the menu</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Changing space via the menu now correctly observes the notification on/off setting</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">When selecting a space from the overview grid, the frontmost app window is now activated</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Certain windows that shouldn't be shown in the overview grid are no longer shown (avoids presence of blank window when using expose when running Plex media server)</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-1.0.0.zip">1.0.0</a>
</h4>
<h5>
23 October 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">You can now name your spaces by control-clicking the space buttons in layout preferences. The space names appear in the TotalSpaces menu, on the notification grid, and in Mission Control (but not on the overview grid).</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">You can now assign an app to all spaces from TotalSpaces app preferences</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Added a menu item to trigger the overview grid</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Added a command line setting for notification graphic fade duration in seconds, for example defaults write com.binaryage.TotalSpaces notificationDuration 1.2</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">The app name is now shown in the TotalSpaces menu for fullscreen spaces</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">The notification graphic is now larger to improve legibility of space names</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">When running with more than one monitor the correct desktop background is now shown for full screen spaces in the overview grid on the screen that is not used by the app</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Growl desktop change notifications are now turned off by default, but can be enabled on the command line if needed with defaults write com.binaryage.TotalSpaces sendGrowlNotifications YES</span>
</li>
<li>
<span class="sticker note"><b>NOTE</b></span> <span class="info">TotalSpaces is now limited to a 14 day trial after which you must register. The trial starts when you first used TotalSpaces v1.0.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.11.4.zip">0.11.4</a>
</h4>
<h5>
2 October 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Dragging windows to the sides of the screen to move them between desktops now works consistently with the TotalSpaces grid</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where adding certain apps to the app assignments could cause the preferences to crash</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where opening an app when already on the space it is assigned to could cause the notification graphic to show</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where the overview grid would not show in 10.7.3-4 with certain configurations of background pictures</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an issue where the trackpad monitoring would stop working causing voluminous log messages</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Further improved swipe detection to prevent more cases of accidental triggering of space changes</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Full screen app icons are shown a bit smaller on the grid overview so that more of the window can be seen</span>
</li>
<span class="sticker note"><b>NOTE</b></span> <span class="info">The beta trial period for TotalSpaces 0.11.4 expires on 1st November 2012.</span>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.11.3.zip">0.11.3</a>
</h4>
<h5>
24 September 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed app-switch triggered transitions to correctly respect transitions disabled and notification disabled settings</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where starting an app on the same space it was assigned to would cause a spurious transition</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where growl notifications would not be sent for app-switch triggered transitions</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.11.2.zip">0.11.2</a>
</h4>
<h5>
23 September 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Any full screen apps that are not in your grid are now optionally shown in a row underneath the grid in the overview</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">You can now set a hotcorner to use to activate expose mode when viewing the overview grid</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Expose mode in the overview grid now displays windows in proportional sizes for easier recognition</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Full screen app icons are now centered</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed UI glitches in About / Registration windows on Mountain Lion</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Three finger swiping is less easy to trigger accidentally</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where swiping whilst the notification center was open could cause it to get stuck</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where in some circumstances moving left from a full screen space to another did not work correctly</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where some incorrect shadows could have been drawn in the overview grid</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an issue where when an app opens directly to full screen the new full screen desktop would not be switched to</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed an issue on Mountain Lion where opening the overview grid over the dashboard space would immediately cause a space change to space 1</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a crash caused by the windows server returning an error in rare circumstances</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed a bug where full screen apps could show incorrect icons if they had been moved in mission control</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.11.0.zip">0.11.0</a>
</h4>
<h5>
17 August 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Select which kind of background images to use in the overview grid - hi res images, blurred, or no images. The latter two settings are faster.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Quicker alt-tabbing: the delay TotalSpaces imposed between activations of alt-tab is no longer needed</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Hotkeys now trigger action on key down rather than key up for faster action</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Option to trigger space changes by moving the mouse to the edge of the screen, with or without modifier keys (experimental)</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Overview grid can be triggered by a separate app (in the same way Mission Control can be). <a href="http://downloads.binaryage.com/TotalSpacesGrid.app.zip">App is a separate download</a>.</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">The transition speed slider now allows a maximum setting 10% faster than previously</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Exited full screen apps no longer show in the overview grid</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Mouse will no longer get out of sync with window position when dragging windows in the overview grid</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Concurrency related crash when swiping</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Trackpad related crash that could occur on wake</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Sometimes the hotkey for the overview grid would be forgotten when TotalSpaces restarts</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.10.8.zip">0.10.8</a>
</h4>
<h5>
3 August 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Pressing a number key when in the overview grid will directly go to that numbered space</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Normal up and down swiping gestures to activate mission control are no longer disabled by TotalSpaces when there is only one row of spaces configured</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Some windows that shouldn't be able to be dragged between spaces cannot now be moved</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Dock component crash in Mountain Lion that caused blank overview grid</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.10.6.zip">0.10.6</a>
</h4>
<h5>
25 July 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Advanced settings giving the ability to place full screen apps in the TotalSpaces grid. Your grid can now be made of desktops and filled up with full screen apps</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">TotalSpaces no longer prevents switching to the integrated GPU, which should help with battery life</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Hidden preference to turn off Growl notifications if you need (defaults write com.binaryage.TotalSpaces sendGrowlNotifications NO)</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Windows server crash on activation of overview grid with more than around 6 desktops or multiple monitors (but downside is that desktops are shown lower resolution now)</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Incorrect desktop was reported after activating grid after using apple swipe to change space</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Notification no longer incorrectly shows when attempting to change space in apple expose mode</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Multi-monitor layouts with main screen higher than secondary screen now display properly in the overview grid</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Show desktop gesture is no longer prevented from working when four finger swiping is enabled</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fixed uploading of crash reports via CrashWatcher</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Mountain Lion GM (final) support</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.10.3.zip">0.10.3</a>
</h4>
<h5>
20 June 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Exposé mode when in overview grid - activate with the space bar</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Improved caching in overview grid for better performance</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">It's less easy to drag windows accidentally when clicking in the overview grid</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Can trigger overview grid with 3rd button for 3 button mouse users</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Overview grid background is no longer translucent for better performance, better clarity, and to prevent accidental triggering of Dock functions</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Activating the grid no longer causes 1Password or similar apps to lock</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Latest Mountain Lion beta support (please use the latest Apple beta if you wish to try TotalSpaces on Mountain Lion)</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Cursor always reverts to arrow in overview grid, and hover texts will no longer appear stuck</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Trackpad gestures are now recognised on Air hardware after waking from sleep</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">3 and 4 finger swiping should no longer trigger swipe events in browser windows</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">3 and 4 finger swiping no longer requires trackpad preferences actions to be disabled (except for 3 finger drag)</span>
</li>
<li>
<span class="sticker known_bug"><b>KNOWN BUG</b></span> <span class="info">Switching spaces does not work in Mission control / Expose / Desktop expose, but the notification indicator shows anyway. This will be fixed in the next release.</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.10.0.zip">0.10.0</a>
</h4>
<h5>
4 June 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New overview grid implementation including live windows and significantly improved performance</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Multi-monitor support in the overview grid</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Layout prefs now allows up to 5 columns</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fast multiple desktop changes should always end on the intended desktop now</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">4 and 3 finger swipe is now allowed, with a warning when Trackpad preferences could conflict</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Better detection of magic trackpad and magic mouse on wakeup</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Swipe direction can now be inverted</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Better Mountain Lion support</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.9.10.zip">0.9.10</a>
</h4>
<h5>
16 May 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Registration reminder should not show during beta period</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.9.9.zip">0.9.9</a>
</h4>
<h5>
15 May 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New preferences pane to assign apps to desktops</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">5 fingered swipe to navigate between desktops (looking at 3 or 4 finger for future versions)</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Desktop numbers are shown in grid in layout preferences</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Growl events are now named TotalSpacesChange and TotalSpacesCirculated</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Vertical circulation no longer still operates if circulation is turned off</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Clearer status bar icon</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Notification now fades properly when transitions are set slow</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Experimental Mountain Lion support (some known issues)</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/TotalSpaces-0.9.8.zip">0.9.8</a>
</h4>
<h5>
26 April 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">ReSpaceApp is now called TotalSpaces</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Navigation directly to desktops from the status item menu</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">TotalSpaces now offers to remove excess desktops for you when you have too many for your grid size</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Users can now choose to have just one space if they do not need a grid</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<a href="http://downloads.binaryage.com/ReSpaceApp-0.9.7.2.mpkg.zip">0.9.7.2</a>
</h4>
<h5>
16 April 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Crash on startup</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">New full screens are now noticed immediately</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Full screen apps and dashboard now appear in the notification grid (when changing desktops)</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<span>0.9.7.1</span>
</h4>
<h5>
14 April 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Crash in select grid code</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Crash in Dock when reading active windows</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Select grid does not retain views of windows that are not on the main screen any more (could happen when switching monitors)</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Some performance improvement in select grid</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Notification graphic displays more reliably</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">ReSpaceApp attempts to recover if transitions stop working due to a display mode problem (usually happens after switching monitors)</span>
</li>
<li>
<span class="sticker known_bug"><b>KNOWN BUG</b></span> <span class="info">Windows can be dragged by portions that are not visible in select grid</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Activating select grid closes exposé mode to avoid inconsistencies</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<span>0.9.7</span>
</h4>
<h5>
11 April 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Drag and drop windows in the select grid</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">New preferences panel</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Status bar item can be hidden</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Hot corner support for launching select grid</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Navigation to full screen apps and dashboard is now supported</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Windows that are no longer visible are not shown in the select grid</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Growl support, Growl notifications can be used for sound effects</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Brighter outline for selected desktop in select grid</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Reduced size of notification grid on large monitors</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Re-trigger select grid hotkey causes it to disappear if it is showing</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Code injection failed to work under certain configurations</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">ReSpaceApp no longer shows the incorrect desktop number if desktops are re-ordered in mission control</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">Miscellaneous stability, performance and memory usage enhancements</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fix bug where unnamed spaces would cause various functions to fail</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Fix bug where hotkeys could not be removed</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Crash watcher to directly report bugs</span>
</li>
<li>
<span class="sticker note"><b>NOTE</b></span> <span class="info">The beta trial period has been extended by one month to end June 1st 2012</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<span>0.9.6</span>
</h4>
<h5>
5 March 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Memory leak in select grid</span>
</li>
</ul>
</div>
</div>
<div class="release">
<div class="titlebox">
<h4>
<span>0.9.5</span>
</h4>
<h5>
4 March 2012
</h5>
</div>
<div class="infobox">
<ul class="changes">
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Bird's eye view of the grid of desktops accessible through a new hotkey assignment ('Select')</span>
</li>
<li>
<span class="sticker new"><b>NEW</b></span> <span class="info">Full screen app desktops are now recognised by ReSpaceApp, and can be navigated to if circulation is turned off</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">You can insist on certain key combinations even if the system reports them as in-use</span>
</li>
<li>
<span class="sticker improved"><b>IMPROVED</b></span> <span class="info">If ReSpaceApp crashes, the Dock component will not continue to ask for space transitions, but will disable itself until ReSpaceApp is restarted</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">ReSpaceApp no longer crashes if it's started when only one desktop exists</span>
</li>
<li>
<span class="sticker fixed"><b>FIXED</b></span> <span class="info">Expose mode is now automatically closed if a space switch is done when Expose is in use</span>
</li>
<li>