-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathNEWS
3114 lines (2587 loc) · 116 KB
/
NEWS
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
Version 3.54.0
==============
- Add basic color-scheme support. (!36)
- Updated translations.
Version 3.52.0
==============
- Updated translations.
Version 3.50.0
==============
- Updated translations.
Version 3.49.1
==============
- Remove window shading keybinding.
- Updated translations.
Version 3.46.1
==============
- Improve switching between windows of same application. (#26)
- Fix crash when background pixmap has non-default depth. (#34)
- Unminimaze child window together with main window. (#31)
- Updated translations.
Version 3.46.0
==============
- Fix crash minimizing parent window. (#31)
- Fix fullscreen for Wine windows. (#33)
- Updated translations.
Version 3.44.0
==============
- No changes.
Version 3.43.1
==============
- Updated translations.
Version 3.42.0
==============
- Enable XPresent compositor. (#13)
- Fix regression in opacity handling. (#19)
- Fix tooltip style. (#25)
- Updated translations.
Version 3.40.0
==============
- Fix few memory leaks.
- Updated translations.
Version 3.38.0
==============
- Fix segfault when using META_DEBUG_NO_SHADOW=0. (#12)
- New “compositor” setting and commandline option. (!15)
- Updated translations.
Version 3.37.1
==============
- Don't append "(as superuser)" to window title for flatpak apps. (#9)
- Remove shade, stick, above and appmenu buttons. (!10)
- Fix memory leak in MetaGroup.
- Remove reduced-resources setting. (!6)
- Remove unused metacity-window-demo. (!8)
- Remove theme docs. (!7)
Version 3.36.1
==============
- Fix fullscreen regression. (#8)
- Do not unfocus on new window.
- Updated translations.
Version 3.36.0
==============
- Fix fullscreen regression.
- Remove some dead code.
Version 3.35.92
===============
- Use ARGB visual for window frame.
Version 3.35.1
==============
- Add support for _GTK_WORKAREAS_Dn. (!3)
- Add support for _GNOME_WM_STRUT_AREA.
- Clip shape region to window size. (#627879)
- Don't move focus to fullscreen window that is on other monitor.
- Fix blurry titlebar font. (#2)
- Fix shadow regression with Metacity theme.
- Fix some memory leaks.
- Updated translations.
Version 3.34.0
==============
- Fix possible crash in compositor.
Version 3.33.92
===============
- Added support for _GTK_SHOW_WINDOW_MENU. (#5)
- Fix memory leak. (#7)
- Updated translations:
Asier Sarasua Garmendia (eu), Jordi Mas (ca).
Version 3.32.0
==============
- Convert WM_NAME and WM_CLASS to UTF-8.
- Updated translations:
Nathan Follens (nl), Piotr Drąg (pl).
Version 3.30.1
==============
- Improve focus tracking
Version 3.30.0
==============
- Fix build warnings
- Remove Solaris Xinerama support
- Updated translations:
Dingzhong Chen (zh_CN).
Version 3.28.0
==============
- Fix build warnings
- Fix missing shadow from some windows (#789251)
- Updated translations:
Ask Hjorth Larsen (da), gogo (hr), Joe Hansen (da), Kristjan SCHMIDT (eo).
Version 3.26.0
==============
- Fix memory leak when changing theme (#788078)
- Fix crash when struts change during grab operation (#603632)
- Updated translations:
Anders Jonsson (sv), Balázs Úr (hu), Мирослав Николић (sr, sr@latin).
Version 3.25.2
==============
- Fix appmenu button size in metacity-theme-viewer
- Add appmenu to button layout in metacity-theme-viewer
- Handle legacy fullscreen requests (#781946)
- Updated translations:
Daniel Mustieles (es), Jordi Mas (ca), Marek Černocký (cs).
Version 3.25.1
==============
- Fix drawing with _NET_WM_WINDOW_OPACITY.
- Change repaint priority.
- Manage override-redirect windows.
- Add option to change scale in metacity-theme-viewer.
- Updated translations:
Anders Jonsson (sv), Balázs Úr (hu), Gianvito Cavasoli (it),
Inaki Larranaga Murgoitio (eu), Kukuh Syafaat (id), Mario Blättermann (de),
Piotr Drąg (pl), Rafael Fontenelle (pt_BR).
Version 3.24.0
==============
- Improve handling of tracking the old focused window during restart
(Owen W. Taylor; #766243)
- Send synthetic ConfigureNotify events (Alberts Muktupāvels; #582580)
- Updated translations:
Andika Triwidada (id), Mario Blättermann (de),
Мирослав Николић (sr, sr@latin).
Version 3.23.90
===============
- Fix tooltip style (Alberts Muktupāvels; #772984)
- Fix crash in meta_group_new (Alberts Muktupāvels; LP:#1638153)
- Fix window stacking order in compositor (Alberts Muktupāvels; LP:#1614050)
- Ignore deprecation warnings (Alberts Muktupāvels)
- Updated translations:
Ask Hjorth Larsen (da), Daniel Mustieles (es), Enrico Nicoletto (pt_BR),
Gianvito Cavasoli (it), Josef Andersson (sv), Marek Černocký (cs),
Mario Blättermann (de), Piotr Drąg (pl), Theppitak Karoonboonyanan (th),
Tiago Santos (pt).
Version 3.22.0
==============
- Use shadow from GTK+ theme (Alberts Muktupāvels)
- Fix pressed state of menu button (Alberts Muktupāvels; #394787)
- Fix titlebar repaint (Alberts Muktupāvels; #769049)
- Fix small memory leak in compositor (Alberts Muktupāvels)
- Improved HiDPI support (Alberts Muktupāvels, Giovanni Campagna)
- Fix crash when removing secondary monitor (Alberts Muktupāvels; #766156)
- Fix window resizing using titlebar (Alberts Muktupāvels; LP:#1596574)
- Updated translations:
Anders Jonsson (sv), Andika Triwidada (id), Balázs Meskó (hu),
Daniel Mustieles (es), Marek Černocký (cs), Мирослав Николић (sr, sr@latin),
Piotr Drąg (pl), Rafael Fontenelle (pt_BR).
Version 3.20.0
==============
- Allow minimizing windows which don't advertise support for it. (Jasper
St. Pierre)
- Metacity follows Mutter and by default will use GTK+ theme. It is still
possible to use Metacity themes by adjusting settings. (Alberts Muktupāvels)
- Previously shipped Metacity themes has been removed. (Alberts Muktupāvels)
- Metacity theme settings now is under new GSettings schema -
org.gnome.metacity.theme. (Alberts Muktupāvels)
- Metacity now has new library - libmetacity. (Alberts Muktupāvels)
- New Metacity theme viewer - can be used to preview both Metacity and GTK+
themes. (Alberts Muktupāvels)
- Scale window decorations on HiDPI displays, based on mutter. (Alberts
Muktupāvels, Florian Müllner, Iain Lane)
- Updated translations:
Aurimas Černius (lt), Balázs Meskó (hu), Balázs Úr (hu),
Cédric Valmary (oc), Daniel Mustieles (es), Gábor Kelemen (hu),
Josef Andersson (sv), Luis Enrique Ortega Rojas (es), Marek Černocký (cs),
Mario Blättermann (de), Марко Костић (sr), Милош Поповић (sr@latin),
Мирослав Николић (sr, sr@latin), Muhammet Kara (tr), Piotr Drąg (pl),
Rafael Fontenelle (pt_BR).
Version 3.18.1
==============
- Updated translations:
Rafael Fontenelle (pt_BR), Trần Ngọc Quân (vi).
Version 3.18.0
==============
- Fix adwaita theme fallback colors. (Balló György)
- Fix crash when using Alt-Tab to switch widnows with alt-tab-thumbnails
enabled. (Alberts Muktupāvels)
- Fix visual artifacts after unmaximizing Google Chrome / Chromium
window. (Alberts Muktupāvels)
- Ported away from gnome-common. (Alberts Muktupāvels)
- Updated translations:
Balázs Úr (hu), Daniel Mustieles (es), Marek Černocký (cs), Piotr Drąg (pl),
Sveinn í Felli (is), Yosef Or Boczko (he).
Version 3.17.2
==============
- Don't grab keybinding if devirtualization failed. (Alberts Muktupāvels)
- Use button layout from Gtk/DecorationLayout. (Alberts Muktupāvels)
- Updated translations:
Akom Chotiphantawanon (th), Marek Černocký (cs), Piotr Drąg (pl).
Version 3.17.1
==============
- Store keybindings dynamically. (Based on mutter)
- Add toggle-tile-left/right keybindings. (Based on mutter)
- Fix missing background color in metacity themes. (Alberts Muktupāvels)
- Updated translations:
Jordi Mas (ca).
Version 3.16.1
==============
- Don't grab keybindings wihtout modifiers. (Alberts Muktupāvels)
- Fix unfullscreening. (Owen W. Taylor)
- Fix missing border in GTK+ theme for windows that are not resizable. (Alberts
Muktupāvels)
Version 3.16.0
==============
- Added Adwaita and HightContrast metacity themes as they were removed from
gnome-themes-standart. (Alberts Muktupāvels)
- Metacity now use theme setting key from org.gnome.metacity schema not
org.gnome.desktop.wm.preferences. (Alberts Muktupāvels)
- Added support for GTK+ theme. Set theme to empty sting to enable GTK+
theme. Almost everything here was adapted from mutter. (Mutter developers,
Alberts Muktupāvels)
- Added support for invisible borders. Again most work are based on mutter.
(Mutter developers, Alberts Muktupāvels)
- Added invisible_border to metacity theme. Default is 10px extra space
for resize cursor area. (Alberts Muktupāvels)
- Added back window thumbnails in alt-tab window as optional option. Can be
enabled setting alt-tab-thumbnails to true under org.gnome.metacity.
(Alberts Muktupāvels)
- Better support for _GTK_FRAME_EXTENTS. (Alberts Muktupāvels)
- Updated translations:
Balázs Úr (hu), Cheng-Chia Tseng (zh_TW), Daniel Mustieles (es),
Marek Černocký (cs), Muhammet Kara (tr), Piotr Drąg (pl),
Rafael Ferreira (pt_BR), Samir Ribic (bs), Yosef Or Boczko (he).
Version 3.15.2
==============
- Fix deprecated warnings. (Alberts Muktupāvels)
Version 3.14.3
==============
- Use correct icon name [image-missing] for missing icon. (Alberts Muktupāvels)
- Updated translations:
Marek Černocký (cs), Мирослав Николић (sr).
Version 3.14.2
==============
- Fix two bugs with Chromium - does not get focus and does not appear in
alt-tab switcher. (Alberts Muktupāvels)
- Fix errors in manpages. (Dmitry Shachnev)
Version 3.14.1
==============
- Fix random bug when windows opens in fullscreen mode. (Alberts Muktupāvels)
- Fix identification of CSD windows when checking whether to force fullscreen.
(Owen W. Taylor)
- Fix uninitialized variables (Vincent Untz)
- Updated translations:
Andika Triwidada (id), Piotr Drąg (pl)
Version 3.14.0
==============
- Theme format version updated to 3.5, mostly patches from mutter. (Owen W. Taylor,
Florian Müllner, Jasper St. Pierre)
- Optionally attach modal dialogs. (Maxim Ermilov)
[This was added as dependency for updating theme format version and is not
available for use in metacity]
- Updated *.doap file. (Alberts Muktupāvels, Olav Vitters)
- Added support for _GTK_FRAME_EXTENTS. (Again based on mutter)
- Added support for _GTK_THEME_VARIANT. (Patches from mutter, mostly work
by Florian Müllner)
- Shadows won't be added to maximized windows. (Alberts Muktupāvels)
- Fixed some deprecated warnings. (Alberts Muktupāvels)
- Ignore adding a window if it's already present. (hordepfo)
- Some other fixes/changes adapted from mutter.
- Updated translations:
Andika Triwidada (id), Daniel Mustieles (es), Enrico Nicoletto (pt_BR),
Gábor Kelemen (hu), genodeftest (de), Inaki Larranaga Murgoiti (eu),
Marek Černocký (cs), MarMav (el), Piotr Drąg (pl), Rafael Ferreira (pt_BR).
Version 3.12.0
==============
- Port GTK+ 2 to GTK+ 3 (Mutter developers)
- Fix title bar button background (Nicolas Desfontaine)
- Side-by-side window tiling (Maarten Baert)
- Window placement patch (Chad Glendenin, http://chad.glendenin.com/metacity/patch.html)
- Add UXD shadows and borders (Sam Spilsbury)
- Add error handling to glibtop_get_proc_uid (Tomaž Šolc)
- Cut with fading the Bar title when it's longer than the decoration bar (Marco Trevisan)
- Don't show the ws switcher if we only have one (Didier Roche)
- Update meta_show_dialog for gtk's removal of --screen (Dan Winship)
- Add drag and drop support when using alt + tab (Matthias Clasen)
- Fix new window focus (https://bugzilla.gnome.org/show_bug.cgi?id=534752)
- Compositing manager is enabled by default now
- Fix screen flickering on session start (https://bugzilla.gnome.org/show_bug.cgi?id=658036)
Translations:
Piotr Drąg (pl)
Lasse Liehu (fi)
Wylmer Wang (zh_CN)
Rafael Ferreira (pt_BR)
Benjamin Steinwender (de)
Мирослав Николић (sr, sr@latin)
Rūdolfs Mazurs (lv)
Joe Hansen (da)
Milo Casagrande (it)
Balázs Úr (hu)
Alexandre Franke (fr)
Aurimas Černius (lt)
Christian Kirbach (de)
Andika Triwidada (id)
Matej Urbančič (sl)
Daniel Mustieles (es)
Marek Černocký (cs)
Gil Forcada (ca)
Fran Diéguez (gl)
Gheyret Kenji (ug)
Version 2.34.13
===============
- Fix minimization problem of iconified windows (Florian Müllner, Daniel Drake)
Translations:
Rūdolfs Mazurs (lv)
Rajesh Ranjan (hi)
Nguyễn Thái Ngọc Duy (vi)
Theppitak Karoonboonyanan (th)
Piotr Drąg (pl)
Version 2.34.8
==============
- Port themes documentation to yelp-tools (Florian Müllner)
Translations:
Mattias Põldaru (et)
Nilamdyuti Goswami (as)
Fran Diéguez (gl)
Version 2.34.5
==============
- Fix memory leak (Pavel Vasin)
- Add disable-mouse-button-modifiers message (Daniel Drake)
Translations:
Daniel Korostil (uk)
Jiro Matsuzawa (ja)
Reşat SABIQ (crh)
Aurimas Černius (lt)
Carles Ferrando (ca@valencia)
Arash Mousavi (fa)
Kristjan SCHMIDT (eo)
Sandeep Sheshrao Shedmake (mr)
Jordi Serratosa (ca)
Tom Tryfonidis (el)
Praveen Illa (te)
Luca Ferretti (it)
Andika Triwidada (id)
Daniel Mustieles (es)
Nilamdyuti Goswami (as)
Version 2.34.3
==============
- Use the correct translation domain in keybinding definitions (Ryan Lortie, Florian Müllner)
Translations:
YunQiang Su (zh_CN)
Abderrahim Kitouni (ar)
Marek Černocký (cs)
David Planella (ca)
Sasi Bhushan (te)
A S Alam (pa)
Duarte Loreto (pt)
Antonio Fernandes C. Neto (pt_BR)
Anita Reitere (lv)
Bruce Cowan (en_GB)
Daniel Nylander (sv)
Timo Jyrinki (fi)
Nilamdyuti Goswami (as)
Piotr Drąg (pl)
Claude Paroz (fr)
Seong-ho Cho (ko)
Inaki Larranaga Murgoitio (eu)
Mario Blättermann (de)
Nguyễn Thái Ngọc Duy (vi)
Gabor Kelemen (hu)
Daniel Mustieles (es)
Dr.T.Vasudevan (ta)
Kasia Bondarava (be)
Alexander Shopov (bg)
Ask H. Larsen (da)
Мирослав Николић (sr)
Yuri Myasoedov (ru)
Mattias Põldaru (et)
Version 2.34.2
==============
- Port preferences to GSettings (Florian Müllner, Milan Bouchet-Valat, Jason Siefken)
- Remove deprecated GTK+ symbols and use accessor functions (Florian Müllner)
- Include the default window icon (Matthias Clasen)
- Various small build system changes (Javier Jardón, Piotr Drąg, Florian Müllner, Rico Tzschichholz)
Translations:
Abduxukur Abdurixit (ug)
Kjartan Maraas (nb)
Theppitak Karoonboonyanan (th)
Ihar Hrachyshka (be)
Aurimas Černius (lt)
Daniel Mustieles (es)
Jiro Matsuzawa (ja)
Fabrício Godoy (pt_BR)
krishnababu k (te)
OKANO Takayoshi (ja)
Mario Blättermann (de)
Bruce Cowan (en_GB)
Mattias Põldaru (et)
Fran Diéguez (gl)
Marek Černocký (cs)
Gil Forcada (ca)
Piotr Drąg (pl)
Matej Urbančič (sl)
Bruno Brouard (fr)
Daniel Nylander (sv)
Praveen Illa (te)
Wouter Bolsterlee (nl)
Antonio Fernandes C. Neto (pt_BR)
Yaron Shahrabani (he)
Xandru Armesto (ast)
Alexander Shopov (bg)
Chao-Hsiung Liao (zh_HK, zh_TW)
==============
Version 2.34.1
==============
- Fix crash in meta_display_get_above_tab_keycode (Adam Jackson)
- Disable keybindings message should ungrab keys (Daniel Drake)
- Remove --with-gtk configure flag as metacity only builds against gtk2 (Colin
Walters)
- Build fix for FreeBSD: Include sys/wait.h as described in POSIX specs (Alexis Ballier)
- Various small build system changes (William Jon McCann, Olav Vitters)
Translations:
Carles Ferrando (ca@valencia)
Jiro Matsuzawa (ja)
Kristjan SCHMIDT (eo)
Nguyễn Thái Ngọc Duy (vi)
Tommi Vainikainen (fi)
==============
Version 2.34.0
==============
- Update keybindings when XKB keyboard layout changes (Derek Poon, Owen
Taylor)
- Unify keymap-reloading code branches (Owen Taylor, Thomas Thurman)
- Fix drawing of <arc> elements (Nickolas Lloyd)
- Add an "Above_Tab" pseudo-keysym (Owen Taylor)
- Fix default workspace names (Thomas Thurman)
- Log error if writing fail when handling SIGTERM (Christian Kirbach)
- Rework keybinding configuration files (William Jon McCann)
- Honour _NET_RESTACK_WINDOW and sibling-relative stacking (Christian Hammond)
- Allow applications to raise windows when raise_on_click is off (Owen Taylor)
- Allow explicit raises from same client, not just same app (Owen Taylor)
- Set RestartStyleHint to RestartIfRunning when replaced (Owen Taylor)
- Fix background functions for non-default layouts (Florian Müllner)
- Use GNOME 3 theme defaults (Matthias Clasen)
- Do not use an icon menu on the titlebar (William Jon McCann)
- Disable 'Show desktop' keybinding by default (Matthias Clasen)
- Make color constants work without warnings (Owen Taylor)
- Small bug fixes (Marcus Carlson, Sascha Silbe, Xu Li, Thomas Thurman, Colin
Walters)
- Make it possible to build without libcanberra (Michael Smith)
- Build fixes for Solaris (Brian Cameron)
Translations:
Khaled Hosny (ar)
Nilamdyuti Goswami (as)
Alexander Shopov (bg)
David Planella (ca)
David Planella (ca@valencia)
Marek Černocký (cs)
Ask Hjorth Larsen (da)
Mario Blättermann (de)
Jennie Petoumenou (el)
Bruce Cowan (en_GB)
Jorge González (es)
Ivar Smolin (et)
Iñaki Larrañaga Murgoitio (eu)
Mahyar Moghimi (fa)
Alain Lojewski (fr)
Fran Diéguez (gl)
Sweta Kothari (gu)
Yaron Shahrabani (he)
Gabor Kelemen (hu)
Dirgita (id)
Luca Ferretti (it)
Changwoo Ryu (ko)
Gintautas Miliauskas (lt)
Rudolfs (lv)
Kjartan Maraas (nb)
Wouter Bolsterlee (nl)
Manoj Kumar Giri (or)
A S Alam (pa)
Piotr Drąg (pl)
Duarte Loreto (pt)
Krix Apolinário (pt_BR)
Lucian Adrian Grijincu (ro)
Yuri Myaseodov (ru)
Matej Urbančič (sl)
Мирослав Николић (sr)
Miroslav Nikolić (sr@latin)
Daniel Nylander (sv)
Dr.T.Vasudevan (ta)
Gheyret Kenji (ug)
Korostil Daniel (uk)
Clytie Siddall (vi)
Lele Long (zh_CN)
Chao-Hsiung Liao (zh_HK)
Chao-Hsiung Liao (zh_TW)
2.30.3
======
Thanks to Brandon Wright and Vincent Untz for improvements
in this version.
- Fix theme breakage (Brandon)
- Use -Werror only when --enable-maintainer-mode is used
Translations:
Fran Diéguez (gl), Kenneth Nielsen (da).
2.30.2
======
Thanks to Florian Müllner, Matthias Clasen, Owen W. Taylor,
Frédéric Péters, Tomislav Vujec, Andre Klapper, Paul Liu,
Lin Ma, and Tomas Frydrych for improvements in this version.
- Replace GDK drawing API with cairo (Florian)
- Removes usage of gdk_display (Matthias)
- Stop confusing GDK's grab tracking (Owen)
- Allow building with Gtk+-3.0 (Florian)
- Replace deprecated GDK symbols (Florian)
- Fixes for compiling with GSeal (Andre)
- Fix crash with --sync option (Owen)
- Fix very unlikely crasher (Paul)
- Remove deprecated Encoding key from desktop files (Frédéric)
- Fix memory leak in theme optimisation (Lin Ma)
- Use correct timestamp for focus stealing prevention (Tomas)
- Don't warn about a missing session file (Tomislav)
Translations:
Andika Triwidada (id)
Aron Xu (zh_CN)
Ask H. Larsen (da)
Carles Ferrando (ca@valencia)
Francisco Diéguez (gl)
Fran Diéguez (gl)
Jenny Petoumenou (el)
Kjartan Maraas (nb)
Kristjan Schmidt (eo)
Luca Ferretti (it)
Matej Urbančič (sl)
Nils-Christoph Fiedler (nds)
Peteris Krisjanis (lv)
Sandeep Shedmake (mr)
Shankar Prasad (kn)
Takayuki KUSANO (ja)
Thomas Thurman (en@shaw)
Yannig Marchegay (oc)
Yaron Shahrabani (he)
2.30.1
======
Thanks to Edward Sheldrake for the crash fix in this version.
- Fix crash when right-clicking on window frame (Edward)
Translations
David Planella (ca), Reşat SABIQ (crh)
2.30.0
======
Thanks to Owen Taylor, Didier Roche, and Dominique Leuenberger for improvements
in this version.
- Fix typo when checking the result of getpwuid (Owen)
- Revert new default cycle_group keybinding to Alt-grave (Didier)
- Fix build with gcc 4.5 (Dominique)
Translations
Khaled Hosny (ar), Sadia Afroz (bn), David Planella (ca), Reşat SABIQ (crh),
Petr Kovar (cs), Ask Hjorth Larsen (da), Mario Blättermann (de),
Kostas Papadimas (el), Thomas Thurman (en@shaw), Bruce Cowan (en_GB),
Mattias Põldaru (et), Iñaki Larrañaga Murgoitio (eu), Tommi Vainikainen (fi),
Bruno Brouard (fr), Fran Diéguez (gl), Gabor Kelemen (hu),
Luca Ferretti (it), Changwoo Ryu (ko), Gintautas Miliauskas (lt),
Ani Peter (ml), Wouter Bolsterlee (nl), A S Alam (pa), Piotr Drąg (pl),
Duarte Loreto (pt), Ísis Binder (pt_BR), Lucian Adrian Grijincu (ro),
Alexander Saprykin (ru), Pavol Šimo (sk), Matej Urbančič (sl),
Горан Ракић (sr), Goran Rakić (sr@latin), Daniel Nylander (sv),
Dr,T,Vasudevan (ta), Theppitak Karoonboonyanan (th), Maxim Dziumanenko (uk),
Chao-Hsiung Liao (zh_HK), Chao-Hsiung Liao (zh_TW)
2.28.1
======
Thanks to Owen Taylor, Luis Torres, Matthias Clasen, Thomas Andersen,
Theppitak Karoonboonyanan, Vincent Untz, Peter Bloomfield, alexisdm59,
Claude Paroz, Ray Strode, Dan Winship, Lennart Poettering, and
Frederic Peters for improvements in this version.
- default cycle-group binding is alt-grave (Ray)
- XFCE terminal is a terminal (Owen)
- signal handling fixes (Dan, Ray, Frederic)
- fix bell timeout (Lennart)
- self-drawn tooltips are tooltips (Lennart)
- fix session handling close (Owen)
- replace deprecated symbols (Luis)
- split MetaSide from MetaDirection (Owen)
Translations
Alexander Shopov (bg), Åsmund Skjæveland (nn), Carles Ferrando (ca@valencia),
Daniel Nylander (sv), Erdal Ronahi (ku), Gil Forcada (ca),
Inaki Larranaga Murgoitio (eu), Jorge González (es), Khaled Hosny (ar),
Kjartan Maraas (nb), Leonid Kanter (ru), Lucian Adrian Grijincu (ro),
Maxim V. Dziumanenko (uk), Peteris Krisjanis (lv), Reşat SABIQ (crh),
Thomas Thurman (en@shaw)
2.28.0
======
Translations
Amitakhya Phukan (as), David Planella (ca), Petr Kovar (cs), Ask H. Larsen
(da), Mario Blättermann (de), Bruce Cowan (en_GB), Tommi Vainikainen (fi),
Antón Méixome (gl), Sweta Kothari (gu), Yaron Shahrabani (he), Rajesh Ranjan
(hi), Takayuki KUSANO (ja), Shankar Prasad (kn), Changwoo Ryu (ko), Gintautas
Miliauskas (lt), Rajesh Ranjan (mai), Ani (ml), Sandeep Shedmake (mr), Manoj
Kumar Giri (or), A S Alam (pa), Fábio Nogueira (pt_BR), Lucian Adrian
Grijincu (ro), Matej Urbančič (sl), krishnababu k (te), Theppitak
Karoonboonyanan (th), Maxim V. Dziumanenko (uk)
2.27.1
======
Thanks to Tomeu Vizoso and Matthias Clasen for improvements in this version.
- Unset _NET_SUPPORTING_WM_CHECK when shutting down (Matthias Clasen) (#564561)
- Add a switch to disable autofullscreen'ing maximized windows without
decorations (Tomeu Vizoso) (#586600)
Translations
Khaled Hosny (ar), Alexander Shopov (bg), Runa Bhattacharjee (bn_IN), Denis
Arnaud (br), Gil Forcada, Jordi Mas i Hernandez (ca), Christian Kirbach (de),
Simos Xenitellis (el), Jorge González, Jorge Gonzalez (es), Ivar Smolin,
Mattias Põldaru (et), Inaki Larranaga Murgoitio (eu), Tommi Vainikainen (fi),
Claude Paroz (fr), Seán de Búrca (ga), Antón Méixome, Ignacio Casal Quinteiro
(gl), Sweta Kothari (gu), Yaron Sharabani, Mark Krapivner (he), Gabor Kelemen
(hu), Luca Ferretti (it), Shankar Prasad (kn), Changwoo Ryu (ko), Gintautas
Miliauskas (lt), Manoj Kumar Giri (or), Tomasz Dominikowski (pl), Og B.
Maciel, Djavan Fagundes, Henrique P. Machado (pt_BR), Duarte Loreto (pt),
Nickolay V. Shmyrev (ru), Marcel Telka (sk), Matej Urban (sl), Miloš Popović,
Goran Rakic (sr@latin), Miloš Popović, Goran Rakic (sr), Daniel Nylander
(sv), ifelix, drtvasudevan (ta), krishnababu k (te), Theppitak
Karoonboonyanan (th), Baris Cicek (tr), Maxim V. Dziumanenko (uk), Ray Wang,
Funda Wang (zh_CN), Chao-Hsiung Liao (zh_HK), Chao-Hsiung Liao (zh_TW)
2.27.0
======
Thanks to Thomas Andersen, Ori Avtalion, Matthias Clasen, Luca Ferretti, Matt
Kraai, Neil Jagdish Patel, and Thomas Thurman for improvements in this version.
- Remove deprecated GTK symbols (Thomas A, Matt) (#572332)
- fix window properties bug which showed up as ignoring struts (Ori) (#572573)
- include "as <username>" in window title (Thomas T) (#549389)
- Use zenity for dialogues (Thomas T) (#521914)
- Use libcanberra for sound effects (Matthias) (#557921)
- Don't define meta_spew_event unless verbose mode is on (Matt) (#571126)
- Fix README to give correct switch names (Matt) (#571210)
- Windows which couldn't appear in alt-tab don't get there by being urgent (Thomas T)
- Skip the first window in alt-tab only if it's actually current (Matt) (#535887)
- Optimise line coordinate storage (Thomas)
- Queue resize on window undecorate (Neil)
- Fix description of "show desktop" (Luca) (#569649)
- Wrap g_error calls in braces (Matt)
Translations
Mikel González (ast), Ihar Hrachyshka (be@latin), David Planella (ca), Petr
Kovar (cs), Ask Hjorth Larsen (da), Jorge González (es), Mattias Põldaru (et),
Iñaki Larrañaga Murgoitio (eu), Ilkka Tuohela (fi), Claude Paroz (fr), Gabor
Kelemen (hu), Kjartan Maraas (nb), Wouter Bolsterlee (nl), Leonardo Ferreira
Fontenelle (pt_BR), Daniel Nylander (sv), Theppitak Karoonboonyanan (th),
Chao-Hsiung Liao (zh_HK), Chao-Hsiung Liao (zh_TW)
2.25.144
========
Thanks to Matthias Claesen, Matt Kraai, Elijah Newren, Owen Taylor, and Thomas
Thurman for improvements in this version.
- Optimise window property lookup (Thomas) (#549886)
- Fix slip in the above (Matt)
- Several memory leaks fixed (Matthias) (#552303, #552973, #552307)
- Fix longstanding crasher about colourmaps (Owen) (#568365)
- Alt+middle/right buttons can be switched (Thomas) (#437910)
- Support _NET_WM_MOVERESIZE_CANCEL (Elijah)
- minor fix paving the way for a theme editor (Thomas)
Translations
David Planella (ca), Jorge González (es), Mattias Põldaru (et), saudat
mohammed (ha), Yuval Tanny\n (he), Gabor Kelemen (hu), Onye, Sylvester (ig),
Changwoo Ryu (ko), Raivis Dejus (lv), Kjartan Maraas (nb), Daniel Nylander (sv),
Fajuyitan, Sunday Ayo (yo), 甘露 (Gan Lu) (zh_CN)
2.25.89
=======
Thanks to Yanko Kaneti, Frederic Peters, Thomas Thurman, and Colin Walters for
improvements in this version.
- The maximisation key is a toggle. (Thomas) (#343824)
- "Unmaximise" is now called "restore". (Thomas) (#343824)
- New thread handling call for gconf (Frederic) (#565517)
- Add screenshot commands back which had been removed (Yanko) (#565343)
- move_to_corner_se keybinding fixed (Thomas)
- Windows on other workspaces which attempt to present themselves
are marked as needing attention (Colin) (#482354)
- End the grab op when the user clicks the titlebar (Thomas) (#401028)
Translations
Jorge González (es)
2.25.55
=======
Thanks to Erwann Chenede for improvements in this version.
- Fix build on Solaris (Erwann) (#564123)
Translations
Mattias Põldaru (et), Luca Ferretti (it)
2.25.34
=======
Thanks to Matt Kraai for improvements in this version.
- Fixes to Thomas's earlier fixes (Matt) (#562939)
Translations
None
2.25.21
=======
Thanks to Thomas Thurman for improvements in this version.
- Fixes to allow building without compositor again (Thomas)
- Fixes for -Wall problems (Thomas)
- Various tool updates (Thomas)
Translations: none
2.25.13
=======
Thanks to Thomas Thurman for improvements in this version.
- Add casts to fix failure to build from source on 64bit hosts (Thomas) (#562106)
- Added script to produce annoucements (Thomas)
Translations
Jorge González (es)
2.25.8
======
Thanks to Brian Cameron, Maxim Ermilov, Daniel Macks, Elijah Newren, Frederic
Peters, Thomas Thurman, David Trowbridge, and Olav Vitters for improvements in
this version.
- Reorder compiler flags (Daniel) (#562033)
- Fix compositor switch (Daniel) (#560990)
- Remove spurious warnings about operations on window "none" (Thomas)
- Fix _POSIX_C_SOURCE which was breaking OS X builds (Thomas) (#561962)
- -Werror -Wall and -ansi are now standard compile flags (Thomas)
- Merge screen and window keybindings files; fix minor alt-tab bug
in the process (Thomas) (#528337)
- Support _NET_WM_FULLSCREEN_MONITORS (David)
- Remove some deprecated calls (Thomas) (#560445)
- Clean up #includes (Maxim) (#560449)
- Update description of raise_on_click (Elijah)
- First dialogue delegated to zenity (Thomas)
- fix theme-parser typo (Olav)
- double-quote variable names in messages (Thomas) (#558309)
- fix accidental renaming of run_command_terminal (Thomas) (#557943)
- some null checks; problems exposed by new GDM (Brian) (#558058)
- ignore mouse button modifier if it's missing (Thomas) (Launchpad 258054, Launchpad 266929)
- fix docbook markup (Frederic)
Translations
Astur (ast), Jorge González (es), Thomas Thurman (la), Leonardo Ferreira
Fontenelle (pt_BR), Daniel Nylander (sv)
2.25.5
======
Thanks to Thomas Thurman for improvements in this version.
- Allow third-party apps to decide whether a window appears
on all workspaces (Thomas) (#557536)
- Fixed keybindings script (again) (Thomas)
Translations
David Planella (ca), Robert Millan (ca@valencia)
2.25.3
======
Brown paper bag release which fixes numerous build problems from last night's
release of 2.25.2. Apologies.
Thanks to Murray Cumming, Thomas Thurman, and Götz Waschk for improvements
in this version.
- Fix distcheck (Thomas) (#557356)
- add libm reference (Götz) (#557357)
- fix docbook tags (Murray) (#557337)
Translations
Yavor Doganov (bg), David Planella (ca), Robert Millan (ca@valencia), Kenneth
Nielsen (da), Hendrik Richter (de), Ivar Smolin (et), Claude Paroz (fr), Seán de
Búrca (ga), Launchpad Translations Administrators (hr), Gabor Kelemen (hu),
Thomas Thurman (la), Žygimantas Beručka (lt), Kjartan Maraas (nb), Duarte
Loreto (pt), Djavan Fagundes (pt_BR), Mugurel Tudor (ro), Pavol Šimo (sk),
Laurent Dhima (sq), Горан Ракић (sr), Theppitak Karoonboonyanan (th),
Funda Wang (zh_CN)
2.25.2
======
Thanks to Joe Marcus Clarke, Murray Cumming, Tomas Frydrych, William Lachance,
Matthew Martin, Christian Persch, Thomas Thurman, and Vincent Untz for
improvements in this version.
- Add handler for SIGTERM (Joe) (#553980)
- Minimised windows are necessarily obscured (Matthew) (#528927)
- Build fixes with the above (Christian, Tomas, Thomas) (#557335)
(#557201) (#469361)
- Changed keybindings to be in a single place (Thomas) (#469361)
- Add new document about themes (Murray)
- Remove obsolete support for fallback icons (Thomas)
- Pass modified mouse events to panels (William) (#554428)
- Change where desktop files should go (Vincent) (#549479)
Translations
Yavor Doganov (bg), David Planella (ca), Kenneth Nielsen (da), Hendrik
Richter (de), Ivar Smolin (et), Claude Paroz (fr), Seán de Búrca (ga), Launchpad
Translations Administrators (hr), Gabor Kelemen (hu), Thomas Thurman (la),
Žygimantas Beručka (lt), Kjartan Maraas (nb), Duarte Loreto (pt), Djavan
Fagundes (pt_BR), Mugurel Tudor (ro), Pavol Šimo (sk), Laurent Dhima (sq),
Горан Ракић (sr), Theppitak Karoonboonyanan (th), Funda Wang (zh_CN)
2.25.1
======
Thanks to Thomas Thurman for improvements in this version.
- Fix small memory leak, found by Matthias Clasen (Thomas) (#549952)
- Added move_to_center keybinding suggested by
Khanh-Dang Nguyen Thu Lam (Thomas) (#549979)
- Compositor can be turned on and off from the command line
(#545323) (Thomas)
Translations
Khaled Hosny (ar), Petr Kovar (cs), Iñaki Larrañaga Murgoitio (eu), Ilkka
Tuohela (fi), Žygimantas Beručka (lt), Duarte Loreto (pt), Djavan
Fagundes (pt_BR), Laurent Dhima (sq)
2.25.0
======
Thanks to Patrick Niklaus, Ted Percival, Eric Piel, Akira TAGOH, and Thomas
Thurman for improvements in this version.
- Fix memory allocation problem in struts (Eric) (probably #468075)
- Ensure windows which start maximised know where to jump back
to, so they don't warp to other screens (Ted) (#504692)
- Added header comments to some files (Thomas)
- Icons for windows which are uncooperative enough not to provide
an icon are taken from the theme, not built in (Patrick) (#524343)
- Added manual page for metacity-message (Akira, from Debian downstream)
Translations
Khaled Hosny (ar), Petr Kovar (cs), Ilkka Tuohela (fi), Duarte Loreto (pt), Djavan
Fagundes (pt_BR)
2.23.89
=======
Thanks to Thomas Thurman for improvements in this version.
- Added DOAP file. (Thomas)
Translations
Khaled Hosny (ar), Luca Ferretti (it), Takeshi AIHANA (ja), Wouter
Bolsterlee (nl), Vladimir Melo (pt_BR), Daniel Nylander (sv)
2.23.55
=======
Thanks to Elijah Newren and Thomas Thurman for improvements in this version.
Contrary to rumour, this release does not add tabbing to everything.
- Display theme name in title bar of theme viewer (Thomas) (#430198)
- Allow toggling of non-compositor effects (Thomas) (#92867)
- Add some extra null checks (Thomas) (#422242)
- Check for double-freeing at the time of workspace freeing (Elijah) (#361804)
- Don't generate log messages unless we're logging (Thomas)
- Two windows which don't belong to any application can't be considered to
belong to the same application (Thomas)
- Various tidyings (Thomas)
Translations
Yavor Doganov (bg), Gabor Kelemen (hu), Kjartan Maraas (nb), Matej
Urbančič (sl), Daniel Nylander (sv), Theppitak Karoonboonyanan (th)
2.23.34
=======
Thanks to Thomas Thurman for improvements in this version.
- Commenting and tidying (Thomas)
- Fix possible compositor crash (Thomas) (#530702)
Translations
Khaled Hosny (ar), Yavor Doganov (bg), Jorge González (es), Kjartan Maraas (nb),
Yannig Marchegay (Kokoyaya) (oc), Theppitak Karoonboonyanan (th), Clytie
Siddall (vi)
2.23.34
=======
Thanks to Thomas Thurman for improvements in this version.
- Commenting and tidying (Thomas)
- Fix possible compositor crash (Thomas) (#530702)
Translations
Khaled Hosny (ar), Yavor Doganov (bg), Jorge González (es), Kjartan Maraas (nb),
Yannig Marchegay (Kokoyaya) (oc), Theppitak Karoonboonyanan (th), Clytie
Siddall (vi)
2.23.34