-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathNEWS
9014 lines (6947 loc) · 246 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
==============
- Place launched applications into a systemd scope. (!72)
- Update _GNOME_WM_STRUT_AREA when panel position changes. (gnome-flashback#95)
- Updated translations.
Version 3.52.0
==============
- Support color-scheme setting. (!59)
- Make icon space from border configurable. (#20)
- Updated translations.
Version 3.50.0
==============
- Updated translations.
Version 3.49.1
==============
- Remove toggle-hidden keybinding.
- Updated translations.
Version 3.47.1
==============
- Fix memory leaks in clock applet. (#42)
- Fix clock hands position. (#43)
- Remove documentation. (#32)
- Remember current location in clock applet. (#44)
- Remove size hints API.
- Do not load broken launchers. (#40)
- Updated translations.
Version 3.46.0
==============
- Port to WnckHandle. (!5)
- Updated translations.
Version 3.44.0
==============
- Updated translations.
Version 3.43.1
==============
- Port to GWeather 4. (#38)
- Updated translations.
Version 3.42.0
==============
- Fix crash with libgweather 40.0. (#33)
- Fix regression that caused applets to be pushed outside panel. (#35)
- Show panel applets in properties dialog. (!41)
- Updated translations.
Version 3.41.2
==============
- Stop using size hints in window-list applet. (!40)
- Updated translations.
Version 3.41.1
==============
- Remove support for floating panels.
- Add new alignment setting for non-expanded panels.
- Enable HiDPI scaling.
- Updated translations.
Version 3.40.0
==============
- Fix few memory leaks.
- Adapt to libgweather API changes.
- Updated translations.
Version 3.38.0
==============
- Fix ssh/sftp bookmarks in Places menu. (#27)
- Updated translations.
Version 3.37.1
==============
- New Add to Panel dialog. (!33)
- Turn old remaining objects into applets. (!31, !30, !29, !28, !27, !22)
- Remove old libpanel-applet library. (!18)
- Updated translations.
Version 3.36.1
==============
- Fix build with gettext 0.20+. (!15)
- Fix critical warning in fish applet.
- Fix XML namespace URI in svg icons.
- Load modules only with so suffix.
- Fix critical warnings when changing monitor configuration.
- Improve Adwaita theme. (!16)
Version 3.36.0
==============
- Add support for _GNOME_WM_STRUT_AREA.
- Fix build warnings.
- Updated translations.
Version 3.35.2
==============
- Add libgnome-panel documentation.
- Add prefer-symbolic-icons setting.
- Add HighContrastInverse, Yaru, Yaru-light and Yaru-dark as supported themes.
- Make GpImageMenuItem derivable.
- Updated translations.
Version 3.35.1
==============
- Fix crashes with libgweather 3.32 in some locations.
- Make new libgnome-panel library public (it will replace libpanel-applet).
- Default layout now can be configured from org.gnome.gnome-panel.general schema.
- Change default layout location, layout now must be in layouts subdirectory.
- Updated translations.
Version 3.34.1
==============
- Updated translations.
Version 3.34.0
==============
- No changes.
Version 3.33.92
===============
- Updated translations:
Sabri Ünal (tr).
Version 3.33.1
==============
- Port to libecal-2.0.
Version 3.32.0
==============
- Fix some compiler warnings.
- Fix some deprecation warnings.
- Turn old main menu object into applet.
- Turn old menu button object into applet.
- Remove gnome-desktop-item-edit application.
- Updated translations:
Alan Mortensen (da), Anders Jonsson (sv), Balázs Úr (hu),
Daniel Mustieles (es), Marek Cernocky (cs), Марко М. Костић (sr),
Matej Urbančič (sl), Nathan Follens (nl), Kukuh Syafaat (id),
Mario Blättermann (de), Piotr Drąg (pl), Rafael Fontenelle (pt_BR),
Stas Solovey (ru).
Version 3.30.0
==============
- Turn old user menu object into applet
- Fix some build warnings
- Updated translations:
Anders Jonsson (sv), Balázs Meskó (hu), Bruno Lopes da Silva (pt_BR),
Daniel Mustieles (es), Kukuh Syafaat (id), Marek Cernocky (cs),
Mario Blättermann (de), Matej Urbančič (sl), Piotr Drąg (pl),
Rafael Fontenelle (pt_BR).
Version 3.28.0
==============
- Turn old menu bar object into applet
- Fix some build warnings
- Updated translations:
Anders Jonsson (sv), Ask Hjorth Larsen (da), Daniel Mustieles (es),
Dingzhong Chen (zh_CN), Gábor Kelemen (hu), Kukuh Syafaat (id),
Marek Cernocky (cs), Mario Blättermann (de), Matej Urbančič (sl),
Мирослав Николић (sr, sr@latin), Piotr Drąg (pl), Rafael Fontenelle (pt_BR),
Sveinn í Felli (is).
Version 3.26.0
==============
- Fix custom background color. (#783168)
- Fix tray icons when compositing is off. (#788109)
- Remove "Connect to Server..." applet.
- Updated translations:
Dušan Kazik (sk), Gianvito Cavasoli (it), Jordi Mas (ca),
Kristjan SCHMIDT (eo), Matej Urbančič (sl), Piotr Drąg (pl),
Stas Solovey (ru).
Version 3.24.1
==============
- Don't add module symbols in global name space. (#770795)
- Updated translations:
Piotr Drąg (pl).
Version 3.24.0
==============
- Improve the tasklist style. (Antonio Ospite; #769012)
- New applet - status notifier. (Alberts Muktupāvels, Colomban Wendling)
- Use upstream gettext. (Alberts Muktupāvels)
- Updated translations:
Anders Jonsson (sv), Andika Triwidada (id), Ask Hjorth Larsen (da),
Balázs Meskó (hu), Baurzhan Muftakhidinov (kk), Daniel Mustieles (es),
Dušan Kazik (sk), Enrico Nicoletto (pt_BR), Fabio Tomat (fur),
Gianvito Cavasoli (it), Kjartan Maraas (nb), Marek Černocký (cs),
Mario Blättermann (de), Мирослав Николић (sr, sr@latin), Piotr Drąg (pl),
Rafael Fontenelle (pt_BR), Sveinn í Felli (is).
Version 3.22.0
==============
- Out of process applets are no longer supported.
- GObject introspection support is removed.
- Fix user switching with GDM. (Alberts Muktupāvels; #769009)
- Disable scaling support in GTK+.
- Fix cropped pixbuf rendering during zoom animation (Yannick Gicquel; #771166)
- Fake transparency has been replaced with real transparency.
- New panel properties dialog - background settings has been replaced with
theme settings.
- Updated translations:
Andika Triwidada (id), Daniel Mustieles (es), Dušan Kazik (sk),
Kjartan Maraas (nb), Piotr Drąg (pl), Tiago Santos (pt),
Wolfgang Stöggl (de).
Version 3.20.0
==============
- Added option to use dark theme variant.
- Updated man page. (Dmitry Shachnev)
- Updated theme for GTK+ 3.20. (Alberts Muktupāvels, Balló György)
- Fixed crash when moving applet between panels.
- Fixed few deprecation warnings.
- Fix applet menu location on multi-monitor setup. (Timo Kluck)
- Updated translations:
Alexandre Franke (fr), Aurimas Černius (lt), Cédric Valmary (oc),
Dušan Kazik (sk), Gianvito Cavasoli (it), Jordi Mas (ca),
Josef Andersson (sv), Kjartan Maraas (nb), Marek Černocký (cs),
Mario Blättermann (de), Milo Casagrande (it), Мирослав Николић (sr, sr@latin),
Necdet Yücel (tr), Pedro Albuquerque (pt), Piotr Drąg (pl),
Rafael Fontenelle (pt_BR), Tom Tryfonidis (el), Trần Ngọc Quân (vi).
Version 3.18.1
==============
- Fully ported away from gnome-common.
- Fixed bug - 3px black line at the bottom of the screen.
- Fixed bug - panel background image is not resized immediately on panel
orientation or size change.
Version 3.18.0
==============
- Added missing icons in menus. (Balló György)
- Updated libpanel-applet documentation. (Sebastian Geiger)
- New panel_applet_get_gtk_orientation function in libpanel-applet library.
(Sebastian Geiger)
- Ported away from gnome-common. (Alberts Muktupāvels)
- Small improvements in themes. (Balló György)
- Updated translations:
Anders Jonsson (sv), Balázs Úr (hu), Daniel Mustieles (es),
Josef Andersson (sv), Marek Černocký (cs), Piotr Drąg (pl),
Yosef Or Boczko (he).
Version 3.17.2
==============
- Fixes in documentation. (Anders Jonsson)
- Code cleaning and formatting. (Sebastian Geiger)
- Type "catch the fish" in run dialog to stop swimming fish. (Sebastian Geiger)
- Updated translations:
Akom Chotiphantawanon (th), Marek Černocký (cs).
Version 3.17.1
==============
- Fix build with libgweather 3.17.1. (Alberts Muktupāvels)
- Updated translations:
Jordi Mas (ca).
Version 3.16.1
==============
- Make evolution dependency optional. (Alberts Muktupāvels)
- Small fixes for transparent panels. (Alberts Muktupāvels)
Version 3.16.0
==============
- Always show images in menu-bar and main-menu applets. (Alberts Muktupāvels)
- Fix GObject introspection installation. (Ryan Lortie)
- Filter out actions without icon from panel addto dialog. (Alberts Muktupāvels)
- Updated translations:
Anders Jonsson (sv), Balázs Úr (hu), Cheng-Chia Tseng (zh_TW),
Daniel Mustieles (es), Marek Černocký (cs), Muhammet Kara (tr),
Rafael Ferreira (pt_BR), Samir Ribic (bs), Shankar Prasad (kn),
Stas Solovey (ru), Yosef Or Boczko (he).
Version 3.15.2
==============
- Fixed more deprecation warnings (again). (Alberts Muktupāvels)
- Fixed evolution opening from clock applet. (Alberts Muktupāvels)
- Stop using GtkPlug/GtkSocket for in process applets. (Alberts Muktupāvels)
- Applets are build as in process applets. (Alberts Muktupāvels)
- Don't set background color for GtkMenuBar in panel. It breaks transparent
panels. (Alberts Muktupāvels)
- Fix crash in clock applet. (Alberts Muktupāvels)
- Use dbus to register with session manager, drop libegg. (Alberts Muktupāvels)
- Restored ability to have transparent panels. (Alberts Muktupāvels)
- Updated translations:
Milo Casagrande (it), Piotr Drąg (pl), Sweta Kothari (gu), Tiago S (pt),
Timo Jyrinki (fi), Tom Tryfonidis (el).
Version 3.14.0
==============
- Fix many deprecation warnings. This affects libpanel-applet, functions for
setting up applet menu has changed - GtkActionGroup replaced with
GSimpleActionGroup and added extra parameter for setting translation domain.
(Alberts Muktupāvels)
- Removed or ported to GSettings last use of gconf. This affects
libpanel-applet, all gconf related functions are removed! (Alberts
Mukutpāvels)
- Removed panel_applet_get_size function from libpanel-applet. It was deprecated
in 3.0 version. (Alberts Muktupāvels)
- Removed flashback session related files. These are now installed by
gnome-flashback module. (Alberts Muktupāvels)
- Restored EDS integration in clock applet. (Alberts Muktupāvels)
- Restored option to change icon size in menu applet from gsettings. This is
only temporary solution and panel must be restarted after changing icon
size. (Alberts Muktupāvels)
- Fix memory leak in fish applet. (Dmitry Shachnev)
- Added default style for Adwaita theme. (Alberts Muktupāvels, Balló György)
- Fixed large icons bug in applications menu. (Alberts Muktupāvels)
- Restored option to change fish applet animation. (Alberts Muktupāvels)
- Droped NetworkManager dependency by switching to GNetworkMonitor (Alberts
Muktupāvels)
- Added back show desktop applet to bottom panel. (Balló György)
- Don't hardcode application .menu file. Use XDG_MENU_PREFIX "applicaitons.menu"
to load correct .menu file. (Alberts Muktupāvels)
- Show icon in menu bar applet by default. (Balló György)
- Added hibernate, suspend, and hybrid sleep to user menu applet if logind
is available and gnome-flashback module is running. (Alberts Muktupāvels,
Balló György)
- Added support for user switching with LightDM or other display managers that
implements the org.freedesktop.DisplayManager D-Bus interface. (Balló György)
- Updated translations:
Andika Triwidada (id), Balázs Úr (hu), Daniel Mustieles (es),
Enrico Nicoletto (pt_BR), Kjartan Maraas (nb), Krishnababu Krothapalli (te),
Manoj Kumar Giri (or), Marek Černocký (cs), Matej Urbančič (sl),
Мирослав Николић (sr), Nilamdyuti Goswami (as), Rajesh Ranjan (hi),
Saibal Ray (bn_IN), Sandeep Sheshrao Shedmake (mr), Shankar Prasad (kn),
Shantha kumar (ta), Stas Solovey (ru), Sweta Kothari (gu).
NOTE: This version breaks API/ABI!
=============
Version 3.8.1
=============
Flashback Session
* Add session description for using Flashback mode with Compiz
This is _not_ a supported mode for Gnome Flashback, but only
included for Ubuntu's convenience.
(Dmitry Shachnev, Philipp Kaluza)
libpanel-applet
* Deprecation announcement:
The GConf functions for applets in libpanel-applet have been
marked as deprecated since version 3.0, but this deprecation had
never been formally announced. It has been suggested that
these functions are removed as the last included applets
migrate to GSettings.
We hereby announce that these Gconf functions will be removed
in an ABI- and API-breaking major release of libpanel-applet
sometime after 2014-12-31.
Maintainers of applets that rely on libpanel-applet are encouraged
to get in contact with the gnome-flashback-list to coordinate
a schedule that fits everybody's needs. (Philipp Kaluza)
Panel
* Increase the number of bookmarks visible in Places (Conn O Griofa)
* Miscelaneaus sizing and location issues (Alberts Muktupāvels)
* Fix a number of deprecation warnings (Alberts Muktupāvels)
* Improve names of GConf objects (Alberts Muktupāvels)
* Updated FSF's address (Daniel Mustieles)
* Update doap files (Piotr Drąg)
* Modernize run and properties dialogs (Sebastian Geiger)
* Use "gnome-applications.menu" instead of "applications.menu",
following gnome-menus 3.8 (Alberts Muktupāvels)
* Bring old translation files back in sync with current code,
especially the session files (Philipp Kaluza)
Clock Applet
* make calendar window remember location expander state (Jethro Beekman)
* remove no longer needed code (Alberts Muktupāvels)
* allow using gweather 3.9.2+ (Alberts Muktupāvels)
* Fix clock crash when adding new location (Alberts Muktupāvels)
* remove deprecated widgets (Sebastian Geiger)
wncklet applet
* no longer use stock items (Alberts Muktupāvels)
Translators
* Rūdolfs Mazurs
* Мирослав Николић (miroslavnikolic)
* michaeljayt
* Stas Solovey
* Inaki Larranaga Murgoitio
* Lasse Liehu
* MarMav
* Marek Černocký
* Daniel Mustieles
* Matej Urbančič
* Balázs Úr
=============
Version 3.8.0
=============
Flashback Session
* Ship a session descriptor and wrapper script for the "Gnome Flashback"
session (Jeremy Bicha, Philipp Kaluza)
* This is similar to the standalone fallback session previously shipped
in Debian / Ubuntu. As integration with the rest of the Gnome stack
has suffered somewhat, this is mainly aimed at distributions that
still want to support a metacity / gnome-panel based desktop (e.g.
for LTSP installations). Some integration work may be necessary - for
example, nautilus 3.8 no longer draws the X root window background.
Panel
* New Maintainer team (Jonathan Carter, Josselin Mouette, Philipp
Kaluza)
* A big thank you to Vincent Untz for your years of service !
* Fix launcher icon animation ending with black artifact
(Yannick Gicquel)
* Drop support for commandline-based calendar/tasks applications
(Philipp Kaluza)
* Ship our own version of gnome_desktop_prepend_terminal_to_vector
(Philipp Kaluza)
* Move clock back between notification area and user menu (Jeremy Bicha)
* Fix autoconf (Balló György)
* Fix some background and multi-screen issues (Alberts Muktupāvels)
Clock Applet
* No longer depend on deprecated GWeatherXML (Philipp Kaluza)
* Display sunrise/sunset times in local time not UTC (Jeremy Bicha)
Force-Quit applet
* Enable XInput2 support (Sébastien Villemot)
Notification Area applet
* Apply style after realize - fix all-black notification icons
(Daniel Drake)
* Use the generic marshaller (Jasper St. Pierre)
Translators
* Andika Triwidada
* Ani Peter
* Aurimas Černius
* Balázs Úr
* Breno Santana
* Christian Kirbach
* Daniel Mustieles
* Enrico Nicoletto
* Fran Diéguez
* Joe Hansen
* Kjartan Maraas
* Krishnababu Krothapalli
* ManojKumar Giri
* Marek Černocký
* Martin Srebotnjak
* Matej Urbančič
* Nilamdyuti Goswami
* Piotr Drąg
* Rafael Ferreira
* Rajesh Ranjan
* Sandeep Sheshrao Shedmake
* Shankar Prasad
* Shantha kumar
* Sweta Kothari
* Theppitak Karoonboonyanan
* Yuri Myasoedov
* Мирослав Николић
=============
Version 3.6.2
=============
Panel
* Avoid double forking when launching apps to not break "pkexec" (Colin
Walters)
* Fix using a variable after it was freed (Milan Crha)
Clock Applet
* Open calendar application in correct month (Marek Kasik)
Translators
* Arash Mousavi (fa)
* Shankar Prasad (kn)
* Kjartan Maraas (nb)
* Pavol Šimo (sk)
=============
Version 3.6.0
=============
* Translation updates
==============
Version 3.5.92
==============
Panel
* Rework user menu in order to match GNOME Shell 3.6 (Jeremy Bicha)
Docs Translators
* Mario Blättermann (de)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Claude Paroz (fr)
* Andika Triwidada (id)
* Changwoo Ryu (ko)
* Данио Шеган (sr)
* YunQiang Su (zh_CN)
* Mario Blättermann (de)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Laurent Coudeur (fr)
* Changwoo Ryu (ko)
Translators
* Nilamdyuti Goswami (as)
* Ihar Hrachyshka (be)
* Marek Černocký (cs)
* flemming christensen (da)
* Mario Blättermann (de)
* Tom Tryfonidis (el)
* Bruce Cowan (en_GB)
* Daniel Mustieles (es)
* Arash Mousavi (fa)
* Jiri Grönroos (fi)
* Mickael Albertus (fr)
* Fran Dieguez (gl)
* Gabor Kelemen (hu)
* Andika Triwidada (id)
* Milo Casagrande (it)
* Changwoo Ryu (ko)
* Aurimas Černius (lt)
* Piotr Drąg (pl)
* Duarte Loreto (pt)
* Fábio Nogueira (pt_BR)
* Matej Urbančič (sl)
* Theppitak Karoonboonyanan (th)
* Cheng Lu (zh_CN)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
==============
Version 3.5.91
==============
Panel
* Remove markup from translations (Matthias Clasen)
Clock Applet
* Remove markup from translations (Matthias Clasen)
Misc
* Make --enable-eds/--disable-eds really work (Priit Laes)
* Port to yelp-tools for documentation (Javier Jardón)
Translators
* Nilamdyuti Goswami (as)
* Tom Tryfonidis (el)
* Daniel Mustieles (es)
* Leandro Regueiro (gl)
* Sweta Kothari (gu)
* Yaron Shahrabani (he)
* Dirgita (id)
* Takayuki KUSANO (ja)
* Aurimas Černius (lt)
* Sandeep Shedmake (mr)
* Kjartan Maraas (nb)
* A S Alam (pa)
* Piotr Drąg (pl)
* Duarte Loreto (pt)
* Yuri Myasoedov (ru)
* Matej Urbančič (sl)
* Мирослав Николић (sr)
* Miroslav Nikolić (sr@latin)
* Dr.T.Vasudevan (ta)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
=============
Version 3.5.4
=============
configure
* Newline-separate dependency list
libpanel-util
* bgo#679971: adjust to DConf API changes
Translators
* Chao-Hsiung Liao (zh_HK)
* Ihar Hrachyshka (be)
* A S Alam (pa)
* Yaron Shahrabani (he)
* Kjartan Maraas (nb)
* Alexander Shopov (bg)
* Nilamdyuti Goswami (as)
* Khaled Hosny (ar)
=============
Version 3.5.3
=============
libpanel-applet
* Use on_bus_acquired instead of on_name_acquired (Joachim Breitner)
Clock Applet
* Port to modern GNOME tecnologies, so no more GConf in
gnome-panel (Giovanni Campagna)
* Adapt to Evolution-Data-Server API changes (Matthew Barnes)
Translations
* Daniel Mustieles (es)
* Fran Diéguez (gl)
* Tom Tryfonidis (el)
* Matej Urbančič (sl)
===============
Version 3.4.2.1
===============
Panel
* Fix GTK+ runtime check used to determine bookmark file (Vincent)
=============
Version 3.4.2
=============
Panel
* Use new GTK bookmarks location if using GTK+ >= 3.5.1 (Vincent)
Translators
* Mark Kwidzińsczi (csb)
=============
Version 3.4.1
=============
Docs Translators
* Paula (id)
* Yuri Kozlov (ru)
* OKANO Takayoshi (ja)
* Yuri Kozlov (ru)
Translators
* David Planella (ca)
* David Planella (ca@valencia)
* Sandeep Shedmake (mr)
* Antonio Fernandes C. Neto (pt_BR)
=============
Version 3.4.0
=============
Docs Translators
* Bhuvan Krishna (te)
Translators
* Reşat SABIQ (crh)
* Praveen Arimbrathodiyil (ml)
* Clytie Siddall (vi)
==============
Version 3.3.92
==============
Panel
* Add style class for orientation to several widgets to allow adjust
theming on vertical panels (Peter Hurley)
* Fix random grey box on logout (Peter Hurley)
Translators
* Nilamdyuti Goswami (as)
* Seng Sutha (km)
==============
Version 3.3.91
==============
Panel
* Fix rendering of the handle in the applet frame widget (Peter Hurley)
* Fix themed background pattern (Peter Hurley)
* Several PanelSeparator improvements (Peter Hurley)
* Fix position re-shuffling on orientation change (Peter Hurley)
Misc
* Add --disable-documentation option (Colin Walters)
* Fix srcdir != builddir for gresources (Colin Walters)
Docs Translators
* OKANO Takayoshi (ja)
Translators
* Mattias Põldaru (et)
==============
Version 3.3.90
==============
Panel
* Remove obsolete help buttons (Jeremy Bicha, Vincent)
Clock Applet
* Use new GdkPixbuf API to load resources (Vincent)
Wnck Applets
* Remove obsolete help buttons (Vincent)
Translators
* Ihar Hrachyshka (be)
=============
Version 3.3.5
=============
Note: the port to org.freedesktop.timedate1 is not tested due to some issues on
my system. Feedback welcome!
Panel
* Don't ask for menus to be pushed in (Matthias Clasen)
* Use horizontal/vertical padding for button widgets (Peter Hurley)
* Use GResource for data files (Vincent)
* Stop using deprecated gtk_[hv]box_new() (Vincent)
libpanel-applet
* Don't ask for menus to be pushed in (Matthias Clasen)
* Add panel_applet_setup_menu_from_resource() API (Vincent)
All Applets
* Use GResource for data files (Vincent)
Clock Applet
* Stop using deprecated gtk_[hv]box_new() (Vincent)
* Always show actions to set time (Vincent)
* Port to org.freedesktop.timedate1 to set timezones (Vincent)
Fish Applet
* Move fish animations data files in fish-specific directory (Vincent)
Misc
* New dependency on polkit-gobject-1 (Vincent)
Docs Translators
* OKANO Takayoshi (ja)
* Gil Forcada (ca)
Translators
* Jovan Naumovski (mk)
* Kjartan Maraas (nb)
=============
Version 3.3.3
=============
Panel
* Explicitly link to gmodule-2.0 (Vincent)
Docs Translators
* Yuri Myasoedov (ru)
Translators
* Xandru Armesto (ast)
* Ihar Hrachyshka (be)
* Tiffany Antopolski (eo)
* Thura Hlaing (my)
* Lucian Adrian Grijincu (ro)
=============
Version 3.3.1
=============
Panel
* Support instance configuration of objects in default layout (Vincent)
* Do not assert on error when using default layout (Vincent)
* Make it possible to load a default layout from the user config
(Vincent)
* Fix loading launchers defined with relative paths (Vincent)
* Fix panels forced to be big because of user menu (Vincent)
* Fix wrong height of Places menu item in main menu (Vincent)
* Change default size of icon in menu bar & user menu applets to 16
(Vincent)
Translators
* Ihar Hrachyshka (be)
* David Planella (ca@valencia)
* Jorge González (es)
* Erdal Ronahî (ku)
* Rūdolfs Mazurs (lv)
* Kjartan Maraas (nb)
* Мирослав Николић (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)