-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNEWS
8192 lines (6292 loc) · 223 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.2.1
=============
Panel
* Do not assert on error when using default layout (Vincent)
* Fix loading launchers defined with relative paths (Vincent)
Translators
* David Planella (ca@valencia)
* Jorge González (es)
* Rūdolfs Mazurs (lv)
* Мирослав Николић (sr)
* Miroslav Nikolić (sr@latin)
* Praveen Illa (te)
=============
Version 3.2.0
=============
Translators
* flemming christensen (da)
* Inaki Larranaga Murgoitio (eu)
* Tommi Vainikainen (fi)
* Sweta Kothari (gu)
* Gabor Kelemen (hu)
* Jiro Matsuzawa (ja)
* Changwoo Ryu (ko)
* Aurimas Černius (lt)
==============
Version 3.1.92
==============
Panel
* Fix loading of main menu (Vincent)
* hange "My Account" to "Online Accounts" in user menu (Vincent)
Clock Applet
* Look for calendar/tasks app in GSettings (Vincent)
Translators
* Anass Ahmed (ar)
* Ihar Hrachyshka (be)
* David Planella (ca)
* Bruce Cowan (en_GB)
* Daniel Mustieles (es)
* Arash Mousavi (fa)
* Luca Ferretti (it)
* Jiro Matsuzawa (ja)
* Rūdofls Mazurs (lv)
* Rachid (nl)
* Duarte Loreto (pt)
* Antonio Fernandes C. Neto (pt_BR)
* Matej Urbančič (sl)
* Dr.T.Vasudevan (ta)
* Korostil Daniel (uk)
* Edison Zhao (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
==============
Version 3.1.91
==============
Panel
* Do not forcecully center non-expanded panels on login (Matt
McCutchen)
* Fix srcdir != builddir build (Colin Walters)
Translators
* Ihar Hrachyshka (be)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Claude Paroz (fr)
* Fran Diéguez (gl)
* Andika Triwidada (id)
* A S Alam (pa)
* Stas Solovey (ru)
* Theppitak Karoonboonyanan (th)
* Sahran (ug)
=============
Version 3.1.5
=============
Panel
* Stop using G_CONST_RETURN (Vincent)
* Remove unused variables (Vincent)
* Port to new gnome-menus API (Colin Walters, Vincent)
* Always keep the same window icon for run dialog (Vincent)
libpanel-applet
* Fix build warning (Vincent)
Clock Applet
* Do not miss seconds when displaying seconds (Vincent)
Notification Area Applet
* Fix build with --as-needed (Vincent)
Misc
* Modernize build system (Vincent)
Translators
* Ihar Hrachyshka (be)
* Alexander Shopov (bg)
* David Planella (ca@valencia)
* Daniel Mustieles (es)
* Tommi Vainikainen (fi)
* Yaron Shahrabani (he)
* Rūdofls Mazurs (lv)
* Torstein Adolf Winterseth (nb)
* Piotr Drąg (pl)
* Мирослав Николић (sr)
* Miroslav Nikolić (sr@latin)
* Daniel Nylander (sv)
=============
Version 3.0.2
=============
Panel
* Fix crash when starting launcher (Josselin Mouette)
* Fix edit menu not working even when modifier is pressed, when caps
lock is used (Vincent)
* Fix crash when running without gnome-session (Vincent)
* Add missing config.h includes (Kjartan Maraas)
* Code cleanups (Vincent)
libpanel-applet
* Fix edit menu not working even when modifier is pressed, when caps
lock is used (Vincent)
Clock Applet
* Pass the correct month to Evolution command line (Rodrigo Moya)
* Fix usage of polkit service to set timezone (Chris Vine)
* Correctly deal with leap seconds for updates (Andrey Vihrov)
Docs Translators
* Joe Hansen (da)
* Sergiy Gavrylov (uk)
Translators
* Alexander Shopov (bg)
* David Planella (ca)
* Marek Černocký (cs)
* Ask Hjorth Larsen (da)
* Mario Blättermann (de)
* Michael Kotsarinis (el)
* Bruce Cowan (en_GB)
* Daniel Mustieles (es)
* Arash Mousavi (fa)
* Claude Paroz (fr)
* Fran Diéguez (gl)
* Yaron Shahrabani (he)
* Gabor Kelemen (hu)
* Changwoo Ryu (ko)
* Torstein Adolf Winterseth (nb)
* Rachid (nl)
* A S Alam (pa)
* Piotr Drąg (pl)
* Rodrigo Padula de Oliveira (pt_BR)
* Yuri Myasoedov (ru)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Sahran (ug)
* Korostil Daniel (uk)
* Clytie Siddall (vi)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 3.0.0.1
===============
Panel
* Minor code cleanup (Vincent)
libpanel-applet
* Move some defines in headers to fix generated libpanel-applet
documentation (Vincent)
Notification Area Applet
* Fix thin lines appearing when an icon is removed (Vincent)
=============
Version 3.0.0
=============
Panel
* Fix alt+f1 misworking for menu buttons (Vincent)
Translators
* F Wolff (af)
* Khaled Hosny (ar)
* Israt Jahan (bn)
* David Planella (ca)
* Marek Černocký (cs)
* Ask Hjorth Larsen (da)
* Mario Blättermann (de)
* Jorge González (es)
* Iñaki Larrañaga Murgoitio (eu)
* Bruno Brouard (fr)
* Fran Diéguez (gl)
* Yaron Shahrabani (he)
* Gabor Kelemen (hu)
* Luca Ferretti (it)
* OKANO Takayoshi (ja)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Rūdofls Mazurs (lv)
* Torstein Adolf Winterseth (nb)
* Wouter Bolsterlee (nl)
* Piotr Drąg (pl)
* Duarte Loreto (pt)
* Antonio Fernandes C. Neto (pt_BR)
* Yuri Myaseodov (ru)
* Klemen Košir (sl)
* Daniel Nylander (sv)
* Baris Cicek (tr)
* Korostil Daniel (uk)
* Clytie Siddall (vi)
* Edison Zhao (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 2.91.94
===============
Notes:
- many thanks to the release team and to translators who kindly accepted
freeze breaks to considerably improve gnome-panel in GNOME 3.
- user who started gnome-panel 2.91.93 won't have the new default layout, and
some applets will not be positioned like they were. Those users can easily
manually fix the layout, though.
Panel
* Fix moving of panel objects to use switch mode again by default
(Vincent)
* Completely rework how objects are positioned in the panel: they are
now either left-aligned, centered, right-aligned (Vincent)
This fixes many issues, including objects being mis-positioned after
changes of the screen size.
* Make the clock centered in the default layout (Vincent)
* Add a user menu similar to the GNOME Shell one (Vincent)
Clock Applet
* Port to GDBus (Ryan Lortie)
Notification Area Applet
* Add support for _NET_SYSTEM_TRAY_ICON_SIZE to specify the size for
icons. This can be set in the theme with the theme with
"-NaTrayApplet-icon-size: 16;" (Ryan Lortie)
Misc
* The dbus-glib dependency is now completely gone
* There is a new optional dependency on telepathy-glib, for features
used in the user menu
Translators
* F Wolff (af)
* Khaled Hosny (ar)
* Alexander Shopov (bg)
* David Planella (ca)
* Marek Černocký (cs)
* Ask Hjorth Larsen (da)
* Christian Kirbach (de)
* Bakaoukas Nikolaos (el)
* Bruce Cowan (en_GB)
* Daniel Mustieles (es)
* Ivar Smolin (et)
* Iñaki Larrañaga Murgoitio (eu)
* Arash Mousavi (fa)
* Tommi Vainikainen (fi)
* Bruno Brouard (fr)
* Seán de Búrca (ga)
* Fran Diéguez (gl)
* Sweta Kothari (gu)
* Yaron Shahrabani (he)
* Rajesh Ranjan (hi)
* Gabor Kelemen (hu)
* Dirgita (id)
* Luca Ferretti (it)
* Takayuki KUSANO (ja)
* Shankar Prasad (kn)
* Changwoo Ryu (ko)
* Gintautas Miliauskas (lt)
* Rudolfs (lv)
* Sandeep Shedmake (mr)
* Torstein Adolf Winterseth (nb)
* Wouter Bolsterlee (nl)
* Åsmund Skjæveland (nn)
* A S Alam (pa)
* Piotr Drąg (pl)
* Duarte Loreto (pt)
* Rodrigo Padula de Oliveira (pt_BR)
* Lucian Adrian Grijincu (ro)
* Yuri Myaseodov (ru)
* Matej Urbančič (sl)
* Милош Поповић (sr)
* Miloš Popović (sr@latin)
* Daniel Nylander (sv)
* Dr.Tirumurti Vasudevan (ta)
* Theppitak Karoonboonyanan (th)
* Baris Cicek (tr)
* Sahran (ug)
* Korostil Daniel (uk)
* Clytie Siddall (vi)
* YunQiang Su (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 2.91.93
===============
Notes:
- while GNOME is in deep freeze for GNOME 3, the release team was kind enough
to accept a huge freeze break to considerably improve the panel experience
in GNOME 3.
- it's worth pointing out that starting with this release, gnome-panel
ignores the GNOME 2 configuration and starts with a fresh configuration.
This is done on purpose; if there is interest, we might provide a helper
tool to migrate the old configuration.
- per-instance applet settings can now be in GSettings, or if the applet
still uses GConf, they will live under /apps/panel3-applets.
Note to packagers: the way to define a default layout for gnome-panel has
changed. Take a look at the panel-default-layout.layout file for an example;
this is really easy now!
Panel
* Remove popup menu for items in applications menu (Vincent)
* Drop drawers (Vincent)
* Remove migration code for panel 2.x configuration (Vincent)
* Drop hidden --profile argument (Vincent)
* Also require modifier to move applets by clicking on handle (Vincent)
* Drop per-applet Lock setting (Vincent)
* Put Move before Remove in applet menu (Vincent)
* Migrate to GSettings (Vincent)
This includes:
* Rework the way we define te default layout
* Better integration with GNOME 3.0 in general (for lockdown, for
instance)
* Still make it possible to have applets use GConf for their own
settings
* Use gtk-enable-animations GtkSettings property instead of our own
setting (Vincent)
* Remove setting to highlight launchers on mouse hover, and instead
make this available in the theme with "-ButtonWidget-hover-highlight:
false;" (Vincent)
* Move Lock before Activate in screensaver button popup (Vincent)
* Talk to gnome-screensaver via dbus (Vincent)
* Port to GDBus (Vincent)
* Stop saving launchers in ~/.gnome2, and use XDG config dir (Vincent)
* Remove unneeded check for 'logout-prompt' setting (Vincent)
* Change gconf path of applet prefs (Vincent)
* Prepare code for ability to use centered applets (Vincent)
* Code cleanups (Vincent)
libpanel-applets
* Add panel_applet_settings_new() API (Vincent)
* Mark all GConf-related API as deprecated (Vincent)
Fish Applet
* Port to GSettings (Vincent)
* Change the way to choose the image and number of frames, by using a
keyfile. There's no UI for this anymore at the moment (Vincent)
Window List Applet
* Port to GSettings (Ryan Lortie)
Workspace Switcher Applet
* Port to GSettings (Ryan Lortie)
Translators
* Khaled Hosny (ar)
* Fran Diéguez (gl)
* A S Alam (pa)
* Piotr Drąg (pl)
* Rodrigo Padula de Oliveira (pt_BR)
* Daniel Nylander (sv)
* Sahran (ug)
===============
Version 2.91.92
===============
Panel
* Fix compilation warnings (Colin Walters)
* Add style classes to make panel easier to theme (William Jon McCann)
* Fix background of handles for transparent panels (Carlos Garcia
Campos)
* Remove X-GNOME-Autostart-Notify from .desktop file (Vincent)
* Stop manually making the panel menubar text bold, this is handled in
the theme now (Vincent)
Clock
* Stop manually making the panel menubar text bold, this is handled in
the theme now (Vincent)
Docs Translators
* Luca Ferretti (it)
Translators
* Nilamdyuti Goswami (as)
* Denis (br)
* Marek Černocký (cs)
* Dawa pemo (dz)
* Bakaoukas Nikolaos (el)
* Bruce Cowan (en_GB)
* Gabor Kelemen (hu)
* Narine Martirosyan (hy)
* Luca Ferretti (it)
* Shankar Prasad (kn)
* Rudolfs (lv)
* Sangeeta Kumari (mai)
* Andre Klapper (ml)
* Badral (mn)
* Nabin Gautam (ne)
* Piotr Drąg (pl)
* Zabeeh khan (ps)
* Duarte Loreto (pt)
* Leonardo Ferreira Fontenelle (pt_BR)
* Lucian Adrian Grijincu (ro)
* Yuri Myaseodov (ru)
* Danishka Navin (si)
* Korostil Daniel (uk)
* Nurali Abdurahmonov (uz)
===============
Version 2.91.91
===============
Note: this version breaks API in libpanel-applet (an unused argument was
removed from FACTORY macros) and ABI (removed arguments and API). The version
of the library was not bumped as we're still finalizing the 3.0 API, so make
sure to rebuild all applets.
All
* Minor code cleanup (Vincent)
Panel
* Fix warning when lockdown setting changes (Vincent)
libpanel-applet
* Make sure people cannot misuse PanelApplet by documenting an API
usage error on stderr (Vincent)
* Remove panel_applet_new() (Vincent)
* Remove unused name arg in FACTORY macros (Vincent)
* Remove out_process from panel_applet_factory_main() (Vincent)
* Add test applet in python (Vincent)
* Improve introspection coverage (Vincent)
* Stop printing errors for gconf API (Vincent)
* Correctly set min & max of orient and flags properties (Vincent)
Clock Applet
* Only display "edit locations" button if panel is not locked down
(Vincent)
* Monitor locked-down property to update prefs visibility (Vincent)
* Better fix for missing calendar sources (David Woodhouse)
Fish Applet
* Monitor locked-down property to update prefs visibility (Vincent)
Wnck Applets
* Monitor locked-down property to update prefs visibility (Vincent)
Misc
* Rewrite (and complete) libpanel-applet documentation (Vincent)
* Remove libcanberra-gtk3 dependency (Vincent)
* Bump GTK+ 3 requirement to 3.0 (Carlos Garcia Campos)
Translators
* Khaled Hosny (ar)
* David Planella (ca)
* Kristjan SCHMIDT (eo)
* Bruno Brouard (fr)
* Rajesh Ranjan (hi)
* Changwoo Ryu (ko)
* Rūdolfs Mazurs (lv)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Maxim Dziumanenko (uk)
* YunQiang Su (zh_CN)
===============
Version 2.91.90
===============
This release changes in a major way the way people can "edit" panels (ie,
create new panels, add new applets, move applets, remove applets, etc.): those
"edit" features have always been accessible mostly through popup menus, but this
often created accidental changes. Now, users have to press the same modifier as
the one configured in metacity (by default, Alt) to access the menus showing
those "edit" features. Other items from applets menus are still available in the
standard popup menu.
Packagers: please note that, following the above change, gnome-panel requires
libpanel-applet 2.91.90 to work fine with applets.
Panel
* Code cleanups (Vincent)
* Fix dbus applets to work in multiscreen environment (Vincent)
* Update default panel layout to remove launchers, window menu, and show
desktop button (William Jon McCann)
* Make panel menubar text bold (William Jon McCann)
* Hide icon from panel menubar by default; use
"-PanelMenuBar-icon-visible: true;" in theme to make it visible again
(Vincent)
* Remove help items from popup menus (William Jon McCann, Vincent)
* Move all "edit" features in popup menus in a popup menu that gets
opened only when modifier is pressed (Vincent)
* Do not show "Edit Menus" in menubar context menu if locked down
(Vincent)
* Do not lock any objects by default anymore (Vincent)
libpanel-applet
* Move all "edit" features in applet popup menus in a popup menu that
gets opened only when modifier is pressed (Vincent)
All Appletso
* Remove help and about items from popup menu (William Jon McCann,
Vincent)
Clock Applet
* Open evo with right date when clicking on calendar (Magnus E)
* Make text bold (William Jon McCann)
Notification Area Applet
* Synchronize with code from gnome-shell (Dan Winship)
* Set tray colors based on the ones set in the theme (Vincent, William
Jon McCann)
* Add support for _NET_SYSTEM_TRAY_PADDING. The padding can be set in
the theme with "-NaTrayApplet-icon-padding: 6;" (Matthias Clasen,
Vincent)
* Code cleanup (Vincent)
Wnck Applets
* Remove switching workspace on scroll events (done in libwnck now)
(Vincent)
Misc
* Build fix (Vincent)
* Free the fish! (Vincent)
Docs Translators
* Jorge González (es)
Translators
* Khaled Hosny (ar)
* Alexander Shopov (bg)
* Runa Bhattacharjee (bn_IN)
* Mario Blättermann (de)
* Daniel Mustieles (es)
* Fran Diéguez (gl)
* Sweta Kothari (gu)
* Yaron Shahrabani (he)
* Dirgita (id)
* Torstein Adolf Winterseth (nb)
* Wouter Bolsterlee (nl)
* A S Alam (pa)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
==============
Version 2.91.6
==============
This is the first version of gnome-panel with GTK+ 3 support. There are likely
some regressions, and help to fix them is most welcome! Many thanks to Carlos
Garcia Campos, Germán Póo-Caamaño, Benjamin Otte, Milan Bouchet-Valat and
Christian Persch for the port!
Also, the bonobo compatibility support has been removed for now. It might
eventually re-appear in a separate tarball: some more work is needed there to
avoid having bonobo used directly from inside the gnome-panel process.
All
* Port to GTK+ 3 (Carlos Garcia Campos, Germán Póo-Caamaño, Benjamin
Otte, Milan Bouchet-Valat, Christian Persch, Vincent)
Panel
* Change references from bonobo-applet to external-applet in gconf
(Vincent)
* Don't rely on nautilus desktop files, as they're going away (Cosimo
Cecchi)
* Remove About GNOME menu item (Vincent)
* Do not show settings.menu in System menu, but just the control center
(Vincent)
* Migrate settings: menu buttons to gnome-control-center launcher
(Vincent)
* Support adding launchers (and menu buttons) from gnomecc.menu
(Vincent)
libpanel-applet
* Add libpanel_applet_dir variable in libbpanelapplet.pc (Vincent)
libpanel-applet (bonobo)
* Drop the bonobo support (Vincent)
Clock Applet
* Show appointments from local/mapi eds providers (Milan Crha, Kåre
Fiedler Chrisitiansen)
* Use the control center date/time panel instead of our own time
setting dialog (Vincent)
Notification Area Applet
* Fix handling of SYSTEM_TRAY_CANCEL_MESSAGE (Vincent)
* Add support for _NET_SYSTEM_TRAY_COLORS (Dan Winship)
* Cleanups (Dan Winship)
Wnck Applets
* Update for libwnck 2.91.x API changes (Vincent)
Misc
* Finally drop gnome-panelrc (Vincent)
* Various build improvements (Vincent)
Docs Translators
* Gitte Illum Petersen (da)
Translators
* Khaled Hosny (ar)
* Alexander Shopov (bg)
* David Planella (ca)
* Marek Černocký (cs)
* Christian Kirbach (de)
* Jorge González (es)
* Ivar Smolin (et)
* Arash Mousavi (fa)
* Fran Diéguez (gl)
* Yaron Shahrabani (he)
* Andika Triwidada (id)
* Torstein Adolf Winterseth (nb)
* Wouter Bolsterlee (nl)
* A S Alam (pa)
* Adi Roiban (ro)
* Yuri Myasoedov (ru)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Sahran (ug)
* Maxim Dziumanenko (uk)
* Clytie Siddall (vi)
* Wei-Lun Chao (zh_HK)
* Wei-Lun Chao (zh_TW)
==============
Version 2.32.1
==============
Panel
* Support relocating the .gnome2 directory with an environment
variable, like libgnome does (Ray Strode)
libpanel-applet
* Fix build breakage caused by wrong include (Vincent)
Misc
* Link gnome-desktop-item-edit against X libs too (Vincent)
Docs Translators
* Matej Urbančič (sl)
Translators
* David Planella (ca@valencia)
* Jorge González (es)
* Mattias Põldaru (et)
* Iñaki Larrañaga Murgoitio (eu)
* Yaron Shahrabani (he)
* Takayuki KUSANO (ja)
* Gintautas Miliauskas (lt)
* Daniel S. Koda (pt_BR)
* Sahran (ug)
================
Version 2.32.0.2
================
Panel
* Build panel with -export-dynamic. Else, it just fails badly at
runtime (Vincent)
================
Version 2.32.0.1
================
Misc
* Fix build with --as-needed (Vincent)
==============
Version 2.32.0
==============
Misc
* Associate .gir with pkg-config file (Vincent)
* Rename --enable-deprecations configure option to
--enable-deprecation-flags (Vincent)
Translators
* Petr Kovar (cs)
* Ask Hjorth Larsen (da)
* Bakaoukas Nikolaos (el)
* Ivar Smolin (et)
* Baurzhan Muftakhidinov (kk)
* Shankar Prasad (kn)
* jhsim (ko)
* Wouter Bolsterlee (nl)
* Jonh Wendell (pt_BR)
* Yuri Myasoedov (ru)
===============
Version 2.31.92
===============
This release fix various issues with panels staying hidden, or applets from the
user configuration not being visible (because the applets are or were bonobo
applets).
Panel
* Fix various issues where panels stay hidden on load or on addition
(Vincent)
* Do not queue load of an applet if it's already being loaded (Vincent)
* Fix loading of bonobo applets that are already configured (Vincent)
* Understand bonobo IID in applet_iid keys (Vincent)
* Add back optional support for bonobo applets to gnome-panel-add
(Vincent)
* Stop using deprecated gdk_display/GDK_DISPLAY() (Vincent)
* Prevent modules from being unloadable, which fixes a crash on logout
(Ray Strode)
libpanel-applet
* Fix build with gobject-introspection 0.9.5 (Colin Walters)
libpanel-applet (bonobo)
* Stop using deprecated gdk_display (Vincent)
Misc
* Small build fixes (Vincent)
* Update information in README and other files (Vincent)
* Rewrite gnome-panel man page (Vincent)
* Explicitly link to xrandr (Vincent)
Docs Translators
* Yasumichi Akahoshi (ja)
Translators
* Alexander Shopov (bg)
* David Planella (ca)
* Philip Withnall (en_GB)
* Ivar Smolin (et)
* Claude Paroz (fr)
* Gabor Kelemen (hu)
* Dirgita (id)
* Luca Ferretti (it)
* Takayuki KUSANO (ja)
* Piotr Drąg (pl)
* Duarte Loreto (pt)
* Милош Поповић (sr)
* Miloš Popović (sr@latin)
* Dr.T.Vasudevan (ta)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 2.31.90
===============
Clock Applet
* Use the polkit helper from g-s-d to set time/timezone (Vincent)
Translators
* Sense Hofstede (fy)
* Reuben Potts (gv)
* Sahran (ug)
==============
Version 2.31.6
==============
Panel
* Allow Windows key as valid mouse modifier (Ray Strode)
* Update to latest gdbus API change (Frédéric Péters)
libpanel-applet (bonobo)
* GSeal fixes (Vincent)
Workspace Switcher Applet
* Fix crash in multiscreen setups (Ray Strode)
Docs Translators
* YunQiang Su (zh_CN)
Translators
* Runa Bhattacharjee (bn_IN)
* Mario Blättermann (de)
* Kristjan SCHMIDT (eo)
* Fran Diéguez (gl)
* Sweta Kothari (gu)
* Rajesh Ranjan (hi)
* Dirgita (id)
* Shankar Prasad (kn)
* Sandeep Shedmake (mr)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Krishna Babu K (te)
* 苏运强 (zh_CN)
==============
Version 2.31.4
==============
All
* More GSeal fixes (Andre Klapper, Vincent)
* Stop using deprecated GTK+ API (Vincent)
libpanel-applet
* Update to GDBus API change (Carlos Garcia Campos)
* Add gobject-introspection support (Javier Jardón)
Clock Applet
* Add -lm when linking the clock applet (Dan Horak)
Notification Area Applet
* Fix issues with old-style multiscreen setups (Ray Strode)
Misc
* Make automatic detection of bonobo work in configure (Vincent)
Translators
* Kristjan SCHMIDT (eo)
* Ivar Smolin (et)
* Fran Diéguez (gl)
* Yaron Shahrabani (he)
* Rajesh Ranjan (hi)
* Kjartan Maraas (nb)
* A S Alam (pa)
* Theppitak Karoonboonyanan (th)
==============
Version 2.31.2
==============
Note to distributors: this release is the first release to come with a new
dbus-based applet library. This library is similar to the bonobo-based one, but
applets still need some porting work to use it. To minimize any potential
disruption for users, the panel can still use bonobo applets, using an
extension mechanism. The bonobo dependency is, however, optional and it's
possible to build gnome-panel without it.
While all the resources are currently shipped with gnome-panel, we are
considering splitting all the bonobo-related code to a new module in the
future.
The dbus-based library for applets is named libpanel-applet-3 and it is
currently not considered stable. API and ABI might change in the near future.
All
* Provide a dbus-based applet library (Carlos Garcia Campos, Vincent)
* Keep an optional bonobo-based applet library (Vincent)
Panel
* Make sure that newly-created panels become unhidden (Vincent)
Misc
* Require glib 2.25.7 (Carlos Garcia Campos)
* Make orbit and bonobo dependencies optional (Carlos Garcia Campos,
Vincent)
Translators
* Khaled Hosny (ar)
* Alexander Nyakhaychyk (be)
* Denis (br)
* David Planella (ca)
* David Planella (ca@valencia)
* Thomas Thurman (en@shaw)
* Jorge González (es)
* Iñaki Larrañaga Murgoitio (eu)
* Rajesh Ranjan (hi)
* Narine Martirosyan (hy)
* Andika Triwidada (id)
* IWAI, Masaharu (ja)
* Shankar Prasad (kn)
* Rūdolfs Mazurs (lv)
* Thierry Randrianiriana (mg)
* Sandeep Shedmake (mr)
* Kjartan Maraas (nb)
==============
Version 2.30.0
==============
Docs Translators
* Joe Hansen (da)
* Bakaoukas Nikolaos (el)
* Claude Paroz (fr)
* Kevin-Wei-2 (zh_HK)
* Kevin-Wei-2 (zh_TW)