-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathNEWS
1839 lines (1741 loc) · 84.4 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
4.21.0 (2025-03-22)
======
- build: Search for xdt-gen-visibility also in the working tree
- build: Replace xdt-csource with glib-compile-resources
- build: Define xfce4 min version >= 4.18
- Replace deprecated exo with libxfce4ui 4.21.0
- panel: Show window in panel_application_new_window()
- wayland: autohide: Mitigate lack of size_allocate()
- systray: Use correct gtk functions to show/hide items
- wayland: Set exclusive zone for autohide window
- build: Remove libxfce4panel-config.h from GI
- meson-build: Add missing check for sys/prctl.h
- tasklist: Support window app changes
- itembar: Fix memory leak mitigation on plugins
- build: Automate copyright year management
- item-dialog: Also search for plugins by their module name
- item-dialog: Add tooltip showing the module name
- I18n: Update po/LINGUAS list
- wayland: wrapper: Set GtkProgressBar style properties to min values
- Revert "systray: Always Use cairo_set_source_rgb() to clear icon
background"
- systray: Always Use cairo_set_source_rgb() to clear icon background
- systray: Fix legacy icons being drawn with offset
- meson-build: Use SPDX license expression
- autotools-build: Check for xfce4-dev-tools in configure.ac
- libxfce4panel: Fix ABI break
- meson-build: Update debug/optimization flag management
- autotools-build: Get rid of maintainer mode where gdbus-codegen is
used
- autotools-build: Remove some deprecated or unused CFLAGS
- libxfce4panel: Add missing include guards
- libxfce4panel: Don't install xfce-panel-plugin-provider.h
- build: Bump libxfce4windowing required version to 4.20.1
- Update copyright year
- meson-build: Don't add 'lib' prefix in static lib name
- meson-build: Simplify feature opt dep management
- meson-build: Ensure xfce-revision.h was generated when using it
- build: Use VERSION_FULL intead of VERSION or PACKAGE_VERSION
- autotools-build: Fix EXTRA_DIST redefinition
- meson-build: Remove unneeded conditional
- actions: Restore dialog accept on Enter behavior
- Add meson build
- Turn some messages into warnings
- build: Migrate to xdt-gen-visibility and xdt-check-abi
- wayland: windowmenu: Hide irrelevant workspace options
- wayland: pager: Hide workspace settings
- docs: Add missing parameter to XfcePanelPlugin::hidden-event
- wayland: libxfce4panel: Set kbd interact to on-demand for popup
windows
- tasklist: Add missing workspace property initialization on Wayland
- panel: Deal with duplicated monitor models
- tasklist: Disable workspace related properties on Wayland
- prefs-dialog: Don't trust xfconf_channel_get_string_list() return
value
- libxfce4panel: Fix XfcePanelPlugin size
- Add an hidden-event signal for plugins
- Translation Updates:
Albanian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan),
Czech, Danish, Dutch, English (United Kingdom), Estonian, French,
German, Hebrew, Hungarian, Indonesian, Italian, Japanese, Lithuanian,
Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Romanian,
Russian, Serbian, Slovak, Swedish, Turkish, Ukrainian, Venetian,
Vietnamese
4.20.0 (2024-12-15)
======
- Translation Updates:
Finnish, Hebrew, Polish, Romanian
4.19.7 (2024-12-01)
======
- I18n: Update po/LINGUAS list
- I18n: Update po/LINGUAS list
- migrate: Update default config
- tasklist: Ensure group buttons have non empty label
- Translation Updates:
Basque, Czech, Kazakh, Polish, Portuguese (Brazil), Spanish, Telugu,
Turkish
4.19.6 (2024-11-01)
======
- systray: Handle general container orientation on Wayland too
- systray: Fix GSList element leak
- migrate/default.xml.in: Remove unused plugin id
- Added "show inactive" prop to lcd clock (repurposed from binary clock)
- Reworked sizing mechanism in clock plugin and its widgets
- Reduce minimum button size to improve layout at very small panel
sizes.
- Use width_for_height when plugin requests it
- LCD and digital clock layout fixes
- systray: Fix leak in sn_plugin_init
- Added a missing property bind for 24hr analogue clock
- Added XFCE_PANEL_PLUGIN_ICON_PADDING (API change)
- tasklist: Keep icon sizes as specified by the user
- Revert "wayland: tasklist: Fix icon size in multirow mode"
- systray: Add missing translation
- clock: Added 24h clock mode to the analog clock
- Translation Updates:
Albanian, Arabic, Armenian (Armenia), Asturian, 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, 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
4.19.5 (2024-10-07)
======
- Use new xfw_window_activate() signature in libwindowing 4.19.6
- build: Adjust Wayland requirements for Xfce 4.20
- build: Bump requirements for Xfce 4.20
- wayland: tasklist: Fix monitor detection when panel is remapped
- x11: tasklist: Properly check for libxext
- wayland: autohide: Do not block when panel has input focus
- Revert "panel: Fix panel flickering during autohide on Wayland"
- wayland: autohide: Show/hide panel instead of moving it offscreen
- autohide: Show/hide autohide window instead of moving it offscreen
- wayland: Avoid allocation loop when the panel is anchored to an edge
- Revert "wayland: Avoid allocation loop when the panel is anchored to
an edge"
- wayland: Avoid allocation loop when the panel is anchored to an edge
- Fix gtk-layer-shell includes
- Switch to XfwMonitor
- wayland: wrapper: Prevent plugin allocation blocking
- tasklist: Connect to XfwWindow::notify::monitors
- panel: Fix panel flickering during autohide on Wayland
- Always set gtk_layer_shell monitor on change
- Add debug key for PANEL_DEBUG_ACTIONS
- tasklist: Fix Wayland window drag and drop
- panel: Do not remove plugin when disregarding restart dialog
- panel: Replace remaining gtk_message_dialog_new with
xfce_message_dialog_new
- common: Introduce panel_utils_gtk_dialog_find_label_by_text
- tasklist: Use xfce_dialog_show_error when starting new instance fails
- actions: Use xfce_message_dialog_new in confirmation dialogs
- panel, libxfce4panel: Use xfce_dialog_confirm in plugin removal
confirmation
- gcc-analyzer: Add false positive file
- scan-build: Add false positive file
- scan-build: tasklist: Fix core.NullDereference
- Revert "Add new CI builds to build without X11 and Wayland"
- Apply .clang-format file
- Remove unnecessary dirname in local includes
- clang-format: Use IncludeBlocks::Regroup
- build: Add missing CFLAGS and LIBS from gio-unix-2.0
- build: Add missing math.h includes
- build: Silence -Wstring-plus-int from clang
- fix build on OpenBSD after 0c56766b
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, 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.19.4 (2024-05-16)
======
- clang-format: Break after assignment operator
- Add missing glade file to POTFILES.in
- showdesktop: Add the ability to show the desktop on mouse hover
- prefs-dialog: Improve launcher display in item list
- systray: Avoid GTK warning about pixbuf not loadable
- panel: Leave a harmless xfconf warning
- clang-format: Insert a newline at end of file if missing
- libxfce4panel: Add line break in generate code for clang-format
- prefs-dialog: Bind Del key to remove button
- prefs-dialog: Scroll to selection when item view is reloaded
- prefs-dialog: Allow several items to be removed at once
- prefs-dialog: Update widgets on GdkDisplay::monitor-(added|removed)
- systray: Always scale icons
- systray: Reduce icon size in prefs dialog
- systray: Improve app data search in prefs dialog
- systray: Avoid duplicate code around legacy items
- systray: Use panel_properties_bind()
- panel: Save settings in finalize()
- tasklist: Fix min button length before overflow menu
- tasklist: Fix default button length
- build: Add missing math.h include
- Apply .clang-format file
- Clean up and sort includes
- Various preliminary cleanup
- clang-format: Add file
- windowmenu: Remove a duplicate check
- Remove dead code
- tasklist: Sanitize XfwApplication management
- Minor spelling/grammar corrections in comments
- POTFILES.in: Remove untranslated file
- panel: Define constants common to window and itembar
- windowmenu: Clamp style properties
- tasklist: Allow -1 for menu-max-width-chars
- panel: Restrict admissible values of style properties
- tasklist: Fix use of min-button-length
- tasklist: Fix use of max-button-length
- tasklist: Clamp style properties
- actions: Add some fallback methods if there is no session proxy
- actions: Ask xfce4-session to switch user if possible
- actions: Fix wrong parameter allow_save for Shutdown and Restart
- actions: Let xfce4-session manage its settings internally
- actions: Rework D-Bus proxy management
- Reintroduce panel_properties_get_channel()
- Ask user what to do in case of plugin loading failure
- Check for xfconf init in main.c and exit on failure
- Fix wrong string comparison
- prefs-dialog: Do not close when opening panel-profiles
- Revert "prefs-dialog: Launch xfce4-panel-profiles with '--from-panel'"
- Try to derive plugin dirs from XDG_DATA_DIRS
- Remove NDEBUG compiler switchs
- launcher: Delete unprotected X11 code at runtime
- actions: Populate plugin earlier
- systray: Avoid floating point exception
- panel: Use gdk_cursor_new_from_name() to be more cross-platform
- wayland: pager: Add missing runtime check
- panel: Implement per window CSS customization
- panel: Add border width option
- itembar: Let GtkContainer handle border width
- panel: Fix -Wmaybe-uninitialized warning
- panel: Return silently when n_monitors == 0
- tasklist: Do not call xfw_window_x11_get_xid() on Wayland
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, 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.19.3 (2024-02-29)
======
- Update copyright year
- tasklist: Fix include-all-monitors on Wayland
- Adapt to libxfce4windowing 4.19.3 API update
- Do not use g_log_set_always_fatal()
- launcher: Ensure default icon in empty launchers
- tasklist: Add missing runtime checks to enable show-wireframes
- Add new CI builds to build without X11 and Wayland
- build: Search for bind_textdomain_codeset in libintl too
- Fix memory management of GTypeModules
- pager: Do not query workspace count if screen is not initialized
- panel: Call gtk_init() early enough
- wayland: libxfce4panel: Fix broken autohide when showing context menu
- libxfce4panel: Fix custom menu items management
- panel: Fix previous commit
- build: Restrict XfceSMClient to X11
- panel: Fix xfce_titled_dialog_create_action_area() deprecation
- clock: Create monitor proxy asynchronously
- build: Define our own windowing macro instead of extending GDK's
- build: Simplify and clarify X11/Wayland distinction
- build: Use AM_DISTCHECK_CONFIGURE_FLAGS
- Add missing G_BEGIN_DECLS
- wayland: panel: Add missing sanity check
- Translation Updates:
Czech, Finnish, Hebrew, Hungarian, Icelandic, Interlingue, Italian,
Occitan (post 1500), Swedish, Turkish
4.19.2 (2023-09-27)
======
- pager: Do not adapt upper value of spin button in viewport mode
- pager: Update workspace layout also on viewports change
- pager: Get scale factor from widget
- pager: Update workspace layout also on window manager change
- pager: Fix aspect ratio for viewport (V2)
- actions: Fix memory leak
- wayland: wrapper: Set widget name for theming
- panel: Spawn wrapper process according to windowing environment
- pager: Delay GdkScreen signal handlers
- x11: Remove useless sanity check
- panel: Change panel border only if opposite border is set
- x11: Adjust background image of external plugins to that of the panel
- panel: Do not scale background image when UI scale > 1
- wayland: Reset socket geometry when child is respawned
- popup-command: Do not block autohide when popped up at pointer
- Fix memory leaks when using gtk_css_provider_new()
- panel: Clear item list before repopulating item dialog
- panel: Remove autosave timer for plugins
- Add option to toggle week numbers (fixes #686)
- wrapper: Really ensure we don't call gtk_main_quit() twice
- panel: Block autohide when the panel has input focus
- clock: Fix sync timeout for seconds display
- clock: Implement ConsoleKit sleep monitor
- Add/Sharpen icons at 48-128px
- Adjust 32px icon margins, new separator icon
- Sharpen icons at 16px and 32px
- Increase margins for 24px icons
- Make 24px icons sharper
- icons: Fix wrong exported sizes
- icons: Scale at size 16x16 to 128x128 (Fixes #385)
- icons: Fix centering of org.xfce.panel
- icons: Rename org.xfce.panel.statustray to org.xfce.panel.systray
- I18n: Update po/LINGUAS list
- I18n: Update po/LINGUAS list
- I18n: Update po/LINGUAS list
- Fix memory leaks around gtk_get_current_event()
- Revert "cleanup: panel: Keep consistent type names in G_DEFINE_TYPE"
- tasklist: Fix use-after-free on tasklist child
- build: Fix for Wayland backend disabled (Fixes #729)
- systray: Update icon also on status change
- Translation Updates:
Albanian, Basque, Bulgarian, Catalan, Chinese (China), Chinese
(Taiwan), Croatian, Danish, Dutch, English (United Kingdom),
Estonian, French, German, Greek, Hebrew, Indonesian, Italian,
Japanese, Kazakh, Korean, Lithuanian, Norwegian Bokmål, Occitan
(post 1500), Polish, Portuguese, Portuguese (Brazil), Russian,
Serbian, Slovenian, Spanish, Swedish, Turkish, Ukrainian
4.19.1 (2023-03-28)
======
- launcher: Show action menu also when there are several items
- Fix memory management of vala generated plugins
- panel: Rephrase "Don't reserve space on borders" (V2)
- panel: Make property migration generic
- Remove POTFILES.skip
- Put glade files back in POTFILES.in
- autogen.sh: Properly quote arguments
- panel: Properly set ExternalPlugin orientation
- build: Use m4_defined min versions and cleanup
- build: Use XDT_CHECK_PACKAGE_BINARY and replace XDT_CHECK_LIBX11
- build: Use XDT_VERSION_INIT and get rid of configure.ac.in
- build: Switch from intltool to gettext
- wayland: Add panel_utils_widget_remap()
- wayland: Commit wl_surface manually only if necessary
- wayland: panel: Wait for all plugins to be embedded before hiding
panel
- wayland: panel: Remap panel window when shown without autohide delay
- wayland: panel: Send request only to embedded external plugins
- launcher: Avoid "no trigger event" warning when showing the menu
- launcher: Guard access to the plugin menu GdkWindow
- libxfce4panel: Unregister menu also on GtkWidget::hide
- panel: Do not reset output name if a monitor does not have a model
name
- libxfce4panel: Fix memory management of sources for window positioning
- libxfce4panel: Fix memory management of source for menu positioning
- prefs-dialog: Launch xfce4-panel-profiles with '--from-panel'
- panel: Delay removal of ExternalPlugin to prevent use-after-free
- systray: Cancel any async D-Bus operation in finalize()
- tasklist: Do not try to resolve /proc/pid/exe to launch new instance
- directorymenu: Add missing sanity check
- wayland: panel: Add missing sanity check
- cleanup: panel: Use G_DECLARE_DERIVABLE_TYPE for BaseWindow
- cleanup: panel: Make public members of BaseWindow private
- cleanup: panel: Use G_DECLARE_DERIVABLE_TYPE for PluginExternal
- cleanup: panel: Make public members of PluginExternal private
- cleanup: wrapper: Use G_DEFINE_FINAL_TYPE
- cleanup: clock: Use G_DECLARE_DERIVABLE_TYPE for SleepMonitor
- cleanup: plugins: Use G_DEFINE_FINAL_TYPE
- cleanup: panel: Use G_DEFINE_FINAL_TYPE
- cleanup: panel: Keep consistent type names in G_DEFINE_TYPE
- cleanup: Revert use of G_DECLARE_FINAL_TYPE for PanelBaseWindow
- cleanup: Update glade files in Glade 3.40.0
- cleanup: wrapper: Use G_DECLARE_FINAL_TYPE
- cleanup: plugins: Do not define internal plugin types as dynamic
- cleanup: plugins: Use consistent naming for structures and macros
- cleanup: plugins: Use G_DECLARE_FINAL_TYPE
- cleanup: panel: Use G_DECLARE_FINAL_TYPE
- cleanup: libxfce4panel: Use GLib macros for type definition
- cleanup: Remove PANEL_UTILS_LINK_4UI macro
- wayland: panel: Properly release interface skeleton
- panel: Properly handle null string as property default value
- Revert "Use RGBA visual only if compositing is enabled (Fixes #251)"
- Revert "systray: Do not require compositing to be enabled to use RGBA
visual"
- systray: Fix blurry icons in prefs dialog when UI scale > 1
- launcher: Fix blurry icons in prefs and add dialogs when UI scale > 1
- launcher: Use GIcon for the tooltip icon
- pager: Use WnckHandle if available
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, 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.19.0 (2023-01-10)
======
- Dependency Changes:
- GLib >= 2.72.0
- Libxfce4windowing >= 4.19.1
- build: Make all X11/Wayland-specific dependencies optional
- New APIs:
- libxfce4panel: Add xfce_panel_plugin_popup_window()
- Deprecated APIs:
- libxfce4panel: Deprecate XfcePanelImage
- New Features:
- panel: Allow to force running plugins as internal
- Port to Wayland (!103)
- Code Refactoring:
- cleanup: Remove useless function panel_window_update_dark_mode()
- cleanup: Replace panel_str_is_empty() with xfce_str_is_empty()
- cleanup: Do not use `== (TRUE|FALSE)` for boolean conditions
- cleanup: Do not translate warnings
- wrapper: Cleanup
- panel: ExternalWrapper cleanup
- clock: Use xfce_panel_plugin_popup_window()
- systray: cleanup: Consolidate `sn_plugin_button_toggled()`
- panel: Share code that checks if pointer is outside the panel
- panel: Remove useless function
- build: Print some more config infos
- build: gio-unix requirement cleanup
- build: Let xdt-depends.m4 macros set GLib macros
- Bug Fixes:
- tasklist: Fix scrolling through window buttons (Fixes #692)
- tasklist: Fix group button visibility (#693)
- Silence allocation warning for external plugins (V3)
- tasklist: Do not duplicate menu item activation
- Connect to GtkMenuShell::deactivate instead of selection-done
- Set translation domain for GtkBuilders
- panel: Always include borders to compute snap position
- clock: Fix sync timeout
- docs: Fix version for xfce_panel_set_image_from_source()
- Load icons using icon theme scaling functions correctly
- clock: Add missing sanity check
- windowmenu: Adapt wnck default icon size when UI scale > 1 (Fixes #682)
- tasklist: Adapt wnck default icon size when UI scale > 1 (Fixes #681)
- tasklist: Fix window count positioning when UI scale > 1
- tasklist: Keep icon pixbuf around and use surface also for menu items (#676)
- clock: Do not override custom font formats (#675)
- Translation Updates:
Albanian, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan,
Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian,
Czech, Danish, Dutch, Eastern Armenian, English (Australia), English
(United Kingdom), Estonian, Finnish, French, Galician, German, Greek,
Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian,
Japanese, Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål,
Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil),
Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish,
Ukrainian
4.18.0 (2022-12-15)
======
- build: Bump requirements for Xfce 4.18
- Translation Updates:
Hungarian, Lithuanian, Russian, Turkish
4.17.5 (2022-11-30)
======
- Code Refactoring:
- panel: Remove dead code
- Define and use macros for Xfconf properties (!104)
- clock: Do not include `private.h` in headers
- Bug Fixes:
- panel-desktop-handler: Add `OnlyShowIn=XFCE` key (!106)
- libxfce4panel: Fix menu positioning when the panel is hidden
- libxfce4panel: Fix menu widget positioning when the panel is hidden
- libxfce4panel: Strengthen sanity check for emitting "provider-signal"
- libxfce4panel: Make popup_penu() consistent with position_widget()
- panel: Remove limitation on setting struts in multi-monitor mode (#661)
- launcher: Fix tooltip icon invalidation on boutton update
- tasklist: Take window scaling into account for dnd
- Translation Updates:
Greek, Kazakh, Korean, Portuguese (Brazil)
4.17.4 (2022-10-31)
======
- Dependency Changes:
- GObject Introspection >= 1.66.0
- New Features:
- clock: Improved time zone matching (!105)
- clock: [GSoC22] Merge DateTime with Clock plugin (!101)
- clock: Reveal calendar command in prefs dialog (Fixes #560)
- Code Refactoring:
- systray: cleanup: Fix misleading variable name
- systray: cleanup: Remove dead code
- clock: Decrease verbosity
- panel: Remove duplicated PanelWindow:scale-factor property
- panel: Remove some duplicate build flags
- Ignore Libwnck 43.0 deprecations
- systray: Replace deprecated "GtkWidget::composited-changed" signal
- Replace deprecated "style-set" signal with "style-updated"
- Bug Fixes:
- windowmenu: Take window scaling into account for icons
- tasklist: Take window scaling into account for icons
- systray: Take window scaling into account for status notifiers
- libxfce4panel: Add window scaling to xfce_panel_set_image_from_source()
- launcher: Take window scaling into account for icons from files
- launcher: Rebuild the menu when the panel size changes
- launcher: Do not overwrite button icon cache with menu item icons
- launcher: Fix tooltip icon management
- libxfce4panel: Fix a memory leak
- panel: Chain up to parent in constructed()
- tasklist: Add missing sanity check
- panel: Add missing sanity check
- panel: Fix test likeliness
- docs: Add libxfce4panel first
- clock: Fixed zone info directory (#646, !105)
- tasklist: Properly restore button state on GtkMenu::selection-done
- tasklist: Browse a copy of the window list if it is subject to change (#594)
- clock: Improve backward compatibility (#641)
- clock: Prevent visual glitch when showing calendar window (#466)
- Revert "clock: Prevent visual glitch when showing calendar window" (#641)
- tasklist: Update button visibility when sent to another workspace
- tasklist: Properly update fallback icon (Fixes #636)
- systray: Use theme colors for symbolic icons (#635)
- Add title to message dialogs (!102)
- docs: Do not track `libxfce4panel-overrides.txt`
- Bump GObject Introspection minim version to 1.66 (xfconf#8, !97)
- panel: Chain-up to parent in style_updated() (Fixes #490)
- clock: Fix widget visibility in prefs dialog
- docs: Fix "unused declarations" warning
- docs: Add missing link for api-index-4.18
- docs: Add missing "macros" section
- Translation Updates:
, Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, 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.17.3 (2022-08-20)
======
- New Features:
- clock: binary: Add new binary time mode (#235, !94)
- Code Refactoring:
- cleanup: Use the same debug function everywhere
- clock: binary: Various refactoring and cleanups (!91, !92, !93)
- launcher: Replace deprecated GtkWidget::state-changed signal
- tasklist: Use a checkbox for button grouping
- cleanup: Remove dead code
- cleanup: Wrap some GdkScreen deprecations in one place
- cleanup: Wrap GtkImageMenuItem deprecations in one place
- cleanup: Remove deprecated GdkColor
- prefs-dialog: Rephrase "Don't reserve space on borders" (Fixes #217)
- tasklist: Simplify label text
- Bug Fixes:
- clock: Implement sleep monitor (#58, !88)
- systray: Help to keep status notifiers from vanishing (#102, #243, #599)
- panel: Exit gracefully when display cannot be opened (Fixes #625)
- Urgency blinking fixes (!90)
- prefs-dialog: Always select another panel after removing one
- tasklist: Do not release button if left-click minimization is disabled
- tasklist: Properly exclude grouped windows from overflow menu
- tasklist: Keep dnd position when grouping/ungrouping windows (#323)
- Reposition menu for popup commands if necessary
- tasklist: Fix memory leak
- panel: Populate item dialog after setting dialog screen (Fixes #62)
- panel: Switch to pixels for the panel length in the prefs dialog (#99)
- panel: Rework enter/leave opacity management (#180)
- systray: Set button border width to 0 (Fixes #604)
- systray: Perform sanity checks also for "NewStatus" signal (Fixes #602)
- pager: Fix aspect ratio for viewport (Fixes #119)
- clock: Distinguish AM/PM hours in fuzzy clock for L10N (#77)
- libxfce4panel: Report a highlighted arrow button as blinking
- windowmenu: Update plugin icon on active window icon change (Fixes #37)
- pager: Synchronize workspace layout between plugin instances (#7)
- pager: Move some function calls to their right place
- pager: Properly disconnect signal handler
- tasklist: Guard against null workspace
- tasklist: Properly update active window when it changes workspace (#207)
- libxfce4panel: Warn about deprecated xfce_panel_plugin_position_menu()
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, 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.17.2 (2022-07-10)
======
- Dependency Changes:
- GLib >= 2.66.0
- Libxfce4util >= 4.17.2
- New APIs:
- libxfce4panel: Add new function `xfce_panel_set_image_from_source()` (!83)
- libxfce4panel: Add new function `xfce_panel_plugin_popup_menu()` (!80)
- Deprecated APIs:
- libxfce4panel: Deprecate `xfce_panel_plugin_position_menu()` (!80)
- Code Refactoring:
- cleanup: Remove useless variable
- cleanup: Use already defined panel scale factor
- cleanup: Fix old typo
- tasklist: Remove redundant function call
- refactoring: Consistency of plugin menu callbacks
- refactoring: Use `g_file_peek_path()` when appropriate
- Autohide refactoring (!77)
- Replace soon-to-be-deprecated exo-string functions (!79)
- Bug Fixes:
- panel: Silence allocation warning for external plugins (V2) (#590, !89)
- panel: Compare monitor geometries in the right dimension (#54)
- panel: Do not compare monitor geometry to itself (#54)
- tasklist: Take window scaling into account when detecting window position (#505)
- panel: Be sure to save plugins before xfconf_shutdown()
- tasklist: Fix critical warning when starting on a disconnected device
- tasklist: Delay sorting if window list is in use (#594)
- libxfce4panel: Allow to show about dialog when prefs dialog is shown (#221)
- panel: Prevent compositing message from affecting dialog size (Fixes #591)
- libxfce4panel: Unblock autohide before removing the plugin (#592)
- Grab devices until the menu takes over for popup commands (#201, #585)
- Fix return value of "remote-event" signal handlers (#585)
- Avoid "no trigger event" warning for popup commands
- Guard against the return value of `gdk_seat_get_pointer()`
- panel: Ensure that handles are always grabbable (Fixes #227)
- Allow to set a custom icon in appmenu and dirmenu (#254, !83)
- Use RGBA visual only if compositing is enabled (Fixes #251)
- launcher: Fix wrong format specifier in config file name (Fixes #581)
- applicationsmenu: Add option to set "small" property (Fixes #31, #113)
- pager: Consistency fixes between "miniature view" and "buttons" (#74, #209, #253, #257, #274, !82)
- libxfce4panel: Make urgency blinking more visible (Fixes #259)
- tasklist: Sorting fixes (#29, #126, #323, !81)
- systray: Force dbus-menu update when item is invalidated (Fixes #567)
- libxfce4panel: Unregister menu also on "selection-done"
- applicationsmenu: Do post-processing on "selection-done"
- windowmenu: Do not popup menu item wnck menu at widget
- Fix plugin menu popup at pointer (#297)
- Add new function `xfce_panel_plugin_popup_menu()` (#147, !80)
- Translation Updates:
Albanian, Basque, Bulgarian, Chinese (China), Chinese (Taiwan),
Dutch, Estonian, French, German, Greek, Italian, Japanese,
Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese
(Brazil), Russian, Serbian, Slovenian, Spanish, Turkish, Ukrainian
4.17.1 (2022-05-22)
======
- Dependency Changes:
- Garcon >= 4.17.0
- New Features:
- tasklist: Middle click minimize window groups (!76)
- tasklist: Middle click close window groups (#322, !76)
- tasklist: Middle click opens new instance (#166, !72)
- Bug Fixes:
- Add some autohide blockers (!78)
- Bump minimal required Garcon to 4.17.0 (#184, #485)
- libxfce4panel: Destroy plugin prefs dialog on plugin "destroy" signal
- Autohide fixes (#48, #116, #397, !75)
- systray: Hide button menu if button is hidden by its app (Fixes #391)
- launcher: Use same icons for item list as in prefs dialog (Fixes #415)
- launcher: Make add dialog consistent with panel add dialog (Fixes #416)
- tasklist: Fix context menu position in deskbar mode (Fixes #417)
- systray: Display square systray icons on multiple rows (#426)
- panel: Do not rely on borders to trigger autohide animation
- Revert "Fix autohide with bg color or image (Bug #16064)" (#435, #512)
- tasklist: Hide wireframe on window buttons (#543, !70)
- systray: Icon size and priority fixes (#571, !73)
- systray: Disable broken smooth scroll with Xfwm4 (#411, !74)
- prefs-dialog: Filter out irrelevant selection changes in "Items" tab
- wrapper: Ensure that provider stays alive when processing "g-signal"
- Revert "panel: Keep a reference on item during drag and drop"
- panel: Clear opaque region so compositor properly apply transparency (#378, #427)
- Fix `gdk_rgba_to_string()`-related memory leaks
- panel: Refactor background setters
- systray: Load icon from theme at desired size (#463)
- Take window scaling into account (#465, #486, !71)
- panel: Fix a memory leak
- clock: Prevent visual glitch when showing calendar window (#466)
- tasklist: Fix wireframe for CSD windows (v2) (#562)
- systray: Check that the proxy exists when invalidating item
- Translation Updates:
Albanian, Bulgarian, Chinese (China), Chinese (Taiwan), Dutch,
English (United Kingdom), French, German, Greek, Hebrew, Italian,
Japanese, Lithuanian, Malay, Norwegian Bokmål, Panjabi (Punjabi),
Polish, Portuguese, Portuguese (Brazil), Serbian, Slovenian, Spanish,
Swedish, Turkish
4.17.0 (2022-04-16)
======
- Dependency Changes:
- Garcon >= 0.8.0
- GLib >= 2.56.0
- Libxfce4ui >= 4.17.1
- Code Refactoring:
- Remove unused project files
- Use GLib structured logging
- Remove obsolete Exo version checks
- Bump minimal required Garcon to 0.8.0 i.e. Xfce 4.16
- Remove obsolete GTK version checks
- Use GLIB_VERSION_MIN/MAX_REQUIRED/ALLOWED
- autoconf: Some updates
- libxfce4panel: Silence `-Wredundant-decls` warnings (#495)
- Revamp the documentation to modernize and uniformize accross components (!35)
- Bug Fixes:
- panel: Fix regression "intellihide does not hide when leaving slowly" (#388)
- panel: Fix regression "'Span Monitor' has no effect" (#405)
- panel: Keep a reference on item during drag and drop
- panel: Fix a memory leak
- systray: Do not apply icon if not yet set
- Fix `deadcode.DeadStores` warnings from `scan-build` (!56)
- Fix `core.UndefinedBinaryOperatorResult` warning from `scan-build` (#142)
- Fix `core.NullDereference` warning from `scan-build` (!57)
- panel: Fix broken drag and drop between panels (#561)
- systray: Only activate item under mouse
- Use a normalized URI internally for the background image
- panel: Disconnect from screen signals when window is destroyed
- Fix ignored `*.desktop.in` in `.gitignore`
- systray: Do not connect to proxy signal if async method failed
- actions: Lay out buttons in grid for deskbar (#437, !69)
- wrapper: Rework widget drawing (#520, !67)
- windowmenu: Emit "deactivate" signal when hiding the menu (#22, !68)
- systray: Trust the status to update the attention icon (#392, !64)
- tasklist: Add a setting to control the display of tooltips (#548, !63)
- Fixed some window buttons not appearing in the panel (#188, !66)
- Remove ellipsis (#480, !65)
- launcher: Only activate under mouse (Fixes #519)
- launcher: Clear action menu when destroyed (Fixes #540, !61)
- actions: Block panel autohide (Fixes #431, !62)
- panel: Fix grabs for popup commands (Fixes #506, !60)
- Fix compilation warnings (#492, #493, #494, !53)
- launcher: Adjust menu icon size (Fixes #255, !51)
- Fix exit procedure when plugin insertion failed (!49)
- libxfce4panel: Review memory management for context menu (#452, !46)
- panel: Mitigate a memory leak when removing items (!46)
- tasklist: Silence an allocation warning (!48)
- launcher: Check for menu item initialization (!47)
- panel: Change width of default panel-2 to 1% (Fixes #454, !44)
- Fix some `*-CRITICAL` warnings (!43)
- libxfce4panel: Do not destroy context menu if popped up (#442, !45)
- tasklist: Auto-adjust icon size (v2) (#90, !29)
- pager: Allow disable switch with mouse wheel for miniature view (#253, !37)
- Add icons to help and about items in panel menu (#421)
- pager: Use gobject bindings (Fixes #376, !32)
- launcher: avoid double fork (#407, !25)
- Fix build warnings (!31)
- Display tooltip title of statusnotifier items as plaintext (!30)
- pager: Switch to new workspaces icon name
- statustray: Prevent crash when parsing properties (Fixes #379, !26)
- windowmenu: fix use-after-free in window_menu_plugin_window_item_new (!24)
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, 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.16.0 (2020-12-23)
======
- 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 (2020-12-14)
======
- 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 (2020-11-03)
======
- 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 (2020-08-22)
======
- 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 (2020-06-23)
======
- 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 (2020-04-06)
======
- 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 (2020-01-14)
======
- 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 (2019-10-20)
======
- 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 (2019-08-11)
======
- 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 (2019-07-28)
======
- 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)