summaryrefslogtreecommitdiff
path: root/NEWS
blob: 71ab3ca5c09be6150d6020b5e5a675202b121ca7 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
4.16.0
======
- panel: Fix intellihide with CSD (Fixes #368)
- tasklist: Fix wireframe for CSD windows (Fixes #338)
- tasklist: Auto-adjust icon size (Closes #90)
- Revert "tasklist: Auto-adjust icon size (Closes #90)"
- Fix GSourceFunc removal
- Remove GSourceFunc casts
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump


4.15.6
======
- settings: Use spinbuttons for size and nrows
- settings: Update item listview toolbar
- Make dbusmenu-gtk3-0.4 optional, disables StatusNotifier integration
- gobject introspection wants a capital letter for the gir file
- Use new xfce_spawn API
- Bump GLib (and gio, gthread, etc) minimum to 2.50.0
- Update .gitignore
- Add README.md to EXTRA_DIST
- Fix compiler warnings
- Fix memory leaks
- Drop generated code from repo
- Revert "launcher: Appear "checked" on click (Fixes #256)"
- Translation Updates:
  Chinese (China), Estonian, Norwegian Nynorsk, Russian, Serbian,
  Slovak, Slovenian, Turkish, Vietnamese

4.15.5
======
- actions: Switch to new session icons (Fixes #332)
- add-items: Drop not-so-helpful dialog subtitle
- add-items: Bump default dialog size (Fixes #258)
- launcher: Appear "checked" on click (Fixes #256)
- tasklist: Limit blinking notification
- intellihide: Check if cursor is over the panel (Fixes #311)
- launcher: Set plugin icon as fallback (Fixes #329)
- Add new README.md
- Fixed icon for about dialog and added more icons for better scaling
- Unref datetime objects
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian (Armenia), Basque, Belarusian,
  Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong),
  Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian,
  English (Australia), English (United Kingdom), Estonian, Finnish,
  French, Galician, Georgian, German, Greek, Hebrew, Hungarian,
  Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
  Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post
  1500), Panjabi (Punjabi), Polish, Portuguese, Portuguese (Brazil),
  Romanian, Russian, Serbian, Sinhala, Slovak, Slovenian, Spanish,
  Swedish, Thai, Turkish, Ukrainian, Uyghur, Vietnamese

4.15.4
======
- New plugin: statustray (supports statusnotifier and systray)
- plugins: Add new rDNS icons for all plugins
- Use shared field codes expansion
- tasklist: Add "Launch New Instance" item to menu (Fixes #158)
- Translation Updates:
  Albanian, Chinese (China), Chinese (Taiwan), Croatian, Estonian,
  French, Hebrew, Japanese, Kazakh, Korean, Lithuanian, Norwegian
  Bokmål, Polish, Portuguese, Portuguese (Brazil), Serbian, Swedish,
  Turkish

4.15.3
======
- Add new app icon and rDNS icon name
- Fix background of 48px app icons (Bug #16873)
- dark-mode: Make property unique across panels
- tasklist: Allow keyboard navigation within groups (Fixes #270)
- applicationsmenu: Correctly block autohiding (Fixes #287)
- action buttons: Fix combobox signal
- action buttons: Drop 'inverted buttons' setting (#223)
- action buttons: Add button title options (Bug #8980)
- action buttons: Fix separator width (Bug #15558)
- launcher: Fix launcher menu button state (Fixes #264)
- launcher: Fix crash with actions menu (Bug #16823)
- launcher: Fix in default panel configuration
- Improve docs for xfce_panel_plugin_position_widget (Bug #9438)
- Add Gio to libxfce4panel gir includes
- Add basic GitLab pipeline
- Fix whitespace error
- Fix panel build with vala 0.48 (Bug #16426)
- Fix build
- Update gitignore (Fixes #295)
- Drop references to Gtk2 and 4.6 panel plugins
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian (Armenia), Belarusian, Bengali,
  Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
  (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English
  (Australia), English (United Kingdom), Estonian, Finnish, French,
  Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
  Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Lithuanian,
  Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
  Panjabi (Punjabi), Polish, Portuguese, Portuguese (Brazil), Romanian,
  Russian, Sinhala, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish,
  Uighur, Ukrainian, Vietnamese

4.15.2
======
- panel: Improve autohide animation
- panel: Add "popdown-speed" property to adjust autohide animation
- panel: Fix autohide state machine
- panel: Fix cancellation of autohide animation
- panel: Immediately show panel in intellihide
- panel: Don't tamper with leave_opacity value (Bug #16296)
- launcher: Show desktop actions in context menu
- plugin: Show custom menu items below plugin name
- tasklist: Hide brackets for min windows by default
- tasklist: Fix crash middle-click-closing grouped windows (Bug #16410)
- systray: Basic support for symbolic icons
- systray: Silence deprecation warnings
- systray: Remove superfluous warning
- Improve wording in "Remove plugin" dialog (Bug #9000)
- settings: Add keywords for discoverability (Bug #10694)
- Fix GTimeVal deprecation (Bug #16643)
- Fix memory leak in panel plugin wrapper (Bug #16640)
- Update docstring
- Update libxfce4panel symbols
- Make var names more consistent
- Fix cast
- Fix typo
- Fix indentation
- Translation Updates:
  Albanian, Basque, Belarusian, Bulgarian, Catalan, Chinese (China),
  Chinese (Taiwan), Croatian, Danish, Dutch, Finnish, French, Galician,
  Georgian, German, Hebrew, Hungarian, Italian, Japanese, Kazakh,
  Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese
  (Brazil), Russian, Serbian, Slovenian, Spanish, Turkish, Ukrainian

4.15.1
======
- Enable dark-mode by default
- tic-tac-toe: Fix XfceTitledDialog with CSD
- add-item dialog: Fix XfceTitledDialog with CSD
- systray: Improve app icon lookup
- directorymenu: Add create folder/document menuitems (Bug #15639)
- directorymenu: Add option to hide folder/terminal menuitems (Bug
#15630)
- plugins: Fix enter/leave opacity w/o compositing (Bug #14577)
- clock: Drop leading zeros for days in default layout
- clock: Add back hour:min to format presets (Bug #16035)
- panel: Make sure "span monitors" is conditionally sensitive
- tasklist: Fix drag&drop in deskbar mode (Bug #16298)
- Fix autohide with bg color or image (Bug #16064)
- Improve the marching ants animation
- Remove extra underscore (Bug #16266)
- Use an empty placeholder icon for launcher (Bug #15819)
- Always provide files for vala binding in dist tarball
- Replace GtkStock icon
- Use symbolic window-close button image
- Fix doc typos
- Fix indentation
- Translation Updates:
  Albanian, Basque, Bulgarian, Catalan, Chinese (China), Chinese
  (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom),
  Finnish, French, Galician, Georgian, German, Greek, Hungarian,
  Interlingue, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish,
  Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian,
  Spanish, Swedish, Turkish

4.15.0
======
 - Drop support for Gtk2 and 4.6 plugins
 - Drop Gtk2/4.6-only references from the docs
 - Don't show or try to load Gtk2 plugins anymore
 - Add dark mode preference
 - autohide: Add sliding out animation
 - Draw panel border based on position and length
 - appmenu: Listen to icon theme changes (Bug #15861)
 - appmenu: Use panel's icon size
 - clock: Validate timezone entry (Bug #16036)
 - prefs: Plug memory leaks (Bug #16016)
 - docs: Fix build by dropping unused refs (Bug #16031)
 - pager: Fix scrolling in pager-buttons (Bug #15614)
 - pager: Face-lift of settings dialog
 - pager: Only show scroll-option with buttons
 - pager: Add option to show workspace number
 - systray: Drop "Show frame" option (Bug #14186)
 - tasklist: Resize when windows get removed (Bug #14394)
 - systray: Fix icons without compositing (Bug #14577)
 - windowlist: Make layout consistent with xfdesktop
 - windowlist: Replace deprecated gtk_widget_modify_font
 - launcher: Fix visual state of arrow-button (Bug #15818)
 - launcher: Avoid excessive left padding on popup menu (Bug #15819)
 - Fix typos and improve code formatting
 - Translation Updates:
   Albanian, Arabic, Armenian (Armenia), Belarusian, Bulgarian, Chinese
   (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician,
   German, Greek, Hebrew, Hungarian, Indonesian, Italian, Japanese,
   Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese
   (Brazil), Russian, Serbian, Slovak, Spanish, Swedish, Thai, Turkish

4.14.0
======
 - tasklist: Keep panel visible on drag and drop (Bug #15703)
 - pager: Keep panel visible on drag and drop (Bug #15703)
 - launcher: Make dialog's context menu popup at pointer
 - Make strings translatable
 - Translation Updates:
   Chinese (China), Danish, Finnish, Galician, German, Hungarian, Italian,
   Japanese, Kazakh, Lithuanian, Norwegian Bokmål, Portuguese (Brazil)

4.13.7
======
 - Make vala and gobject-introspection optional
 - clock: Add short weekday to default clock string
 - clock: Add date to default clock layout (Bug #15456)
 - prefs: Improve position of panel profiles button (Bug #15657)
 - tasklist: Fix position of group indicator in vertical mode
 - tasklist: Fix overlapping vertical window titles (Bug #14901)
 - tasklist: Add fallback for missing window icons (Bug #15511)
 - directory-menu: Use natural order for sorting (Bug #15413)
 - arrow-button: Remove timeout on dispose (Bug #15696)
 - pager: Ensure bg color is set correctly (Bug #15690)
 - show-desktop: Toggle also when DND-ing (Bug #15654)
 - tic-tac-toe: Add mnemonic to Close button
 - tic-tac-toe: Avoid use-after-free/double-free (Bug #15649)
 - Translation Updates:
   Albanian, Armenian (Armenia), Belarusian, Bulgarian, Catalan, Chinese
   (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Finnish,
   French, Galician, German, Hungarian, Italian, Japanese, Kazakh,
   Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese
   (Brazil), Russian, Serbian, Spanish, Thai, Ukrainian

4.13.6
======
- Update default panel layout
- Bugfixes:
  - Retain original GDK_CORE_DEVICE_EVENTS setting for plugins (Bug
  #15044)
  - directorymenu: Fix plugin menu autohide behaviour
  - prefs: Add missing mnemonic accelerators (Bug #15652)
  - prefs: Improve window title (Bug #15653)
  - prefs: Correct capitalization of labels (Bug #15651)
  - arrow-button: Allow connect_after signals on draw
  - tasklist: Draw grouped windows count indicator (Bug #10844)
  - tasklist: Only base bg color of group indicator on Gtk theme
  - tasklist: Avoid draw signal loop
  - tasklist: Don't show actionsmenu in grouped windows (Bug #15622)
  - Add more accelerators to dialog buttons (Bug #15490)
  - AC_CONFIG_MACRO_DIR -> AC_CONFIG_MACRO_DIRS
  - Fix typo in debug output
- Translation updates:
    Albanian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan),
    Croatian, Czech, Danish, Dutch (Flemish), English (Australia), French,
    German, Italian, Lithuanian, Polish, Portuguese, Portuguese
    (Brazilian), Serbian, Spanish, Turkish

4.13.5
======
- Bugfixes:
  - Revert "Applications menu icon sizing fixes" (Bug #14976)
  - Make sure panel plugin icons aren't clipped (LP #1756608)
  - actions: use a different icon for hybrid sleep when possible (Bug #15204)
  - Fix compiler error -Wcast-function-type (GCC 8)
  - Fix alpha-transparent background images (Bug #14850)
  - Fix this use of "defined" may not be portable
  - Bump glib version to 2.42.0
  - tasklist: Activate parent windows (Bug #15307)
  - launcher: Fix tooltip icon size (Bug #15319)
  - Hide systray frame in default panel config
  - separator: Use symbolic icon for more clarity (Bug #15359)
- Translation updates: Albanian, Arabic, Asturian, Basque, Belarusian, Bengali,
    Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Czech, Danish,
    Dutch (Flemish), English (Australia), English (Great Britain), Estonian,
    Finnish, Galician, German, Greek, Icelandic, Indonesian, Italian, Kazakh,
    Korean, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan,
    Panjabi, Portuguese, Portuguese (Brazilian), Romanian, Russian, Serbian,
    Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur,
    Vietnamese

4.13.4
======
- Add per-panel setting "icon-size"
- Set minimum Gtk+3 version to 3.22
- Bugfixes:
  - Gtk+ deprecation fixes (all plugins)
  - tasklist: Fix group-button states
  - libxfce4panel: arrow button size fixes
  - launcher: plugin sizing fixes
  - appmenu: Add support for other menu editors (Bug #11684)
  - tasklist: Fix urgency blinking for group buttons (Bug #6904)
  - tasklist: Add 'group-button' styleclass
  - Fix anchors for gtk_menu_popup_at_widget (Bug #14803)
  - Fix struts on the bottom and right of the screen (Bug #14886)
  - tasklist: Don't listen for monitor changes in the plugin (Bug #10725)
  - tasklist: Use Gdk to to determine which monitor contains a window
  - tasklist: Ensure pressed buttons with open menus
  - tasklist: Replace exo-lucency with gtkcss
  - tasklist: Make all-minimized group buttons translucent (Bug #10862)
  - tasklist: Switch from wnck* icons to standard names
  - tasklist: Keep groupbutton active after closing menu
  - tasklist: Make sure icons in the group menu are 16px
  - tasklist: Make grouped buttons active (Bug #9129)
  - launcher: Rely on icon-size provided by panel
  - Prevent crash on removing certain plugins (Bug #14418)
  - Add "configure" button to composited infobar
  - Make compositor info in settings dialog a GtkInfoBar
  - directorymenu: Fix crash and drop deprecated call
  - Fix unreadable panel items without compositing (Bug #14842)
  - launcher: Fix arrows not being shown (Bug #14373)
  - launcher: Fix tooltip icon size (Bug #14774)
  - Re-introduce button images to plugin settings dialogs
  - Make the settings dialog more HIG compliant
  - launcher: Add 'New Link' button to properties (Bug #14855)
  - Drop the panel's welcome dialog (Bug #14388)
  - clock: Resolve deprecations and fix binary clock
  - Workaround for xinput2's subpixel handling (LP #1795135)
  - Ensure the orientation style classes are always applied
  - Add orientation-related style classes for improved theming
  - actions: Add support for dm-tool
  - panel-window: set struts with monitor scaling
-Translation updates: Albanian, Arabic, Asturian, Basque, Belarusian, Bengali,
  Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan),
  Croatian, Czech, Danish, Dutch (Flemish), English (Australia), English
  (Great Britain), Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian,
  Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan, Panjabi, Polish,
  Portuguese, Portuguese (Brazilian), Romanian, Russian, Serbian, Slovak,
  Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur,
  Vietnamese

4.13.3
======
- Bugfixes:
  - Get the actual widget state flags to avoid constant redraws (Bug #14307)
  -	launcher: Fix empty button in remove launcher dialog (Bug #13962)
  -	launcher: Make sure icons are not oversize
  - launcher: Make sure the appropriate icon size is used
  - launcher: Fix resizing of pixbuf based icons (Bug #14138)
  - Move "Separator" to the top of the "Add New Items..." menu (Bug #14086)
  - Make a couple of strings translatable (Bug #14338)
  - Make former GtkStock dialog buttons translateable (Bug #14338)
  - Make double-click add plugin in the "Add item" dialog (Bug #9784)
  - clock: Improve discoverability of tooltip help-texts (Bug #11708)
  - Correctly initialize return value (Bug #10873)
  - Gtk+3 fixes:
    Fix various warnings with Gtk3 (Bug #14135)
    Fix Gtk+3 version in ifdef
    Use 'gdk_screen_is_composited' with Gtk3 (Bug #14128)
  	Try to fix menu positioning with Gtk3.22
  - Various icon fixes:
    Switch to GtkIconTheme (Bug #14125)
    Fix missing icons with Adwaita icon theme (Bug #14133)
    Fix remaining deprecated icon names
- Translation updates: Belarusian, Bulgarian, Catalan, Chinese (China),
   Croatian, Czech, Danish, Dutch (Flemish), English (Australia), Finnish,
   French, Galician, German, Greek, Hebrew, Hungarian, Italian, Japanese,
   Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese (Brazilian),
   Russian, Serbian, Turkish, Ukrainian

4.13.2
======
- Add support for gobject-introspection (Vidar Haarr)
- Bugfixes:
  - actions: Fix GPtrArray usage (Bug #13981)
  - actions: Show Hybrid Sleep option (Bug #12771)
  - clock: Fix invalid datetime formats appearing in list (Bug #11527)
  - clock: Use freedesktop.org compliant icon (Bug #13779)
  - clock: Add a validator for digital custom formats (Bug #11527)
  - clock: Fix format validation (Bug #11527)
  - launcher: Fix custom images
  - tasklist: Fix scrolling to cycle through open windows (Bug #13789)
  - tasklist: Define cosmetic default padding for images (Bug #13865)
  - tasklist: Fix alignment of labels when orientation is changed (Bug #13864)
  - tasklist: Allow to hide label decorations (Bug #10546)
  - systray: Fix crash when systray is empty (Bug #13927)
  - systray: Don't lookup hash table for null keys (Bug #11929)
  - systray: Add option to display icons with square sizing (Bug #12093)
  - Pass socket id to D-Bus service to embed settings window (Bug #13854)
  - Make "Automatic" the default selection in the panel config dialog
  - Fix make distcheck (But #14040)
  - Improve gtkdoc
- Translation updates: Arabic, Asturian, Basque, Bengali, Bulgarian, Catalan,
   Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech,
   Danish, Dutch (Flemish), English (Australia), English (Great Britain),
   Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian,
   Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Malay,
   Norwegian Bokmål, Norwegian Nynorsk, Occitan, Panjabi, Polish, Portuguese,
   Portuguese (Brazilian), Romanian, Russian, Serbian, Slovak, Slovenian,
   Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur, Vietnamese

4.13.1
======
- Port to GDBus (Ali)
   This means the panel now depends on xfconf 4.13 - recommended is 4.13.3.
- Features:
  - systray: Allow ordering of items (Bug #11929)
  - tasklist: Add styleclass to make life easier for themers
- Bugfixes:
  - Fix DND between external plugins (Bug #13687)
  - Fix drag and drop for internal plugins (Bug #13642)
  - Correct enter and leave opacity label positions (Bug #13594)
  - Fix Gtk3 XfceArrowButtons not blinking (Bug #13599)
  - Fix datarootdir declaration in .pc files (Bug #13589)
  - Use fd.org terminal icon name (Bug #13592)
  - Don't let the wrapper crash on unknown properties (Bug #13614)
  - Set default panel-2 size of default settings
  - windowmenu: Fix icon size in menu
  - systray: Fix alignment of single non-square items (Bug #9095)
  - clock: Make the default date and time format translatable (Bug #9637)
- Translation updates: Arabic, Bengali, Bulgarian, Catalan, Chinese (China),
   Chinese (Taiwan), Croatian, Czech, Danish, Dutch (Flemish), French, German,
   Hebrew, Indonesian, Japanese, Kazakh, Korean, Lithuanian, Norwegian Bokmål,
   Polish, Portuguese, Portuguese (Brazilian), Russian, Slovak, Spanish, Swedish,
   Turkish, Ukrainian

4.13.0
======
- Port to Gtk3:
    The port is the result of the hard work Nick, Peter, Andrzejr, Simon and
    many others that helped with testing, patches and translations.
- Features:
  - Support for the "primary" monitor option in RandR
  - Gtk2 plugins are still supported and work almost completely fine
    (see regressions below)
- Deprecations:
  - xfce_panel_image is deprecated, instead plugins shall use GtkImage and
    xfce_panel_plugin_get_icon_size which introduces defined icon size-steps
    to avoid fuzzy icons
- Known regressions:
  - The panel is not visually focused by default (fixed in Xfwm4>=4.12.4)
  - Moving panel plugins via drag and drop on the panel directly via the plugins
    context menu action "Move" is currently broken (works fine in preferences dialog)
  - Small regression with intelligent hiding (when opening a menu, the panel
    hides and comes back immediately while it should just remain visible)
  - Enter/leave opacity does not work for Gtk2 plugins
  - Not all panel settings may be kept as the configuration is not 100% backward
    compatible (e.g. we're using GdkRGBA instead of GdkColor for the backgorund)
- Known todos:
  - Fix all bugs/regressions
  - Remove more/all Gtk+ deprecations
    (lots of warnings when compiling currently)
- Lots of translations updates

4.12.1
======
- Long overdue maintenance release.
- Translation updates.
- Clock: fixed compiler warnings.
- Preferences: support for xfpanel-switch (if installed).
- DirectoryMenu: fixed bugs #10331 and #11742
- Tasklist: fixed background color issue.
- ApplicationsMenu: fixed uninitialized variable.
- make distcheck fix/workaround.

4.12.0
======
- Actions: Use localization for confirmation dialog titles (bug #11949)
  (Ramon Dantas).
- Use actual output geometry to place panels (bug #11058) (John Lindgren).
- Tasklist: Fix grouped icons sometimes are wrongly rendered as a mini-icon
  (bug #10846) (Mauro Giubileo).
- Actions: Use common icon names (bug #11513).
- Pager & tasklist: Disabled wrapping when scrolling (bug #6401).
- Clock: Prevent recursion of symlinks.
- Make panel hide intelligently with shaded windows (bug #11371).
- Translation updates: he, es, sl, nb, ast, ru, pl, bg, fr, ro

4.11.2
======
- Added intelligent panel hiding (JPohlmann, ochosi)
- Action buttons: only save session when requested (bug #7930)
- Translation updates: fi, fr, ko, de, pl, cs, es, hr, ms, nl, pt_BR,
  ja, uk, sr, it, th, is, da, pt, en_AU, kk, ru, zh, CN, ast, tr, sk,
  he, ar, el.

4.11.1
======
- Action Buttons: Fix panel autohide (bug #8960) (Petr Gajdůšek).
- Application sMenu: fixed incorrect initial icon size in some Gtk themes.
- Window Buttons: fixed rendering of minimized window buttons.
- Applications Menu: changed default button title to "Applications".
- Window Buttons: wrap windows when scrolling through window list
  (Andre Miranda).
- libxfce4panel: preserve ArrowButton relief during blinking.
- Window Buttons: prevent several buttons to be selected at once.
- Action Buttons: default to a horizontal button layout in the deskbar mode.
- Translation updates: ja, sv, hr, es, de, vi, ast, nb, it, bg, fr, nl, uk,
  zh_CN, kk, pl, zh_TW, ru, is, nb, id, th, pt, he, en_AU, pt_BR, sr, ms

4.11.0
======
- Window Buttons: Improve the tasklist multimonitor handling.
- Scroll the items list in the config dialog box (bug #10582)
- Set EWMH client type to WNCK_CLIENT_TYPE_PAGER (bug #10508).
- Fixed transparency issues with Gtk3 plugins.
- Workspace Switcher: fixed aspect ratio in deskbar mode.
- Added --enable-gtk3 configure flag. Note: it produces gtk2/gtk3 versions
  of libxfce4panel and wrapper binary so that both gtk2 and gtk3 plugins can
  be embedded. The panel and stock plugins are still using gtk2.
- Applications Menu: Use new GarconGtkMenu.
- Window Buttons: middle-click action configurable (nothing, close, minimize).
- Drectory Menu: Pass path to argument (bug #10270).
- Window Buttons: close a window on middle click (bug #8096).
- Applications Menu: support for non-square icons and layout fixes.
- Install XfcePanelPlugin properties at once.
- Clock: added support for timezone selection.
- Put each window in a new window group.
- Window Buttons: Show urgent windows from other workspaces (bug #5167).
- Clock: calendar popup.

4.10.1
======
- Bugfix in icon/pixbuf resizing code.
- Fix icons not probably resizing when requested.
- Autotools updates.
- Ignore GVarueArray compiler warning.
- Use G_ENABLE_DEBUG to set fatal messages.
- Fixed DnD markers with non-square small items.
- Actions: Fix logic of session saving (bug #8857).
- Panel: Emit save signal for plugins.
- Libxfce4-panel: Fix typo in the API docs.
- Translation updates: Arabic, Bulgarian, German, Croatian, Polish,
  Serbian, Swedish, Turkish, Uyghur.

4.10.0
======
- Use correct LGPL licenses in the libs.
- Restore child properties when moving a plugin.
- Migrate: Use correct pointer for action migrate (bug #8781).
- Migrate: Don't try to migrate already migrated plugin (bug #8778).
- Translation updates: German, English (United Kingdom), Spanish
  (Castilian), French, Galician, Hungarian, Japanese, Korean, Dutch
  (Flemish), Polish, Portuguese, Portuguese (Brazilian), Romanian,
  Chinese (China).

4.9.2
=====
- Launcher: Fix desktop file monitoring on some systems.
- Panel: Improved DnD markers.
- Panel: Fix invalid autohide with socket dialog (bug #8617).
- Panel: Remove duplicated function.
- Panel: Remove duplicated function.
- Actions: Show translated strings (bug #8660).
- Check for sed using a macro.
- Actions: Fix mnemonics conflict (bug #8657).
- Clock: Fix compiler warning (bug #8648).
- Bump version-info of libxfce4panel.
- Translation updates: Arabic, Catalan (Valencian), Czech, Danish,
  German, Greek, Esperanto, Spanish (Castilian), Estonian, Basque,
  Persian, Finnish, French, Galician, Hebrew, Croatian, Hungarian,
  Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Dutch
  (Flemish), Norwegian Nynorsk, Polish, Portuguese, Portuguese
  (Brazilian), Russian, Slovak, Telugu, Turkish, Ukrainian, Chinese
  (China), Chinese (Taiwan).

4.9.1
=====
- Panel: Don't destroy window when focussed and Alt+F4 is
  pressed (bug #7378).
- Panel: Use new help function to redirect to docs.xfce.org.
- Docs: Remove mallard documentation.
- Docs: Don't install the gtkrc README.
- Clock: Don't use sigval_t (bug #8297).
- Panel: Add support for pluggable dialogs.
- Panel: Save changed plugin ids if a plugin failed to load.
- Directorymenu: Fix prefered app not working without snotify (bug #8298).
- Launcher: Small=FALSE in deskbar mode with label visible.
- Actions: Limit size of action buttons to row size.
- Panel: Removed item size checks.
- Clock: Fixing clock orientation in vertical/deskbar mode.
- Pager: Fixing infinite loopin in the WNCK pager aspect ratio workaround.
- Pager: Fixing plugin->size updates.
- Pager: Fixed workspace ordering in the vertical mode.
- Pager: Workaround for aspect ratio error in WNCK pager in deskbar mode.
- Pager: Changing orientation depending on the panel mode.
- Clock: Changing default value of rotate-vertically to TRUE.
- Pager: Fixed preprocessor macro.
- Pager: Removing broken workaround for aspect ratio in deskbar mode.
- Pager: Making use of a fixed libwnck version (>=2.31.0).
- Revert "Use realtime POSIX timers for the clock."
- Revert "Clock: Don't use sigval_t (bug #8297)."
- Launcher: Show the desktop file in the tooltip (bug #8536).
- Panel: Make string in about translatable (bug #8545).
- Panel: Don't ask for panel when inserting items (bug #8544).
- Panel: Reply to the caller for plugin events (bug #7365).
- Applicationsmenu: Fall-back to xfdesktop for
  xfce4-popup-applicationsmenu (bug #7365).
- Applicationsmenu: Recurse application menu selection-done gignal (bug #8541).
- Panel: Add (un)lock option to panel menu (bug #6980).
- Panel: Add confirmation before creating launchers from dnd (bug #6926).
- Applicationsmenu: Allow non-squared icons in applications button (bug #7381).
- Panel: Save plugin-ids when removing and moving items in ed.
- Tasklist: Bringing back 4.8 max-button-size property.
- Tasklist: Capping buttons height when button labels are visible.
- Tasklist: Reverting "ceil" to "floor" (as in 4.8).
- Actions: Query visibility and save as strings.
- Translation updates: Arabic, Catalan (Valencian), Czech, Danish,
  German, Esperanto, Spanish (Castilian), Basque, Finnish, French,
  Hebrew, Hungarian, Indonesian, Italian, Kazakh, Korean, Lithuanian,
  Dutch (Flemish), Norwegian Nynorsk, Polish, Portuguese, Portuguese
  (Brazilian), Russian, Slovak, Telugu, Turkish, Ukrainian, Chinese
  (China), Chinese (Taiwan).

4.9.0
=====
- Panel: Add option in preferences dialog to disable struts (bug #7202).
- Showdesktop: Allow middle-click to shade windows (bug #7177).
- Panel: Add style property to control size of autohide window.
- Panel: Make compositing settings insensitive (bug #7862).
- Tasklist: Add option to disable mouse scrolling (bug #6996).
- Tasklist: Make the plugin shrink instead of expand (bug #7389, #7129).
- Drop AC_PROG_LIBTOOL and AC_DISABLE_STATIC for LT_PREREQ and LT_INIT.
- Clock: Use realtime POSIX timers for the clock.
- Actions: Merge functionality of xfce4-session plugin.
- Applicationmenu: Show menu on button-press-event (bug #8047).
- Migrate: Add version based config migration.
- Clock: Fix typo in tooltip (bug #8137).
- General: Add deskbar mode and nrows property to plugins.
- General: Add small property for plugins.
- Separator: Remove new line option.
- General: Make plugins work with deskbar mode and small property.
- Panel: Change drop highlighting to a red line.
- Applicationmenu: Reload menu on directory changes.
- Panel: Make sure the panel has a position on startup (bug #8287).
- Panel: Work with a unique id for each panel.
- Panel: Remove autosaving on exit and with timeout.
- Panel: Only save what is required and when needed.
- Docs: Update to latest version.

4.8.6
=====
- Panel: Wait until the wm is ready on all screens (bug #7161).
- Systray: Control the thinkness of the frame (bug #7593).
- Launcher: Fix broken compilation (bug #7966).
- Launcher: Don't reconstruct the items on save (bug #7952).
- Applicationsmenu: Fix segfault with not-existing menu (bug #7895).
- Libxfce4panel: Avoid problem if panel is not yet realized.
- Panel: Print string in case of an invalid position.
- Libxfce4panel: Always try to return an icon.
- Directorymenu: Also send the target directory as arg (bug #7745).
- Translation updates (it, tr, nl, sk, pt_BR, te, zh_CN, pt, ru, ko,
  ja, ro, fr, kk, ms, es, id, eu).

4.8.5
=====
- Tasklist: Avoid unneeded dnd actions.
- Launcher: Fix plugin size with arrow button (bug #7747).
- Tasklist: Allow both motion activation and dnd (bug #7755).
- Panel: Fix off-by-one error in strut sizes (bug #7739).
- Tasklist: Fix assert in button dnd (bug #7741).
- Panel: Make preferences dialog work in Gtk+ 2.24.5.
- Systray: Add xfpm to known apps for a decent icon.
- Tasklist: Drop Gtk 2.22 API.
- Migrate: Fix 4.6 transparency migration (bug #7523).
- Translation updates (nl, zh_CN, de, pt, ja).

4.8.4
=====
- Systray: Fix disappearing icons when drawing at 0,0 (bug #7057).
- Panel: Fix panel loading in kiosk mode.
- Common: Update online documentation help location.
- Launcher: Fix spacing in vertical panel with arrow on the side (bug #7584).
- Panel: Set window colormap and change autohide window type (bug #7435).
- Migrate: Fix 4.6 migration of action buttons (bug #7543).
- Libxfce4panel: Fix menu positioning for moved external plugins (bug #7529).
- Panel: Improve thread-safety.
- Libxfce4panel: Idle XfcePanelImage loading.
- Pager: Make the pager message less scary.
- Windowmenu: Do not update if screen is not initilized (bug #7728).
- Libxfce4panel: Keep blinking forever (bug #7583).
- Tasklist: Fix minimizing of active transient windows (bug #7674).
- Tasklist: Add a sorting mode for tasklist reordering with dnd (bug #7058).
- Translation updates (fi, sk, pt_BR, eu, nl).

4.8.3
=====
- Tasklist: Work around segfaulting of group buttons.
- Tasklist: Properly initialize the monitor geometry on startup (bug #7340).
- Use portable abicheck.sh from xfconf.
- Panel: Avoid recursing gtk_main_quit() on signal.
- Tasklist: Hide wireframe when window is destroyed (bug #7377).
- Directorymenu: Remove unused varaible.
- Pager: Fix typo in row warning.
- Tasklist: Fix function prototype.
- Panel: Do no inline function.
- Tasklist: add button release event to proxy item (bug #7362).
- Translation updates (zh_CN, tr, de).

4.8.2
=====
- Change packing order of buttons in pager to match wnck.
- Initialize tasklist viewport if screen is connected (bug #7255).
- Set some atk object names on panel buttons without label.
- Allow installation of the helpers in a custom location.
- Set a static role for the panels (bug #7094). Reverted the previous fix.
- Ask to start the panel if 'xfce4-panel -r' is called without instance.
- Respawn a child if the plugin was realized with a pid.
- Don't crash on a wrong colormap when changing screens.
- Don't activate windows in tasklist when dnd a button or plugin.
- Keep reference on window to avoid crash (bug #7193).
- Activate windows on button release events (bug #7296).
- Use the widget snapshot as tasklist draw icon.
- Fix test so manual is installed (bug #7274).
- Translation updates (he, sv, id, zh_CN, da, kk, pt, uk,
  zh_TW, ja, ru).

4.8.1
=====
- Make the panels sticky for some window managers (bug #7130).
- Fix assert when storing property values in xfconf (bug #7117).
- Migrate monitor information (bug #7135).
- Cache launcher menu tooltip pixbuf (bug #7146).
- Reverse menu item insert order (bug #7102).
- Set and restore a unique role name for windows (bug #7094).
- Don't return a critical on a NULL dbus session.
- Allocate 1x1 requests offscreen in the systray (bug #7143 and #7057).
- Popup window menu under cursor on window button group menus.
- Directly start the panel on the correct screen (bug #7161).
- Move the panel menu to the correct screen (bug #7203).
- Fix dragging panels to another screen.
- Open plugin dialogs on same screen as plugin.
- Sync hidden window and panel screen.
- Show launcher add dialog on the same screen as parent.
- Fix autohide direction based on orientation and edge.
- Deactivate menu button if loading menu failed.
- Don't double expose the panel's child widget (bug #6872).
- Remove unneeded check (bug #7149).
- Don't disappear when wm restarts with compositing (bug #7194).
- Properly update the plugin background when moving to other panel.
- Unset visible event window in 4.6 plugins.
- Various small code cleanups and improved debug messages.
- Translation updates (eu, fr, ja, lt, sv).

4.8.0
=====
- Restart tray allocation if number of rows overflows (bug #7055).
- Restart systray manager on compositing changes.
- Add additional debugging information with filtering support.
- Fix tasklist craches on window unmap (bug #7076).
- Translation updates: French, German, Arabic, Russian, Portuguese,
  Romanian, Lithuanian, Swedish, Chinese (Taiwan), Greek, Polish,
  Croatian, Hungarian, Catalan (Valencian), Norwegian Bokmal.

4.7.7
=====
- Bind panel translation domain for external plugins (bug #6932).
- Allow reordering plugins in preferences with dnd.
- Open plugin preferences on double-click (bug #6975).
- Change launcher dnd code for plugin moving.
- Send drag motion event to parent widgets.
- Do not make the itembar insensitive (bug #6818).
- Fix some prototype variable names.
- Fix warning when removing a panel with a 4.6 plugin.
- Fix order of menu items based on screen position (bug #6978).
- Drop too-new Gtk API.
- Various improvements in the launcher dialog.
- Don't use the session manager in action plugin.
- Add option to filter tasklist window by monitor (bug #5199).
- Remove plugin when dropping in items dialog (bug #6976).
- Bump copyright to 2010 and fix licenses.
- Also load desktop files from xfce4/panel/plugins (bug #7013).
- Install desktop files in xfce4/plugins/actions (bug #7013).
- Make vertical clock rotation optional (bug #7002).
- Fix various size allocation issues in clock (bug #5219, #3960).
- Fix plugin dnd with locked panel and outside itembar.
- Add missing function to libxfce4panel.symbols.
- Fix ABI check on ppc (bug #7009).
- Fix typo in function name.
- Add application menu in default layout.
- Fix invalid unref.
- Make sure launchers are properly removed and saved.
- Fix vertical tasklist buttons in non-vertical mode.
- Fix thinko in screen handling (bug #6830).
- Workaround un nusable plugin when moving to other window.
- Add xfce_panel_pixbuf_from_source().
- Use xfce_panel_pixbuf_from_source() in XfcePanelImage.
- Use XfcePanelImage in the launcher menu.
- Use xfce_panel_pixbuf_from_source in launcher dialogs.
- Optimize loading icons from absolute paths.
- Fix some compiler warnings.
- Move hidden name handling to plugin.
- Use foreach to add application to store.
- Move arrow button to plugin widget (bug #6694).
- Only use orientation in systray box.
- Remove unused variables in box structures.
- Drop child structure from box and only use widgets.
- Improve sort function a bit + other tiny changes.
- Move composited child function to plugin.
- Use xfce_panel_pixbuf_from_source() to load known apps.
- Add some known tray application names.
- Try WM_NAME(STRING) too for tray application name.
- Redo icon positioning (bug #5565, #9650 and more).
- Drop some unused systray code.
- Block grabs from outside the panel.
- 1x1 invisible icons doesn't seem to be true (bug #7044).
- Bump copyrights to 2011.
- Translation updates (ca, cs, da, de, en_GB, fi, gl, he, hr, hu, id,
  it, ja, kk, nb, pl, pt, pt_BR ru, sk, sv, uk, zh_TW).

4.7.6
=====
- Always use applications menu for default menu.
- Fix Exec key in desktop file handler (bug #6912).
- Fix if statement in xfce_tasklist_button_visible().
- Depend on garcon 0.1.4.

4.7.5
=====
- Don't destroy the about dialog.
- Allow using enter in the launcher treeviews.
- Fix crash in always group mode (bug #6792).
- Drop the automatic grouping option from tasklist; not implemented yet.
- Fix Gdk key macro names.
- Fix confustion with panel opacity (bug #6827).
- Make miniature view the default in the pager (bug #6825).
- Fix wrong capitalization of Xfce.
- Fix issue in systray size allocation with 1 row (bug #6809).
- Fix 'add launcher' desktop file.
- Improve debugging output for display changes.
- Restore shadow of spin button in systray dialog.
- Add function to return the Xfconf panel name.
- Warning why # pager rows does not apply (bug #6555).
- Gracefully handle abort signal (bug #6563).
- Restart the panel if we receive SIGUSR1.
- Fix format of 12-hour clock.
- Add option to not rotate buttons in vertical panel (bug #6687).
- Propertly handle insensitive clock colors.
- Set correct session priority.
- Improve support for a menu editor (alacarte) in the applications menu.
- Don't destroy the application menu under the users' cursor on reload.
- Add window DND to the pager in tasklist.
- Make viewports work in the tasklist (bug #6898 and #6665).
- Support viewports in button pager.
- Translation updates (be, ca, da, de, eu, fi, gl, hu, id, it, ja,
  kk, nl, pt, sk, ta, uk, zh_CN, zh_TW).

4.7.4
=====
- Add support for menu monitoring.
- Allow translations of the "Xfce Panel" string.
- Add submodule to xfce4-docs/xfce4-panel-master.
- Fix accelerator key conflict (bug #6765).
- Add test for docs module and depend on xdt 4.7.3.
- Fix distributing the manual in the dist tarball.
- Translation updates (ug, gl, zh_TW, de, sk, nl, da, kk, uk, pt,
  de, it, ja, el, fi, sv, ca, eu, hu).

4.7.3
=====
- Add support to run plugins in valgrind.
- Add lXext to tasklist libraries (bug #6471).
- Add a pager mode with normal buttons.
- Fix menu positioning with autohide panels.
- Always wait for a grab if we popup menus from events.
- Don't handle grabs on the window from menu's.
- Register the plugin menu to block autohide.
- Make the session warning a non-aborting error for startxfce4.
- Allow to quit the panel if no session manager is running.
- Improve checking if we own the dbus name.
- Delay allocation of event table until we use it.
- Add workspace settings option to pager submenu.
- Libxfce4panel-1.0.pc is missing variable localedir (bug #6629).
- Remove deprecated encoding key from desktop files.
- Move helpers applications to $libdir.
- Move module panel plugins in $libdir/xfce4/panel/plugins.
- Add cast to fix a compile error in external 4.6 plugins.
- Fix activating the panel when a plugin asks for focus.
- Translation updates (pt_BR, da, hu, de, pt, ca, fr, kk, it,
  zh_TW).

4.7.2
=====
- Fix typos in translated strings (bug #6350).
- Fix rounding issues in panel borders.
- Empty channel if 4.6 migration failed.
- Load the xfce-applications.menu as default.
- Add support for more background options (bug #1731).
- Improved debugging support using the PANEL_DEBUG environ variable.
- Add LIBXFCE4PANEL_VERSION.
- Link tasklist plugin to x11 (bug #6471).
- Fix some (possible) problems when building documentation.
- Add support for X-XFCE-Unique=SCREEN.
- Make sure there are not 2 active windows on ws-changes (bug #6474).
- Make the systray takeover selection.
- Ask to start panel when opening preferences without instance.
- Add logout to plugin menu and drop quit and restart.
- Add separator between help and logout in window menu.
- Improve and cleanup code for external plugins (bug #6358).
- Change colormap handling (bug #6358).
- Add debug mode to run plugins in gdb (export PANEL_DEBUG=gdb,
  logs in /tmp directory).
- Use activate signal for launcher menu items (bug #6485).
- Fix launching from primary clipboard (bug #6488).
- Translation updates (pa, es, id, ru, tr, kk, ca, it, uk, ug, hr,
  bn, fi, gl, pt_BR, de, da, eu, sk, pt, el, zh_CN, el).


4.7.1
=====
- Support for dragging menu items to create launchers (bug #2896).
- Fix segfault when directory is NULL (bug #6336).
- Restore button label binding in applications menu (bug #6277).
- Give the wrapper a widget name for theming (bug #6268).
- Add existing windows in the tasklist (bug #6273).
- Store the drop highlight position (bug #6270).
- Add option to application menu to show tooltips.
- Use exo desktop file names in default config.
- Set desktop type when migrating 4.6 launchers.
- Fix icon button allocation in tasklist (bug #6269).
- Properly handle exit status.
- Restart external plugins on compositing changes.
- Give panel windows good theming names (bug #6268).
- Only return default title in applications menu is NULL.
- Add Mallard page for theming (only reminder for now).
- Fix handling of custom menu items.
- Fail when compiling with --enable-gen-doc, but checks failed.
- Make the always group functionality work.
- Properly rebuild tasklist if a windows' workspace changed.
- Support remote event replies from the wrapper.
- Improve manual Makefile.
- Restore old workspace scroll behaviour (bug #6271).
- Handle pager orientation.
- Improve debugging in external plugins.
- Add some more checks in the 4.6 macro.
- Fix expand overflow (bug #6312).
- Add drag activate for window buttons in the tasklist.
- Add scroll support to switch between windows in tasklist.
- Handle window autohide blocking in application.
- Change order of plugin signals on startup.
- Add option to fix the length of the panel.
- Set icon geometries for the tasklist buttons.
- Use gtk_widget_get_ancestor() instead of custom function.
- Translation updates (ru, kk, it, uk, el, bn, fi, si, da, eu, sk, pt).


4.7.0
=====

General
-------
- Almost a complete rewite of the code. Everything is now written
  in GObjects. This makes each individual part easier to understand.
- All plugins are ported to GObject-based plugins and use Xfconf for
  storing their information (apart from desktop-files of launcher).
- Interfaces are all created by GtkBuilder.
- Ported to new Libxfce4ui (4.7.1) and Garcon (0.1.1) libraries.
  Other dependencies include Gtk+ 2.14, Glib 2.18, Xfconf 4.7.2,
  Exo 0.5.1, DBus-Glib 0.73 and Libwnck 2.22.
- Documentation (will be) written in Mallard.
- On first startup a dialog will appear to migrate old panel config,
  start with the default setup or one empty panel.

Panel
-----
- Panels can be dragged around the screen and snapped to every panel
  edge. Each panel also has a setting to control the window length (%).
- Possibility to lock panels. This will fix the position and hides the
  handles of the window.
- Alpha backgrounds.
- Item (plugin) editor in the preferences dialog, so you can easily
  add, move, delete and edit plugins that are sometimes hard to reach.
- Using Xfconf for storing the panel settings. Panels also watches the
  Xfconf channel for changes, except for adding and removing panels.
- New code for monitor/screen positioning. This should work a lot
  better with randr.
- DND of desktop-files on the panel to create new launchers.
- Possibility to add new plugins from the command line, including
  startup arguments.
- External plugins are automatically restarted if they have not
  crashed in the last 60 seconds. If they crash more then once in
  this time window, the user is asked what to do (restart or remove).
- Gtk style properties for popup/popdown delay (bug #5707).
- Hidden option to disable struts for windows on a screen edge, so
  the space is used by the window manager for other windows.

Plugin Framework
----------------
- Plugin API should still be the same, however the ABI changed so
  you need to recompile plugins against this version of the panel.
- New way to run plugins compiled as modules externally. Whether a
  plugin runs internal or external is controlled by a boolean in the
  desktop-file of the plugin. This does not affect the 'old' external
  plugins that are compiled as binaries, it is however recommended to
  port plugins to this new framework (only Makefile and macro change)
  since it is more flexible.
- Communication between the panel and wrapper (that embeds plugins to
  run external) is handled through D-Bus.
- XfcePanelPlugin is now a single object (not an interface for 2 other
  objects). This drops a lot of code.
- Some new API and a couple of deprecations. Some of the new
  functionality is only available in the new plugin framework.
- New way to build plugins as GObjects with XfcePanelPlugin as parent
  type. This gives all advantages of GObject like type checking.

Actions Plugin
--------------
- New settings dialog that allows one or two actions in the plugin
  in each order you want.

Applications Menu Plugin (new)
------------------------------
- Plugin similar what Xfdesktop provided, but using Garcon.
- Gtk icons size property to control the menu icon size.
- Script to popup the menu, optionally under the cursor.

Clock Plugin
------------
- New fuzzy clock mode.
- Improved vertical orientation.

Directory Menu Plugin (new)
---------------------------
- Menu that provides a directory tree in a menu. It allows to quickly
  open a Terminal or File Manager for some directory.
- Possible to set a file filter for files that should also be
  visible in the menu. Files are opened by the default application
  that provides the mime-type reported by GIO.
- Gtk icons size property to control the menu icon size.
- Script to popup the menu, optionally under the cursor.

Launcher Plugin
---------------
- Support to create a launcher from the command line with a number of
  desktop files as argument.
- New dialogs, with an application finder like interface to add new
  applications and using the Exo item editor for modifying launchers.
- The desktop files are stored in the .config/xfce4/panel/launcher-$id
  folder and monitored for changes.
- Possibility to use desktop-id in the default configuration which are
  read from a GarconItemsPool on first startup. This is a very useful
  feature for distributions providing a custom default config.
- Gtk icons size property to control the menu icon size.
- Option to show labels instead of icons.

Pager Plugin
------------
- Button to quickly access the Xfwm4 workspace settings.

Separator Plugin
----------------
- Same drawing modes as previous panel, but a check button for expand
  instead of a mode.

Notification Area Plugin
------------------------
- Support for transparent tray icons (required at least Gtk 2.16).

Window Buttons (tasklist) Plugin
--------------------------------
- Option to only show icons. This drops the icon box plugin.
- Complete rewrite, not entirely finished yet (group buttons are not
  working yet + some other less noticeable features).
- If the list becomes too crowded windows will show up in an overflow
  menu, similar to what a menu bar does.
- Option to set the sort mode of the tasklist.
- Draw wireframe of the window on mouse hover, similar to the Alt+Tab
  wireframe in Xfwm4.
- A lot of style properties to tune the behavior of the plugin.
- Vertically orientated buttons for vertical panels.

Window Menu Plugin
------------------
- Gtk icons size property to control the menu icons size and minimized
  icon translucency.