-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathNEWS
1246 lines (1181 loc) · 54.6 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.20.0 (2024-12-15)
======
- xfsettingsd: Fix ushort and ulong types on FreeBSD
- Translation Updates:
Finnish, Hebrew, Polish, Portuguese, Portuguese (Brazil)
4.19.4 (2024-12-01)
======
- I18n: Update po/LINGUAS list
- mime: Fix xfce_mime_helper_category_to_string leak
- mime: Fix argument string leaks
- reinstate sys/wait.h inclusion, needed for WEXITSTATUS at least on
OpenBSD
- mime: Fix error message for missing helper definition
- Translation Updates:
Albanian, Amharic, Azerbaijani, Bengali, Bulgarian, Chinese (China),
Chinese (Taiwan), Czech, Dutch, English (United Kingdom), Estonian,
French, Galician, Georgian, German, Italian, Japanese, Kazakh,
Latvian, Lithuanian, Norwegian Bokmål, Occitan (post 1500), Polish,
Portuguese, Portuguese (Brazil), Serbian, Spanish, Swedish, Tatar,
Telugu, Turkish, Urdu, Urdu (Pakistan)
4.19.3 (2024-11-01)
======
- Added Keywords/Categories fields to .desktop files
- display-settings: Fix InputRegion leak
- x11: displays: Refactor screen_on_event()
- x11: displays: Delay RRScreenChangeNotify handling
- wayland: common: Properly initialize output modes
- color-settings: Add missing translation
- build: Adjust Wayland requirements for Xfce 4.20
- build: Bump requirements for Xfce 4.20
- xfsettingsd: Fix GVariant leak
- Use a toggle button for the MIME chooser dropdown buttons
- Revert "mime: Fix UMRs with GdkEvent"
- mime: Fix UMRs with GdkEvent
- mime: Fix string leak
- display-settings: Fix XfceMode leak
- mime: Fix GOptionContext leak
- mouse: Fix XGetExtensionVersion leaks
- mime: Fix leak in xfce_mime_window_row_activated
- mime: Fix GList leak in xfce_mime_helper_chooser_pressed
- mime: Fix xfce_mime_helper_category_to_string leak
- mime: Fix xfce_str_replace leak
- mime: Fix icon leaks
- mime: Fix g_option_context_get_help leak
- mime: Fix AtkRelationSet leak
- build: Fix build with libxfce4ui master
- xfsettingsd: pointers: Allow changing the size of device property
array
- display-settings: Add missing translation
- Enumerate/load icon themes off of the UI thread
- appearance-settings: Fix memory leak
- Fix gtk-layer-shell includes
- appearance-settings: Fix scrolling via arrow keys in gtk theme list
- display-settings: Update primary monitor status on setting change
- display-settings: Fix primary monitor status for xfce4-notifyd
- display-settings: Fix primary monitor status for xfce4-panel
- xfsettingsd: Fix client side decoration layout
- x11: displays: Really honor /Notify is set to "Do nothing"
- Revert "x11: displays: Disable new outputs if /Notify is set to "Do
nothing""
- mime-settings: Override GtkDialog::response()
- settings-manager: Add xfce4-about
- settings-manager: Remove xscreensaver
- scan-build: Fix unix.Malloc
- scan-build: Fix deadcode.DeadStores
- scan-build: Add false positive file
- gcc-analyzer: Add false positive file
- build: clang: Fix -Wimplicit-const-int-float-conversion
- build: clang: Fix -Wcast-align
- build: clang: Fix -Wignored-attributes
- keyboard-settings: Escape markup characters in command tooltips
- build: Fix build with --enable-sound-settings
- wayland: appearance-settings: Hide Xft settings
- mouse-settings: Fixes reverse horizontal scrolling
- display-settings: Listen to output change for minimal dialog too
- display-settings: Avoid weird interact between main and minimal
dialogs
- xfsettingsd: Use default display profile when several profiles match
- 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
- Apply .clang-format file
- Preliminary cleanup
- Bump required versions and remove dead code
- Clean up and sort includes
- clang-format: Add file
- xfce-randr: Take RR_DoubleScan and RR_Interlace flags into account
- appearance-settings: Show warnings for incomplete icon themes
- build: Fix x11 detection by defining the right m4 macro
- Translation Updates:
Albanian, Arabic, Armenian (Armenia), Asturian, Basque, Belarusian,
Belarusian (Tarask), Bulgarian, Catalan, Chinese (China), Chinese
(Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
Eastern Armenian, English (Australia), English (Canada), English
(United Kingdom), Estonian, Finnish, French, Galician, German, Greek,
Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian,
Japanese, Kabyle, Kazakh, Korean, Lithuanian, Malay, Norwegian
Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese,
Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian,
Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur
4.19.2 (2024-03-31)
======
- Update copyright year
- wayland: display-settings: Update struct members in order
- display-settings: Reverse Default <-> Fallback logic to apply changes
- display-profiles: Allow editing profile names
- display-profiles: Use a profile id independent of the profile name
- display-profiles: Show all profiles in tree view
- display-profiles: Use consistent naming
- display-profiles: Better user profile filtering
- display-settings: Do not update default profile in XfceRandr
- display-settings: Reset profile before saving
- display-settings: Always provide an EDID hash
- x11: display-settings: Get display infos from a single place
- x11: display-settings: Bump xrandr min version
- display-profiles: Simplify and clarify code
- xfsettingsd: Try to match the default display profile as well
- xfsettingsd: Fix memory leaks around get_matching_profile()
- xsettings: Use correct flag in XInternAtom
- x11: xfsettingsd: Round to nearest integer when DPI is involved
- xfsettingsd: Lower warning level
- display-settings: Round to nearest integer when scaling
- display-settings: Make main dialog unique
- xfsettingsd: Bypass display name detection if only one remains
- display-settings: Share default setting values
- display-settings: Do not snap mirrored outputs on geometry change
- display-settings: Reset cursor on leave-notify-event
- xfsettingsd: Use minimal display dialog only for 2 outputs
- display-settings: Update primary indicator visibility when toggled
- display-settings: Avoid confusion about primary display status
- display-settings: Turn "auto-enable-profiles" into a combo box
- Revert "display-settings: Include auto-enable profile in combo box"
- display-settings: Reset cursor if release-event is outside scrollarea
- display-settings: Update output positioning on geometry change
- display-settings: Always delay spin button emptying
- display-settings: Run secondary dialogs outside signal handlers
- display-settings: Revert switch state when deactivation is cancelled
- display-settings: Better update output positioning on user interact
- display-settings: Apply changes only when Apply button is clicked
- display-settings: Switch to one-dimensional scaling
- Fix use of gdk_cursor_new*()
- display-settings: Move get_extended_mode() up one abstraction level
- display-settings: Always invalidate scroll area on settings change
- display-settings: Better UI update when mirroring/unmirroring
- display-settings: Revisit querying mirrored state
- display-settings: Also reset scale when mirroring
- display-settings: Some fixes around identify popups
- display-settings: Update scale with mode and transform
- display-settings: Take proper account of transformation for
positioning
- wayland: display-settings: Fix is_mirrored()
- display-settings: Avoid implicit mode change when enabling output
- display-settings: Fix drawing scaling
- x11: display-settings: Remove rounding
- x11: display-settings: Fix meaning of scale factor
- display-settings: Include auto-enable profile in combo box
- display-settings: Modify only the first two displays in minimal mode
- I18n: Update po/LINGUAS list
- display-settings: Wrap profiles in a combo box in minimal dialog
- display-settings: Add extend-{up,down} to minimal dialog
- display-settings: Add extend-left to minimal dialog
- wayland: display-settings: Disable minimal dialog positioning
- display-settings: Remove right margin in minimal dialog without
profile
- xfsettingsd: Fix -Wincompatible-pointer-types warning
- Move X11 clipboard manager to libxfce4ui
- I18n: Update po/LINGUAS list
- display-settings: Cleanup profile image file too
- display-settings: Allow to mirror disabled outputs
- display-settings: Do not auto-apply profile when opening minimal
dialog
- display-settings: Fix layout detection when opening minimal dialog
- display-settings: Fix ellipsizing and spacing in minimal dialog
- display-settings: Rename image files and cleanup
- display-settings: Rename some ids in glade file and cleanup
- display-settings: Rename _extend_right() to _extend()
- display-settings: Better fit with the way GApplication works
- display-settings: Fix xfconf warning
- display-settings: Fix cairo surface management
- Fix memory leaks around display_settings_get_profiles()
- wayland: Ensure display settings are restored when change is cancelled
- displays: Silence xfconf warning
- displays: Fix wrong test for matching profiles
- x11: displays: Fix use of deprecation macros
- x11: displays: Disable new outputs if /Notify is set to "Do nothing"
- wayland: display-settings: Fix disabled output not saved
- Add new CI builds to build without X11 and Wayland
- xfsettingsd: Always add sm-client option group
- build: Check for gmodule-2.0 (V2)
- Add check box to toggle adaptive/flat mouse accel profile with
libinput
- build: Restrict XfceSMClient to X11
- build: Fix typo in package version
- Translation Updates:
Albanian, Arabic, Armenian (Armenia), Asturian, Basque, Belarusian,
Belarusian (Tarask), Bulgarian, Catalan, Chinese (China), Chinese
(Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
Eastern Armenian, English (Australia), English (Canada), English
(United Kingdom), Estonian, Finnish, French, Galician, German, Greek,
Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian,
Japanese, Kabyle, Kazakh, Korean, Lithuanian, Malay, Norwegian
Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese,
Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian,
Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur
4.19.1 (2023-11-15)
======
- build: Fix make dist when configured with --disable-wayland
- display-settings: Fix crash when using minimal dialog
- display-settings: Use GTK Layer Shell for popups on Wayland
- display-settings: Hide primary monitor widgets on Wayland
- display-settings: Add XfceDisplaySettingsWayland
- xfsettingsd: Add XfceDisplaysHelperWayland
- wayland: Add support for wlr-output-management
- display-settings: Add XfceDisplaySettings and move X11 code to X11
impl
- display-settings: Remove dead code
- xfsettingsd: Clean up displays.c a bit
- xfsettingsd: Make XfceDisplaysHelper derivable and add X11 impl
- build: Properly distinguish X11/Wayland code paths
- display-settings: Fix memory management of confirmation dialog
- xfsettingsd: displays: Always do some actions on RRScreenChangeNotify
- xfsettingsd: displays: Fix memory leak
- Fix xfce_titled_dialog_create_action_area() deprecation
- settings-manager: Support absolute path as icon name
- Replace deprecated xfce_spawn(_command_line)?_on_screen
- appearance: Match more dark themes (fixes #495)
- build: Check for gmodule-2.0
- appearance: Check for presence of color-scheme key
- build: Properly check for xmllint at configure time
- mime-settings: Add multiselection (Fixes #346)
- Apply matching xfwm4 when the switch is clicked
- displays: Lower warning level
- Displays: Fix finding a valid mode by refresh rate
- I18n: Update po/LINGUAS list
- I18n: Update po/LINGUAS list
- Translation Updates:
Albanian, Basque, Bulgarian, Catalan, Chinese (China), Chinese
(Taiwan), Czech, Danish, Dutch, English (United Kingdom), Estonian,
French, German, Greek, Hebrew, Italian, Japanese, Kazakh, Korean,
Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese
(Brazil), Russian, Serbian, Slovenian, Spanish, Swedish, Ukrainian
4.19.0 (2023-04-18)
======
- build: Use m4_defined min versions and cleanup
- build: Use XDT_VERSION_INIT and get rid of configure.ac.in
- build: Switch from intltool to gettext
- Add UI to toggle libinput's hires scrolling events
- xfsettingsd: Add comment about GTK 3.24.38 required for gtk-modules
- xfsettingsd: Add GtkSettings synchronization via gtk-modules
- dialogs: Remove GSettings syncs handled by XfceGtkSettingsHelper
- xfsettingsd: Add XfceGtkSettingsHelper
- xfsettingsd: Guard X11-specific code
- xfsettingsd: xsettings.xml cleanup
- Hide libinput UI when we don't use libinput
- dialogs: Secure use of GSettings
- xfsettingsd: Fix wrong test for property removal
- xfsettingsd: Update also the type when updating a value
- Add combo box to set click method with libinput
- Add check box for libinput disable while typing
- keyboard-settings: Fix critical when opening layout selection dialog
- appearance-install-theme: Fix error message
- appearance-install-theme: Do not mention file size in error message
- appearance-install-theme: Check for theme package validity
- appearance-install-theme: Update GTK icon cache after installing
- appearance-install-theme: detect icon themes first (#271)
- Update bug report address
- display: Check for XError on transform apply
- Update copyright year
- appearance-install-theme: make cleanup safer
- appearance-install-theme: Use recommended way of command substitution.
- appearance-install-theme: Convert to POSIX
- mime-settings: Increase dialog size
- display: fix blurry 'help' indicator on output
- display: fix blurry icon in profiles treeview
- display: fix blurry icons in minimal display settings dialog
- mime: fix blurry icons in default app menus
- mouse: fix blurriness in cursor theme previews
- appearance: fix blurry subpixel antialias icons
- appearance: fix blurry icon theme previews
- xfsettingsd: Make xsettings.xml well-formed (Fixes #431)
- xfsettingsd: Remove duplicated config line (Fixes #425)
- appearance: Add clickable link to xfwm4_sync label
- xfsettingsd: Make CSD opt-in
- Translation Updates:
Albanian, Arabic, Armenian (Armenia), Asturian, Basque, Belarusian,
Belarusian (Tarask), Bulgarian, Catalan, Chinese (China), Chinese
(Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
Eastern Armenian, English (Australia), English (Canada), English
(United Kingdom), Estonian, Finnish, French, Galician, German, Greek,
Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian,
Japanese, Kabyle, Kazakh, Korean, Lithuanian, Malay, Norwegian
Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese,
Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian,
Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur
4.18.0 (2022-12-15)
======
- build: Bump requirements for Xfce 4.18
- Translation Updates:
Hungarian, Lithuanian, Russian, Swedish, Turkish
4.17.3 (2022-12-01)
======
- appearance: Sync color scheme to gsettings (Fixes #406)
- appearance: Fix mem leaks
- settings-manager: Add padding to embedded dialogs (Fixes #388)
- display-settings: Search for clonable modes only by resolution
- Translation Updates:
Chinese (China)
4.17.2 (2022-11-12)
======
- Bumped copyright to 2022
- mime-settings: Properly quote command parameters
- Revert "Escape characters which do not belong into an URI/URL (Issue
#390)"
4.17.1 (2022-11-07)
======
- Escape characters which do not belong into an URI/URL (Issue #390)
4.17.0 (2022-11-01)
======
- mime-helpers: Add Alacritty and kitty (Fixes #378)
- color-settings: Destroy dialog before releasing its GtkBuilder
- dialogs: Revert type hint changes
- Improve wording
- Add binding for /Gtk/DialogsUseHeader in appearance dialog
- appearance: Fix theme list selection (#191, #270, #332)
- xfce-mime-helper: exo_str_is_equal -> g_strcmp0
- xfce4-mime-helper: Prefer full command when basic command is env
(Fixes #358)
- Add Flatpak binaries (#360)
- Fix a recursive lock in libX11.
- appearance: Code style fixes
- appearance: Fix SyncThemes property path and default value
- Add addional checks to xfce_settings_editor_box_selection_changed
- Fix invalid cast error
- Fix $DISPLAY being set to wrong value
- build: Fix intltool lock file problem during make distcheck
- color-settings: Fix ColorSettings release
- Add search bar to search per component
- Use 2 decimals for refresh rate (Issue #351)
- display: Select next preset when minimal dialog is activated (!22)
- display: Add helper functions
- Update COPYING
- Replace deprecated spawn_command_line_on_screen with
spawn_command_line
- Fix help button action
- Updated required libxfce4util version
- Remove dependence on exo-string
- settings-manager: Always show the search entry, no slider, no button
- display: Add 'autoconnect mode' setting (Fixes #311)
- Switch to using xfce_gtk_label_set_a11y_relation
- keyboard: Mark system defaults switch as active (Fixes #310)
- Revert "keyboard: Correctly initialize setting (Fixes #310)"
- keyboard: Correctly initialize setting (Fixes #310)
- keyboard: Fix icon name in settings dialog
- xfsettingsd: Fix setting float array properties
- keyboard: Make buttons translatable (Fixes #306)
- mime-settings: Allow filtering by application name
- Drop preferences-desktop-default-applications icon name
- display: Switch to MessageDialog for confirmation
- display: Fix scale by rounding (Fixes #258)
- appearance: Add option to sync xfwm4 theme
- display: Add 1.25 and 1.75 ratios to presets
- Fix typo
- Remove unused variable
- Default to using /tmp for temporary directory base if both
XDG_CACHE_HOME and TMPDIR are not defined in the environment.
- Also allocate terminating element
- Translation Updates:
Albanian, Arabic, Armenian (Armenia), Asturian, Basque, Belarusian,
Belarusian (Tarask), Bengali, Bulgarian, Catalan, Chinese (China),
Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish,
Dutch, Eastern Armenian, English (Australia), English (Canada),
English (United Kingdom), Estonian, Finnish, French, Galician,
Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian,
Interlingue, Italian, Japanese, Kabyle, Kazakh, Korean, Lithuanian,
Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian,
Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur
4.16.0
======
- Drop subtitles from settings dialogs (Fixes #239)
- display: Fix icon name in settings dialog
- settings-manager: Fix visibility of filterbar
- settings-manager: Correctly show/hide the filterbar
- settings-manager: Switch to GtkSearchEntry
- settings-manager: Put filter in separate bar (Fixes #226)
- appearance: Add 'Add' button to install themes (Fixes #193)
- color: Tweak colors of icon
- mime: Accept Thunar's old id name (Fixes #247)
- settings-editor: Enable tooltips and ellipsizing for `Value` column
- settings-editor: Fix scrollbar for channels
- settings-editor: Point to correct docs URL (#245)
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- Remove GSourceFunc casts
- Indentation fixes
- Translation Updates:
Basque, Bulgarian, Estonian, French, German, Hebrew, Indonesian,
Italian, Japanese, Norwegian Bokmål, Norwegian Nynorsk, Portuguese,
Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Turkish,
Ukrainian
4.15.3
======
- Disable UPower support by default
- Add 24px and 32px icons
- xfsettingsd: avoid default double fork
- mime: Add 'Open with...' button
- mime: Add new generic launcher icons
- color: Adjust padding of dialog
- color: Add labels to toolbar
- keyboard: Make 'system defaults' a GtkSwitch
- keyboard: Adjust width of shortcut column (Fixes #223)
- keyboard: Update dialog UI
- keyboard: Make all table columns sortable
- keyboard: Improve inline toolbar alignment
- display: Center minimal dialog on monitor where cursor is
- settings-editor: Add labels to toolbar items
- Update README file
- Translation Updates:
Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Belarusian
(Tarask), Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong
Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern
Armenian, English (Australia), English (Canada), 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), Polish, Portuguese, Portuguese
(Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish,
Swedish, Thai, Turkish, Ukrainian, Uyghur
4.15.2
======
- appearance: Fix width of DPI spinbutton (Bug #16125)
- appearence: Sync theme, icon, font names to gsettings
- appearance: Fix list refresh on DnD (Fixes #213)
- appearance: Drop toolbar style setting (Bug #16665)
- display: Initial fractional scaling support (Fixes #162)
- display: Custom scale changes are display changes
- display: Improve layout in settings dialog
- display: Resize display widget according to scale
- display: Move scaling presets to glade
- display: Set minimum scale to 0.1
- display: Improve state machine for scaling option
- xfsettingsd: Correctly get current xrandr scale
- mime-settings: Rename dialog and icon to 'Default Applications'
- mime-settings: Fix window icon name
- mime-settings: Fix double free
- mime-helpers: Fix Nautilus icon name
- mime-helpers: Rename Thunar to thunar
- Rename Thunar to thunar in make and potfiles
- Expand desktop entry field codes
- keyboard-settings: Support libxfce4ui XfceTitledDialog new API
- keyboard: Show shortcuts with keycap class
- settings-manager: Ensure searchbox has initial focus (Bug #16890)
- settings-manager: Simplify redrawing of search results (Fixes #141)
- settings-manager: Hide filter entry in plugged dialogs
- Convert xfce4-compose-mail to Python
- Add dependency to Python3
- Use just binary name (instead of full path) as argument
- Don't crash when upowerd isnt present (bug #60)
- Always install shiny new icons
- Drop libxfce4ui 4.15.1 ifdefs
- Fix xfconf-related memory leaks
- Update .gitignore
- Fix typo
- Translation Updates:
Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Croatian, Danish, Dutch, English (Canada), Estonian, Finnish,
French, German, Hebrew, Hungarian, Indonesian, Italian, Japanese,
Kazakh, Korean, Lithuanian, Norwegian Bokmål, Serbian, Swedish,
Turkish
4.15.1
======
This release transitions several exo components to xfce-settings.
Please use with exo 4.15.1 or later for best results.
- exo-compose-email -> xfce4-compose-email
- exo-helper -> xfce4-mime-helper
- mime-settings now includes preferred applications
Other Updates:
- Switch to new app icons and rDNS icon names
- Increase mouse cursor upper bound for HiDPI (Bug #16042)
- Fix a memory leak
- Fix typo
- Add basic GitLab pipeline
- Make "Profiles matching" sentence translatable (Bug #16679)
- settings-manager: Use symbolic find/clear icons
- Move from exo-csource to xdt-csource (Bug #16717)
- Handle failure to get Xkl engine for display (Bug #16017)
- settings-manager: Make sure content determines size
- Fix cast warnings
- Fix GTimeVal deprecation (Bug #16645)
- Fix keywords and mark them as translateable
- Use proper fallback configuration on "apply" and "toggle off" (Bug #16476)
- keyboard-settings: Fix log flood (Bug #16521)
- keyboard: Fix crash when editing shortcut (Bug #15958)
- Add keywords to .desktop files (Bug #10694)
- settings-manager: Improve search by including keywords (Bug #10694)
- xfsettingsd: Add --disable-wm-check flag (Bug #16128)
- Fix typecasting
- Set "gtk-titlebar-middle-click" to "lower" by default
- display: Allow resizing of minimal dialog (Bug #15450)
- settings-manager: Show min and max buttons
- dialogs: Ensure dialogs have min and max buttons
- Translation Updates:
Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Belarusian
(Tarask), Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong),
Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (Australia),
English (Canada), 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), Polish,
Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak,
Slovenian, Spanish, Swedish, Thai, Turkish, Uighur, Ukrainian
4.15.0
======
- xsettings: Use CSD for GtkDialogs by default
- settings-manager: Fix XfceTitledDialog layout with CSD
- settings-manager: Drop setting the old header style
- display: Show ratio next to display resolution
- display: Mark preferred mode with an asterisk
- display: Add init function for aspect ratios
- display: Right-align the display ratio
- display: Fixed warning and removed ratio
- display: Improve look of ratio
- display: Fix icon name for primary indicator
- display: Initialize crtc->scalex/y (Bug #15971)
- settings-editor: Add consistent inline-toolbar
- appearance: Only show themes that support Gtk3 (Bug #15849)
- color: Fix crash in add-profiles dialog (Bug #15876)
- color: Conditionally hide info button in add-profile dialog
- color: Add tooltip to profile info buttons
- display: Fix profile matching in xfsettingsd
- display: Assure correct gchar** (Bug #15816)
- keyboard: Improve layout of add-command dialog
- keyboard: Add mnemonics to add-command dialog (Bug #10495)
- Switch to symbolic window-close icon
- Bump libxfce4ui dependency to 4.15.1
- Improve string for session managers
- Ensure the newly labeled 'Xfce Settings Daemon' is translated
- Do not show translation info on --help output
- Translation Updates:
Albanian, Arabic, Basque, Belarusian, Bulgarian, Catalan, Chinese
(China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English
(United Kingdom), Finnish, French, Galician, German, Greek, Hebrew,
Hungarian, Indonesian, Interlingue, Italian, Japanese, Korean,
Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese
(Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai,
Turkish,
4.14.0
======
- a11y: Replace GtkStock buttons
- appearance: Replace GtkStock buttons
- color: Replace GtkStock buttons
- display: Don't warn on deleting last profile
- display: Fix settings retention (Bug #15437)
- display: Remove debug statement breaking profiles (Bug #15769)
- display: Use proper icon name
- keyboard: Replace GtkStock buttons
- Make strings translatable
- mouse: Replace GtkStock buttons
- settings-editor: Fix buttons declaration
- settings-editor: Replace GtkStock buttons
- Translation Updates:
Belarusian, Catalan, Chinese (China), Chinese (Taiwan), Czech, Danish,
Finnish, French, Galician, Hungarian, Italian, Kazakh, Norwegian
Bokmål, Portuguese, Portuguese (Brazil), Russian, Spanish,
4.13.8
======
- display: Sync display when applying config
- display: Use current display
- xsettings: Grab and sync XServer on startup (Bug #15725)
- xfsettingsd: Start settings prior to complete startup (Bug #15725)
- Update copyright years
- Translation Updates:
Armenian (Armenia), Finnish, Norwegian Bokmål, Ukrainian
4.13.7
======
- Bugfixes and other small changes:
- color:
- Fix crash when launching gcm in plugged dialog (Bug #15426)
- Set correct icon in color dialogs
- display:
- Replace deprecated icon (Bug #15416)
- Add mnemonics to minimal dialog buttons (Bug #15449)
- Disable auto-enabling profiles by default
- settings-manager: Fix missing icons on resize/add/remove (Bugs #15428, #15613)
- xfsettingsd: Fix numlock state restoration (Bug #15642)
- Translation Updates:
Belarusian, Danish, English (Australia), Finnish, French, Indonesian,
Lithuanian, Portuguese (Brazilian), Serbian, Turkish
4.13.6
======
- New Feature: Add color-settings (colord frontend)
- New Feature: Add display profile support to the daemon
- Bugfixes and other smaller changes:
- display:
- Track and highlight active profile
- Ask user to update profile when closing with unsaved
changes
- Add interactive information about primary display setting
- Improve profile-create popover
- Improve profile-delete dialog
- UI alignment improvements
- Reduce complexity of the code and speedup
display_settings_get_profiles
- Replace deprecated GtkStock
- Re-introduce display numbering
- Ensure the settomgs dialog gets properly destroyed
- Verify unique profile names
- Drop connector name from profile matching
- Correctly fall back to previous profile on cancel
- Fix alignment of buttons in minimal dialog
- Only show profiles which match *all* connected displays
- Update profile list on screen changes
- Fix crash when no RRMode is available (bug #12607)
- Correctly hide primary setting with 1 display
- Fix calculation of offset
- Always show the 'primary display' option
- Make primary indicator a star icon
- Throw warning when monitors exceed max screen size
- color: Always select first device on startup (Bug #15266)
- xfsettingsd: Increase startup priority
- Fix scrolling in embedded settings dialogs (Xfce #14285, LP #1653448)
- Fix search change clearing and hiding sections (bug #14792)
- Resolved g_type_class_add_private deprecations (GObject 2.58)
- Fix incremental sending from the clipboard manager (Bug #13537)
- Fix WindowScalingFactory property type
- Fix code spacing
- Fix memory leaks
- Fix CID 337242: Null pointer dereferences (REVERSE_INULL)
- Fix compiler warnings
- Fix icon names
- Update configure.ac.in
- Update .gitignore
- Set yes as the default debug level
- Translation Updates:
Albanian, Arabic, Asturian, Basque, Belarusian, Bulgarian, Catalan,
Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian,
Czech, Danish, Dutch (Flemish), English (Australia), English (Great
Britain), Finnish, French, Galician, German, Greek, Hebrew, Hungarian,
Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian,
Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan, Polish,
Portuguese, Portuguese (Brazilian), Romanian, Russian, Serbian, Slovak,
Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur
4.13.5
======
- New: Add display profiles feature
- Allows for saving/restoring display configurations
- Profiles can be auto-applied when new displays are connected
- Drop the Gtk Theme previews
- Various UI improvements to the settings dialogs
- New icons for the minimal display dialog
- Fix: Fix broken hover effect in the settings manager (Bug #14539)
- Fix: Add default mnemonics back to dialog buttons
- Fix: Add DBUS_GLIB_CFLAGS for Settings Editor (Bug #14385)
- Fix: Force using a period as a decimal separator in xfsettingsd (Bug #11906)
- 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), Finnish, French, Galician, German, Greek, Hebrew, Hungarian,
Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian,
Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan, Polish, Portuguese,
Portuguese (Brazilian), Romanian, Russian, Serbian, Slovak, Slovenian,
Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur
4.13.4
======
- Fix: Redefinition of DISTCLEANFILES
- Fix: Typo, "PRECISON" to "PRECISION"
- Replaced "AC_CONFIG_MACRO_DIR" usage with "AC_CONFIG_MACRO_DIRS"
- Translation updates: Russian
4.13.3
======
- Fix: Uninitialized scalar variables (CID #292062, #292063)
- Fix: -Wcast-function-type (GCC 8)
- Ported from dbus-glib to gdbus (Xfce #14426)
- Added support for xrandr display scaling (via Xfconf)
- Improved display manufucturer name recognition:
- Refreshed PNP IDs from hwdata
- Added support for VBX (VirtualBox)
- Standardized and shortened manufacturer names
- Updated laptop detection to include eDP in XfceRandr
- Updated --help copyright information to 2018
- Translation updates: Belarusian, Catalan, English (Australia), Galician,
Greek, Hebrew, Hungarian, Japanese, Kazakh, Portuguese, Portuguese (Brazil),
Spanish, Swedish, Ukrainian
4.13.2
======
- New: Show location of the mouse pointer on keypress
- Fix: syncdaemon not starting with certain locales
- Fix: division by 0 crash from gdk_screen_height_mm()
- Fix: Remove existing socket from socket viewport (Xfce #13847)
- Fix: Use transient notifications for improved logging
- Fix: Do not expand event sounds section so font scaling is correctly
positioned
- Improvements for multimonitor support:
- Visualize all three display configuration states
- Visually note if two displays overlap (mirrored) but are not cloned
- Always draw active display last so it's on top
- Fix: Correctly position monitors in extended mode
- Fix: Race condition with monitor connect and disconnect
- Fix: Segfault on monitor reconnect
- Fix: Leave monitors where they were if possible (Xfce #14096)
- Deprecations:
- Resolved GTK+ 3.22 deprecations (Xfce #14273)
- Translation updates: Amharic, Arabic, Asturian, Basque, Belarusian,
Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong),
Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (Australia),
English (United Kingdom), Finnish, French, Galician, German, Greek, Hebrew,
Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak,
Slovenian, Spanish, Swedish, Thai, Turkish, Uighur, Ukrainian
4.13.1
======
- This release now requires xfconf 4.13+
- New: Default monospace font option in the Appearance dialog
- New: Improved support for embedded DisplayPort connectors
- Fix: Display dialog drawing of displays
- Fix: Display dialog DND usability issue introduced in 4.13.0
- Fix: Make minimal dialog single instance (Xfce #11169)
- Fix: Linking to dbus-glib with xfconf 4.13+ (Xfce #13633)
- Deprecations:
- Resolved gtk_menu_popup deprecation
- Resolved gdk_error_trap_pop deprecation
- Ignoring GdkScreen and GdkCairo deprecations in the display settings
until GNOME or others find a resolution in their display management
- Code Quality:
- Several indentation fixes
- Drop duplicate drawing code
- Translation updates: Arabic, Bulgarian, Catalan, Chinese (China),
Chinese (Taiwan), Croatian, Danish, Dutch, Finnish, French, Galician,
German, Greek, Hebrew, Indonesian, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmal, Norwegian Nynorsk, Occitan,
Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Spanish,
Swedish, Thai, Ukrainian
4.13.0
======
- Initial port to GTK+ 3
- Known issues:
- The display dialog does not always build correctly. The offending
code exists in the port to GdkSeat. When alternating between the
old and new versions of this code, both versions do work, so there
seems to be some strangeness at build time.
- See dialogs/display-settings/scrollarea.c#n513
- Translation updates: Basque, Bulgarian, Chinese (China),
Chinese (Taiwan), Croatian, English (Australia), French, German,
Hebrew, Japanese, Korean, Lithuanian, Malay, Occitan (post 1500),
Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian,
Slovak, Spanish, Swedish, Ukrainian
4.12.4
======
- Fix: xfsettingsd --replace does not replace old daemon (Xfce #14381)
- Fix: Uninitialized scalar variables (CID #292062, #292063)
- Fix: -Wcast-function-type (GCC 8)
- Fix: Redefinition of DISTCLEANFILES
- Improved display manufucturer name recognition:
- Refreshed PNP IDs from hwdata
- Added support for VBX (VirtualBox)
- Standardized and shortened manufacturer names
- Updated laptop detection to include eDP in XfceRandr
- Updated --help copyright information to 2018
- Replaced "AC_CONFIG_MACRO_DIR" usage with "AC_CONFIG_MACRO_DIRS"
- Translation updates: Belarusian, Catalan, English (Australia), Galician,
Hungarian, Japanese, Korean, Portuguese, Ukrainian
4.12.3
======
- Improvements for multimonitor support:
- Visualize all three display configuration states
- Visually note if two displays overlap (mirrored) but are not cloned
- Always draw active display last so it's on top
- Fix: Correctly position monitors in extended mode
- Fix: Race condition with monitor connect and disconnect
- Fix: Segfault on monitor reconnect
- Translation updates: Belarusian, Danish, Greek, Italian, Malay,
Norwegian Bokmål, Polish, Portuguese (Brazil), Serbian, Swedish, Turkish
4.12.2
======
- Fix: Leave monitors where they were if possible (Xfce #14096)
- Fix: syncdaemon not starting with certain locales
- Fix: division by 0 crash from gdk_screen_height_mm()
- New: Default monospace font option in the Appearance dialog
- New: Improved support for embedded DisplayPort connectors
- New: Show location of the mouse pointer on keypress
- Translation updates: Arabic, Asturian, Basque, Bengali, Bulgarian,
Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian,
Czech, Danish, Dutch, English (Australia), English (United Kingdom),
Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Malay,
Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish,
Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak,
Slovenian, Spanish, Swedish, Thai, Turkish, Uighur, Ukrainian
4.12.1
======
- Fix: Color scheme preview on low bit depth displays (Xfce #12223)
- Fix: Memory leak in xfce4-appearance-settings (Xfce #11746)
- Fix: /Xft/Hinting is never set (Xfce #12086)
- Fix: Segfault in convert_xfce_output_info when plugging in
an external model, fallback on 640x480 (Xfce #12580, RH #1317382)
- Fix: xfsettingsd resets TV mode to NULL on power cycle (Xfce #11107)
- Make sure icon == NULL if no icon is found
- Make the 'Settings Editor Dialog' pluggable.
- Translation updates: Arabic, Asturian, Bulgarian, Catalan,
Croatian, English (Australia), Galician, German, Greek,
Hebrew, Hungarian, Icelandic, Indonesian, Lithuanian,
Occitan (post 1500), Polish, Russian, Slovak, Swedish
4.12.0
======
- Do not change properties on disabled libinput devices
- Increased required automake and libtool versions
- Fix crashes for missing icons (bug #11568)
- Fix warnings during configure
- Fix primary checkbox expansion in the display settings
- Translation updates: Asturian, Bulgarian, Chinese (China),
Czech, Finnish, French, Hebrew, German, Spanish,
Norwegian Bokmål, Portuguese, Romanian, Slovak, Turkish
4.11.4
======
- Add touchpad support with libinput
- Add previews for icon themes in appearance settings
- Add Gtk+ theme palettes in the appearance dialog
- Add support for versioned help documentation
- Add support for libinput Xorg driver (bug #11469)
- Add option to set the primary display (bug #8328)
- Add helper to synchronize CSD layout to xfwm4
- Support stat command flags on BSD systems (bug #11531)
- Show more information in icon-theme list (bug #9130)
- Width of display dialog is no longer hard-coded
- Update display PNP IDs from hwdata
- Update mimeapps.list location for glib >= 2.41 (bug #11293)
- Use 1/10 Hz precision for displays (bug #10661)
- Fix segmentation fault when renaming workspaces (bug #11229)
- Fix --display argument being fatal (bug #11188)
- Fix alignment of the sound settings
- Fix issues found with cppcheck (bug #10879) and other
scanning utilities
- Do not try to reencode libxklavier descriptions (bug #11317)
- Prevent invalid characters from breaking display name (bug #11423)
- Translation updates: Arabic, Asturian, Bulgarian,
Chinese (Simplified), Chinese (Traditional), Croatian, Czech,
Danish, Finnish, French, German, Spanish, Hebrew, Hungarian,
Icelandic, Italian, Japanese, Kazakh, Korean, Malay, Polish,
Portuguese, Portuguese (Brazilian), Russian, Serbian, Slovenian,
Thai, Turkish, Ukrainian
4.11.3
======
- Reapply settings when external keyboard connects
- New display settings dialog
- Update the settings editor to match xfconf
- Fix overlap variable shadowing a global function
- Fork before gtk/dbus init (bug #10918)
- Add support for upower 0.99 (bug #10918)
- Translation updates: Asturian, Bulgarian, Chinese (China),
Chinese (Taiwan), Croatian, Dutch, English (Australia), French,
German, Hebrew, Hungarian, Icelandic, Italian, Japanese, Korean,
Malay, Norwegian Bokmål, Occitan (post 1500), Polish, Portuguese,
Portuguese (Brazil), Serbian, Spanish, Swedish, Telugu, Thai,
Ukrainian.
4.11.2
======
- Increase double click time to 400ms (bug #10562).
- Show/hide display popups with focus.
- Add hotplug checkbox to plug dialog.
- Identify Displays button.
- Fix display mirroring.
- Make mirror button insensitive if not possible.
- Translation updates: Arabic, Bengali, Danish, German, Greek,
English (United Kingdom), Basque, Finnish, Galician, Hebrew,
Croatian, Hungarian, Indonesian, Icelandic, Japanese, Kazakh,
Lithuanian, Norwegian Bokmal, Norwegian Nynorsk, Occitan (post 1500),
Polish, Portuguese, Portuguese (Brazilian), Romanian, Slovak,
Serbian, Swedish, Turkish, Ukrainian, Chinese (China), Chinese (Hong
Kong).
4.11.1
======
- Automatically re-enable Laptop-displays if all other displays
get disconnected.
- Add option to automatically show minimal-display dialog when new
display gets connected.
- Fix bugs with mnemonic accelerators (bugs #9302 and #9308).
- Rework accelerators (bugs #9302 and #9308).
- Autotools updates.
- Make touchpad type delay configurable (bug #8948).
- Mention no cache file for icon themes.
- Translation updates: Arabic, Asturian, Bulgarian, Bengali, Catalan
(Valencian), Czech, Danish, German, Greek, English (United Kingdom),
Spanish (Castilian), Basque, Finnish, French, Galician, Hebrew,
Croatian, Hungarian, Indonesian, Icelandic, Italian, Japanese,
Kazakh, Korean, Lithuanian, Latvian, Norwegian Bokmal, Dutch
(Flemish), Norwegian Nynorsk, Panjabi (Punjabi), Polish, Portuguese,
Portuguese (Brazilian), Romanian, Russian, Sinhala, Slovak, Serbian,
Swedish, Telugu, Thai, Turkish, Uyghur, Ukrainian, Urdu, Urdu
(Pakistan), Chinese (China), Chinese (Taiwan).
4.11.0
======
- Support circular scrolling in the synaptics settings.
- Make sure AccessXKeys control is disabled by default.
- Lots of improvements in XKB code.
- Xsettingsd: Unset input method properties (bug #5437).
- Xfsettingsd: Check service name of NameOwnerChanged (bug #9273).
- Appearance: Fix gtk3 theme detection in install script (bug #9272).
- Show Strv arrays in the xfconf settings editor renderer.
- Lot of improvements in the display code: support extended desktop
mode for 2 monitors, improve minimal dialog.
- Xfsettingsd: Check for NoSuchExtension (bug #9390).
4.10.0
======
- Use the more generic application-x-executable icon for MIME editor.
- Xsettings ix an alignment problem seen on PPC.
- Translation updates: English (United Kingdom), Spanish (Castilian),
French, Galician, Croatian, Hungarian, Japanese, Kazakh, Korean,
Lithuanian, Dutch (Flemish), Portuguese, Romanian, Chinese (China).
4.9.5
=====
- Fix display rate matching.
- Bump package dependency versions.
- Fix missing : in Xft.hintstyle.
- Set Xcursor resources too (bug #8673).
- Fix typo in appearance error.
- Add hardcoded fallback if menu is not found.
- Translation updates: Arabic, Asturian, Bengali, Catalan
(Valencian), Czech, Danish, German, Greek, English (United Kingdom),
Spanish (Castilian), Basque, Finnish, French, Galician, Hebrew,
Croatian, Hungarian, Indonesian, Icelandic, Italian, Japanese,
Kazakh, Korean, Lithuanian, Latvian, Norwegian Bokmal, Dutch
(Flemish), Norwegian Nynorsk, Panjabi (Punjabi), Polish, Portuguese,
Portuguese (Brazilian), Romanian, Russian, Sinhala, Slovak, Swedish,
Telugu, Turkish, Uyghur, Ukrainian, Urdu, Urdu (Pakistan), Chinese
(China), Chinese (Taiwan).
4.9.4
=====
- Fix compilation without device property support (bug #8611).
- Translation updates: Catalan (Valencian), Korean, Turkish.
4.9.3
=====
- Xfsettingsd: Don't set large dpi in xrdb (bug #8415).
- Include xscreensaver in the manager dialog.
- Complete theme installation script.
- Settings editor: Set sensitivity of save button on init.
- Xfsettingsd: Properly round display refresh rate to find match.
- Translation updates: Arabic, Catalan (Valencian), Czech, Danish,
German, Spanish (Castilian), Basque, French, Indonesian, Korean,
Lithuanian, Portuguese, Russian, Slovak, Swedish, Telugu, Turkish,
Chinese (China), Chinese (Taiwan).wan).
4.9.2
=====
- Add mime icons in the mime-editor treeview.
- Store window and column sizes in xfconf.
- Add cateogry based settings manager.
- Re-add support for pluggable dialogs and enable them always.
- Rework settings editor.
- Clear out keyboard shortcuts before resetting to defaults (bug #8138).
- Updated translations: ar, ca, cs, da, de, es, id, it, kk, lt, nl,
nn, pt, ru, tr, uk, zh_CN, zh_TW.
4.9.1
=====
- Use daemon() for xfsettingsd if available.
- Hide the xfconfd-already running message completely.
- Excluded items with NoDisplay=true in the settings dialog.