-
Notifications
You must be signed in to change notification settings - Fork 27
/
NEWS
1884 lines (1699 loc) · 79.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.19.6 (2024-11-01)
======
- Add a few environment settings to gitlab issue template
- Fix leak when dragging icons
- bump copyright
- Bump libxfce4windowing requirement to 4.19.8
- Ignore the result of g_volume_can_mount()
- Add GMount instances to the hash table always
- Bump xfconf requirement and stop using
xfconf_g_property_bind_gdkrgba()
- Fix GArray leak in xfdesktop_keyboard_shortcut_settings_init
- Add issue template
- Fix string leak in cb_image_selection_changed
- Fix string leak in update_icon_view_model
- Fix GFile leak in backdrop cycler
- Reset backdrop cycler timer if user manually changes the image
- Add all background dirs to the settings chooser button shortcuts
- Fix GFileInfo leak in xfdesktop_special_file_icon_new
- Clean up PARAM_FLAGS in icon view
- Clean up cell renderer init & management in the icon view
- Fix leaks in xfdesktop_icon_view_constructed
- Remove unused version.sh script
- Translation Updates:
Albanian, Bulgarian, Chinese (China), Dutch, English (United
Kingdom), Estonian, French, Galician, German, Italian, Japanese,
Lithuanian, Occitan (post 1500), Polish, Portuguese, Serbian,
Swedish, Ukrainian
4.19.5 (2024-10-16)
======
- Rework how icon pointer "hit detection" works
- Fix g-critical warning when starting a drag *just* outside the icon
area
- Tell GtkTooltip the region the tooltip is for
- Add option to sort folders before files (Issue #332)
- Fix leaks in xfdesktop_file_utils_next_new_file_name
- Fix string leak in xfdesktop_icon_view_show_tooltip
- Fix GIcon leak in xfdesktop_icon_view_manager_sort_icons
- Reword a couple settings option names, fix some accelerators
- Only clear drag/context menu timeout if a drag actually starts
- settings: define infobar_label in glade file, not in code
- settings: avoid flashing an empty info bar on startup
- settings: enumerate image folder fully asynchronously
- settings: change icon view selection if background changes externally
- Merge branch xfdesktop:master into master
- Refactor settings dialog code
- Fix memory corruption in icon view's tooltip size changed handler
- Redesign the 'Desktop Icons' tab in the settings dialog
- Decouple refreshing the desktop with cycling the backdrop
- Sort all desktops vs. just one based on where the event came from
- Improve how the "active" desktop is tracked
- Add a root context menu for the window icon manager
- Fix invalid read when changing foreground color
- Fix string leak in save_icons
- Make icon sorting confirmation dialog optional (Issue #266)
- Added missing Keywords entry to .desktop file
- Don't remove icon position from current config
- Use g_ascii_dtostr() instead of custom decimal-printing hack
- Update icon view's item_under_pointer on button presses as well
- Simplify XfdesktopIconView->item_under_pointer tracking code
- Fix icon DnD between two monitors with the same priority
- Modernize GObject usage in XfdesktopThumbnailer
- Modernize GObject usage in XfceDesktop
- Remove spurious newly added #include
- Modernize GObject in XfdesktopIconView
- Avoid printing GTK CSS with commas as the decimal separator
- Add ability to set custom icon label text and background colors
- Fix xfdesktop_icon_view_invalidate_item_text()
- Fix memleak when XfdesktopCellRendererIconLabel freed
- Better way to fix monitor removal
- Don't reschedule icon positions save
- Reduce icon positions save delay to 1 second
- Fix desktops not being removed when a monitor is disconnected
- Fix icon view ascending vs. descending sort order
- I give up. Icon label backgrounds are transparent again.
- Add windowlist options for showing all workspaces & urgent windows
- Use #defines for windowlist prop names everywhere
- Use windowlist menu widget from libxfce4windowingui
- Add XF_DEBUG when icon added to file model
- Actually rearrange the settings panels
- Use new xfw_window_activate() signature in libwindowing 4.19.6
- Use a swapped signal connection so session_die() gets the right arg
- Exclude some menu entries from multi selection
- Simplify menu code
- Move Keyboard Shortcuts settings tab to the end
- Fix timer getting stopped on file deletion
- Don't repeat backdrop images when cycling randomly
- Change the backdrop cycler to use GFile throughout
- Fix backdrop cycler property names
- Fix GFileInfo leak in check_create_desktop_folder
- Remove unused last_filename field to fix leak
- Fix string leak in save_icons
- Fix string leak in set_accountsservice_user_bg
- Allow space chars to work for keyboard navigation
- Remove manual activation of icon view binding set
- Add configurable keybinding for toggle-cursor for the icon view
- Remove unneeded debugging statements
- Don't use meson.project_source_root()
- Don't use relative source path in tests/meson.build
- build: Adjust requirements for Xfce 4.20
- Fix new-folder icon missing on some icon themes
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Azerbaijani,
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, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan
(post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
Thai, Ukrainian, Uyghur, Uzbek
4.19.4 (2024-10-03)
======
- Don't use XfceSMClient on Wayland
- Fix crash when double-clicking file icons
- Grey out children of removable devices option when disabled
- Add more compiler flags to the meson build
- Add editable keyboard shortcuts for the desktop and icon view
- settings: Fix string leak
- Remove xfdesktop_icon_view_model_set_monitor()
- Simplify icon add/remove code in file icon model
- Fix removable devices not getting removed properly on reload
- Cancel desktop folder enumeration on reload
- Add option to show fixed drives and devices
- Only draw icon focus rectangle for keyboard-driven selections
- Mirror thunar's behavior for the new file/folder dialogs
- Ensure drag highlight is cleared when file drag ends
- Make XdndDirectSave file write asynchronous
- Remove TODO
- Update some source file copyright years
- Build on glib 2.72
- Fix _NETSCAPE_URL drops
- Remove unused variable
- Fix string leak in xfdesktop_application_theme_changed
- Don't ship generated sources in the dist tarball
- Include meson build files in autotools dist tarball
- Add gresource XML files to EXTRA_DIST
- Back up invalid icon position config files instead of overwriting
- Simplify deletion/trashing code
- Use more reliable way to get a toplevel parent for dialogs
- Fix icon positioning for create launcher/link
- Check if icon position changed on row-changed and replace if needed
- Fix new folders and template creation appearing in wrong position
- Fix memleak when checking if template menu has items
- Treat icon views independently when handling file icon selection
- Fix icon drops from external sources showing up on the wrong monitor
- Rewrite the monitor mirror detection and handling
- Move all removable volume filtering into the filter model
- Display icons for mounts that don't have an associated volume
- Modernize GObject use in XfdesktopIcon & subclasses
- Fix keyboard focus for icon view when clicked
- Make file icon manager reload icons when asked
- Add debugging for desktop reposition on monitor geom change
- Fix race condition when monitor geometry changes
- Fix typo in icon view placement code
- Simplify how the "backdrop workspace" is tracked in XfceDesktop
- Fix same-filename backdrop toggle causing issues
- Implement new DnD
- Simplify icon view widget coords -> slot coords code
- Handle mirrored monitors
- Fix copy/paste error
- Fix context menu popups
- Let XfdesktopIconView have its own window
- Cache icon identifier in XfdesktopIcon
- Fix X11 icon view positioning
- Attempt to migrate old position config to new
- Refactor the grid sizing code a little
- Implement new multi-monitor support for the file icon manager
- Ensure xfdesktop_icon_get_identifier() never returns NULL
- Add new YAML icon position saving code
- Simplify and clean up a bunch of code in the file icon manager
- Reduce boilerplate when building file icon context menu
- Move file icon settings filtering to a GtkTreeModelFilter subclass
- Better way to deal with monitors coming and going
- Migrate old .png background filenames to .svg
- Clean up monitor workarea tracking in XfdesktopIconViewHolder
- Track desktop monitor changes in XfdesktopIconViewHolder
- Signal model row changed when XfwWindow:monitors changes
- Redo how monitor changes are handled in the backdrop manager
- Create/destroy/update XfceDesktop instances on monitors-changed
- Prevent xfdesktop from quitting if there are no monitors
- Fix dangling signal connections in XfceDesktop
- XfceDesktop: clean up x11 compat properties management
- Use GList for XfdesktopApplication->desktops
- Allow dragging window icons between monitors
- Clean up more gcc-analyzer warnings
- Modernize gobject use in XfdesktopFileIconManager
- Get rid of unused marshal functions
- Move file icon loading/management to the model
- Rewrite window icon manager to display on all monitors
- Update everything to use XfwMonitor
- Use a separate XfceDesktop widget/window per monitor
- Fix --reload option
- Fix memleak freeing result of xfdesktop_icon_view_get_selected_items()
- Fix some memory leaks with gdk_atom_name()
- Updates to meson build
- Fix use-after-free in the regular file icon tooltip code
- Revert text shadow change in fallback theme
- Fix PangoLayout memory leak in XfdesktopCellRendererIconLabel
- Improve fallback theme
- Resolve conflicting mnemonics
- fix HAVE_THUNARX
- Fix wrong filename in EXTRA_DIST in backgrounds/
- Add README for backgrounds, with provenance and licensing info
- SVG wallpapers with licenses
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Azerbaijani,
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, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan
(post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
Thai, Ukrainian, Uyghur, Uzbek
4.19.3 (2024-08-16)
======
- Add false positives file for scan-build
- Silence some scan-build warnings
- Fix gcc-analyzer warnings
- meson: use x11 & wayland option names, rather than windowing-systems
- Fix broken icon sorting direction
- Fix monitoring of folder icon files in subdirs
- Rework the icon view grid sizing and placement code a bit
- Fix long-standing memory leak in XfdesktopIconView
- Make desktop folder loading cancellable
- Fix default-backdrop-filename option for meson build
- build: clang: Fix -Wcast-align
- build: Fix -Werror=format=
- Invalidate icon surface cache on icon theme change
- Revert "Add CI builds for --disable-x11 and --disable-wayland"
- Add missing menu separators
- Fix invalid param flags
- Fix some default settings not being applied on startup
- Only redraw icon text when focus changes
- Compute icon invalidation rect more generously
- Only resize grid on size_allocate if the allocation actually changed
- Resize icon grid if style changes affect slot/cell size
- Don't invalidate the icon view pixbuf cache on style update
- Be more precise in what gets redrawn
- Clean up xfdesktop_volume_icon_menu_eject()
- Fix safe removal for unmounted volumes
- Icon view should not accept focus in order to reduce redraws
- Fix xfdesktop no longer being saved as part of the session
- Remove icon view manager's update_workarea vfunc
- Move GdkScreen::size-changed handler to XfdesktopIconViewManager
- Resize icon grid on size change even if we don't have our own window
- Handle monitors-changed in the icon view manager
- Resize and reposition icon view when workarea changes
- Remove XfdesktopIconView's show-icons-on-primary property
- Use 65% for the window icon opacity value
- Clamp the icon opacity value where it actually needs to be used
- Restore behavior where unmounted volume icons are drawn 50% opaque
- Fix icon view not getting motion events
- Fix build error when full debug enabled
- Add meson build
- Fix wrong property name for icons-on-primary
- Reduce copy-paste duplication in XfdesktopRegularFileIcon
- Simplify a bunch of code and reduce duplication in
XfdesktopApplication
- Clear out XfdesktopApplication singleton pointer on finalize
- Reduce duplicated code in app action init
- Fix crash on startup with WM check, refactor
- Start isolating X11 code as much as possible
- Ensure workspaces are fully initialized on construction
- Don't allow bg_surface to be NULL
- Don't spuriously print that we're already running when starting up
- Refactor the GApplication stuff
- Fix warnings on --quit when xfdesktop isn't running
- Avoid a critical warning depending on init order
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Azerbaijani,
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, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan
(post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
Thai, Ukrainian, Uyghur, Uzbek
4.19.2 (2024-03-17)
======
- Fix critical warning when disabling window icons
- Update for new libxfce4windowing workspace API
- Fix issue with XfceDesktop->workspace_manager NULL on realize
- Don't react to GdkScreen::monitors-changed if no monitors
- Update for `xfw_window_x11_get_xid()` in `libxfce4windowing-4.19.3`
- Fix crash when primary monitor is not set
- Avoid showing non-removable drives/volumes on the desktop
- Add CI builds for --disable-x11 and --disable-wayland
- ifdef out unusued code in settings dialog when X11 is disabled
- Fix build when X11 support disabled
- Make DEFAULT_BACKDROP configurable at build time
- Close rc file under sanity check
- I18n: Update po/LINGUAS list
- I18n: Update po/LINGUAS list
- I18n: Update po/LINGUAS list
- Fix desktop window positioning on multi-monitor Wayland
- Remove inaccurate comment
- Pass event button on menu popup when it's a release event as well
- Fix spacing/layout in new settings tab for consistency
- Move File/Launcher icons settings to a separate tab
- Add pref for label underline when in single click mode
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Azerbaijani,
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, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan
(post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
Thai, Ukrainian, Uyghur, Uzbek
4.19.1 (2023-04-14)
======
- Fix configure configuration summary
- Use new XDT_CHECK_OPTIONAL_FEATURE & XDT_CHECK_PACKAGE_BINARY
- autogen.sh: fix xfce4-dev-tools dependency version
- Clean up autogenerated source file build rules
- Generate final settings .desktop file in one pass
- Drop dependency on xdt-csource and use glib-compile-resources
- Fix substitution of GETTEXT_PACKAGE for automake
- build: Drop intltool dependency
- main: Fix control (always) reach end of non void function
- Load icons in icon view a symbolic/theme-aware manner
- Set default debug based on git/not-git
- Missed a xfdesktop_version -> xdt_version in configure.ac
- Eliminate need for pre-processed configure.ac.in
- Remove unused file icon rendering code
- Draw cut file icons as insensitive
- Don't make icon translucent when window not focused
- Allow opening multiple selected folder icons from context menu
- Restore old behavior of allowing thumbnails to be wider
- Ditch GtkCellLayout impl for XfdesktopIconView
- Support for cascading custom actions (#221)
- Ensure workarea is updated when UI scale factor changes
- Set background color for icon labels in fallback theme
- More/better menu/windowlist cleanup on exit
- Place new files in the location they were dropped
- Pop up window action menu on windowlist item right click
- Simplify/improve right-click menu population
- Move some of icon item state management to model
- Use GIcon throughout the icon view
- Make the icon view not know about workarea
- Underline icon text when prelit in single-click mode
- Allow pasting window titles via DnD
- Harmonize constants in code & UI definition
- Properly thread UI scale factor to file icon loading functions
- DRY up the icon models with a base class
- DRY up the cursor movement code a bit
- Don't use weird pointer values as a tombstone
- Make tooltip fetching/showing simpler, and cache surfaces
- Move pixbuf cache to XfdesktopIconView
- Make XfdesktopIcon::activated not a signal
- Remove unneeded XfdesktopIcon functionality
- Remove XfdesktopWindowIcon
- Refactor icon view widget
- Fix/augment heuristic for determining settings window on Wayland
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Azerbaijani,
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, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan
(post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
Thai, Ukrainian, Uyghur, Uzbek
4.19.0 (2023-01-10)
======
- Fix warnings
- xfdesktop: dither backdrop gradients to reduce color banding
- Add preliminary Wayland support using libxfce4windowing
- Fix minor coding style issues
- Avoid drawing gradient to temporary surface
- backdrop: render gamma-correct gradients
- Fix a couple dangling mnemonic-widget properties
- Set all icon appearance settings insensitive when disabled
- Modernize GObject usage in XfdesktopThumbnailer
- Fix crash when request timer active after finalize
- Update my email address everywhere
- Move file icons settings to its own section
- Remove deprecated widgets from settings UI
- Update glade files to latest version
- Free cached GarconMenu in menu_cleanup()
- Remove unused show_delete_option var in menu.c
- Disconnect xfconf signal in menu_cleanup()
- Free cached GarconMenu when apps menu is disabled
- Load removable volume information asynchronously
- Fix apps menu not popping up when menu icons disabled
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Azerbaijani,
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, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan
(post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
Thai, Ukrainian, Uyghur, Uzbek
4.18.0
======
- build: Bump requirements for Xfce 4.18
- Adding wallpapers of Xfce4.18 wallpaper contest
- Adding wallpapers of Xfce4.18 wallpaper contest
- Translation Updates:
German, Greek, Hungarian, Norwegian Bokmål, Occitan (post 1500),
Russian, Serbian
4.17.2 (2022-12-01)
======
- Improve behavior when changing folders in settings dialog
- Revert "settings: select first image when directory changes"
- Improve icon area invalidation
- Clean up desktop icon pixbuf loading a little bit
- bump copyright year to 2022
- Make file transfer d-bus operations async
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Azerbaijani,
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, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan
(post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
Thai, Ukrainian, Uyghur, Uzbek
4.17.1
======
- doc: README.xfconf: fix missing type for 'primary' attribute
- xfce-desktop: give the 'primary' property a more clear description
- harmonize build-time option USE_DESKTOP_MENU to ENABLE_DESKTOP_MENU
- Fix windowlist icon blurriness when UI scale factor != 1
- Don't use deprecated xfce_spawn_*() functions
- Ignore deprecation warnings from libwnck functions
- Fix blurriness in window icons when UI scale != 1
- Fix blurry drag icon when UI scale != 1
- Fix warnings in settings dialog
- Make background previews less blurry when UI scale factor != 1
- Fix blurry rendering of special file icons in settings dialog
- Fix tooltip icon blurriness when UI scale factor != 1
- Remove single-file thunar transfer function
- Support dropping multiple icons onto another icon
- Better context menu population with multiple selected icons
- Allow showing file properties when multiple are selected
- Fix blurry desktop icons when UI scaling != 1
- Fix blurry background when UI scaling != 1
- Fix incorrect args to gtk_widget_queue_draw_area()
- Properly handle UI scale factor
- Allow ejecting unmounted volumes
- settings: fix memleak on background directory change
- settings: select first image when directory changes
- settings: rename some confusingly-named variables
- Make removable volume tooltop more consistent with the others
- Follow global gtk-menu-images setting for icon context menus
- Implement better keyboard typeahead navigation
- Call file manager launch API asynchronously
- Possibly fix issues finding icon locations in the rc file
- Support for menu item "set default application"
- Output compile_flags.txt
- Clean up resources better on exit
- Properly free string array when transferring multiple files
- Prevent more than one root menu popping up at the same time
- Refactor how root menu population works
- Use proper X11 screen number for enumerating windows
- Fix X11 multiscreen support
- Fix build when desktop icons are disabled
- Fix icon view drawing glitches
- Fix crash when selected icon changed workspaces
- Revert "Fall back to exo-csource if xdt-csource isn't found"
- Fall back to exo-csource if xdt-csource isn't found
- Translation Updates:
Albanian, Basque, Bulgarian, Chinese (China), Chinese (Taiwan),
Czech, Danish, Dutch, English (United Kingdom), Estonian, French,
Galician, German, Greek, Hebrew, Indonesian, Italian, Japanese,
Kazakh, Lithuanian, Malay, Norwegian Bokmål, Occitan (post 1500),
Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Russian,
Serbian, Slovenian, Spanish, Swedish, Ukrainian
4.17.0 (2022-08-20)
======
- Copy file instead of overwrite for DND
- Resolve deadlock on background change (Issue #188)
- Set default working directory for .desktop files
- build: Fix intltool lock file problem during make distcheck
- Improve warning about registering background with AccountsService.
- Fix wording
- Fix indentation
- Strip only known icon suffix
- Use `icon_name` variable instead of hard-coded value
- Remove unnecessary `else`
- Allocate memory after error processing
- Fix indentation
- Remove redundant code
- Remove unused function call (Issue #157)
- Add option to disable "Delete" menu entry in context menu (!22)
- Use a more specific device eject label (!24)
- Ask for confirmation before desktop icons are rearanged (Issue #128)
- Increase opacity of xfce-verticals bg (Fixes #125)
- Set default tooltip icon size to 64 (!17)
- Fix compilation warnings
- autoconf: Remove AC_HEADER_STDC
- Do not delete property not set
- Set a pixmap XID, not the XID of the root window (#62)
- Fix Applications Menu memory leak (Bug #102)
- Fix next background (!16)
- Fix gettext extraction from settings/xfce-backdrop-settings.desktop.in.in
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), Asturian, Azerbaijani,
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, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan
(post 1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
Thai, Ukrainian, Uyghur, Uzbek
4.16.0
======
- Drop autogenerated xfce-backdrop-settings.desktop.in from git
- Set new wallpaper as default
- Add wallpaper for 4.16
- settings: Drop subtitle
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- Remove GSourceFunc casts
- Avoid warning, pointer target in assignment differ in signedness
- Translation Updates:
Chinese (China), Danish, Greek, Norwegian Nynorsk, Slovenian
4.15.1
======
- Add keywords to .desktop files in xfdesktop
- Add 24px and 32px icons
- Remove extra separator from context menu
- Move 'Open in New Window' of root window context menu (#59)
- Remove "Properties..." entry from desktop context menu (#59)
- Translation Updates:
Albanian, Amharic, Arabic, Armenian (Armenia), 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, Georgian,
German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
Italian, Japanese, Kazakh, Korean, Lithuanian, Malay, Norwegian
Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian (Iran),
Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian,
Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian,
Uyghur, Uzbek
4.15.0
======
- Pull in new fallback icon from Adwaita
- Add new app icon and switch to rDNS icon name
- Avoid redundant calls to backdrop_changed_cb (Bug #16773)
- Move from exo-csource to xdt-csource (Bug #16717)
- Increase minimum desktop icon size to 16 (Bug #16667)
- Correct spelling of file system (Bug #16543)
- Increase desktop icon increments to 2 (Bug #16668)
- Unselect all items after single click activation
- Fix memory leak when reconnecting DP monitor (Bug #16314)
- Fix regression caused by (Bug #16342)
- Fix transparent background color (Bug #16380)
- Add Shift+Ctrl+N keybinding for Create Folder (Bug #15660)
- Ignore modifier key events in type-ahead find (Bug #11149)
- Added type-ahead find for Desktop icons (Bug #11149)
- Do not insert hyphens at intra-word line breaks (Bug #16339)
- Replace deprecated G_FILE_MONITOR_EVENT_MOVED (Bug #16342)
- Translation Updates: Albanian, Amharic, 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, Georgian, German, Greek, Hebrew, Hungarian,
Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian,
Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Uighur,
Ukrainian, Uzbek
4.14.2
======
- Update thumbnail when file changes (Bug #14919)
- Add DnD support for application/octet-stream (Bug #14919)
- windowlist: Fix ellipsizing (Bug #15851)
- Add padding to custom actions without icon (Bug #14628)
- Fix yet another rubber band DnD issue (Bug #16046)
- Reintroduce workaround for Bug #11283
- Show file names in tooltips (Bug #15899)
- fallback style: Highlight selected icons (Bug #15866)
- Translation Updates: Albanian, Amharic, Arabic, Armenian (Armenia), Asturian,
Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong),
Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (Australia),
English (Canada), 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), Persian (Iran),
Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak,
Slovenian, Spanish, Swedish, Thai, Turkish, Uighur, Ukrainian, Uzbek
4.14.1
======
- Ensure the new default wallpaper gets installed
4.14.0
======
- Add 4.14 wallpaper and set it as default
- Do not query file information again (Bug #15460)
- Replace GtkStock buttons
- Translation Updates:
Galician, Italian, Norwegian Bokmål, Norwegian Nynorsk, Portuguese,
Portuguese (Brazil)
4.13.6
======
[Please note that this is a development release.]
Development release of xfdesktop targeting for Xfce 4.14.
Please report all problems at bugzilla.xfce.org.
- Update copyright year
- Use https where possible
- Add padding to Window Actions menu entry (Bug #14628)
- Display correct icon size of minimized apps (Bug #8951)
- Reorder checkboxes in Settings UI
- Translation Updates: Finnish, Kazakh, Norwegian Bokmål, Portuguese (Brazil),
Ukrainian
4.13.5
======
[Please note that this is a development release.]
Development release of xfdesktop targeting for Xfce 4.14.
Please report all problems at bugzilla.xfce.org.
- Highlight drag target when hovering it (Bug #12695)
- Fix drag data being received multiple times (Bug #14471)
- Allow to load non-theme icons (Bug #15294)
- Add Next Background option (Bug #12261)
- Do not cycle backdrop twice
- Ensure that CSD is not applied to desktop window (Bug #15241)
- Use async dbus proxy initialization (Bug #15418)
- Open all selected icons on key press (Bug #15420)
- Improve fallback CSS
- Fix warning about ignoring return value (Bug #15410)
- Update README.xfconf (Bug #15457)
- Translation Updates: Albanian, Armenian (Armenia), Belarusian, Bulgarian,
Catalan, Chinese (Taiwan), Croatian, Danish, Dutch, English (Australia),
Finnish, French, Galician, German, Hebrew, Hungarian, Interlingue, Italian,
Lithuanian, Malay, Persian (Iran), Polish, Portuguese, Russian, Serbian,
Spanish, Thai, Turkish
4.13.4
======
[Please note that this is a development release.]
Development release of xfdesktop targeting for Xfce 4.14.
Please report all problems at bugzilla.xfce.org.
- Re-introduce ability to move icons to other displays (Bug #15198)
- Make 'Move to Trash' icon the same as Thunar (Bug #15234)
- Match Thunar Drag and Drop behavior (Bug #14919)
- Stop ongoing drag/selection if middle/right mouse button is
pressed (Bug #14180)
- Fix Desktop icons order resets, by adding link to last used configuration as
fallback (Bug #11266)
- Fix xfdesktop crashes after multiples --reload (Bug #15060)
- Fix scaling of images with orientation metadata (Bug #14644)
- Fix stretching/zooming of images with orientation metadata (Bug #15292)
- Fix has_mime_type implementation (Bug #15295)
- Use clipboard target "text/uri-list" when copying/cutting (Bug #13379)
- Set desktop environment for garcon app menu (Bug #14599)
- Remove faulty line in glade file (Bug #15293)
- Fix g_type_class_add_private is deprecated
- Avoid invalid memory access (Bug #15299)
- Avoid timer leak when docking-undocking monitors (Bug #13887)
- Use clipboard target "text/uri-list" when copying/cutting (Bug #13379)
- Set desktop environment for garcon app menu (Bug #14599)
- Properly center workspace header in windowlist (Bug #15405)
- Fix memory leak when monitors change (Bug #14844)
- Replace/remove deprecated functions
- Translation Updates: Albanian, Arabic, Asturian, Basque, Belarusian,
Bulgarian, Chinese (Hong Kong), Chinese (Taiwan), Danish, English (Australia),
English (Great Britain), Estonian, Finnish, French, Galician, Greek,
Icelandic, Indonesian, Italian, Korean, Norwegian Bokmål, Norwegian Nynorsk,
Occitan, Polish, Portuguese (Brazilian), Romanian, Russian, Serbian,
Slovenian, Spanish, Uyghur
4.13.3
======
[Please note that this is a development release.]
Development release of xfdesktop targeting for Xfce 4.14.
Please report all problems at bugzilla.xfce.org.
- Minimal GTK version = 3.22
- Avoid crash: do not clean up data to be used (Bug #14609)
- Add orientation option to arrange icons (Bug #14979)
- Fix icon size in Open with submenu (Bug #14774)
- Add support for RandR's primary monitor (Bug #10688)
- Sync user's wallpaper selection to AccountsService
- Restore icons of custom actions
- Port Settings UI to Glade 3
- Add padding to some context menu icons (Bug #14628)
- Translation Updates: Albanian, Amharic, Arabic, Asturian, Basque, Belarusian,
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, Italian, Japanese, Kazakh, Korean,
Lithuanian, Malay, Nepali, Norwegian Bokmål, Norwegian Nynorsk, Occitan,
Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian,
Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian,
Uyghur, Uzbek
4.13.2
======
[Please note that this is a development release.]
Development release of xfdesktop targeting for Xfce 4.14.
Please report all problems at bugzilla.xfce.org.
- Use the new Thunarx-3 API (Thunar >= 1.7)
- Use custom CSS for the iconview as a fallback (Bug #13609)
- Get/set _NET_DESKTOP_MANAGER_S<screen> atom (Bug #13653)
- Make "another desktop manager is running" messages critical (Bug #13653)
- Change "Create Launcher..." icon (Bug #14161)
- Do not popup a single "Applications" menu when right clicking on desktop (Bug #13866)
- Single-click mode executes desktop items twice (Bug #14021)
- Fix menu popup issue with desktop icons disabled (Bug #14415)
- Fix memory leak : Don't try to allocate all the memory (Bug #12805)
- Fix some autotools warnings and bump dependencies
- Make a couple of strings translatable (Bug #14374)
- Translation Updates: Amharic, Arabic, Asturian, Belarusian, Bulgarian, Catalan, Czech,
Danish, German, Greek, English (Australia), English (United Kingdom), Spanish, Estonian,
Basque, Persian (Iran), Finnish, French, Galician, Hebrew, Croatian, Hungarian, Indonesian,
Icelandic, Italian, Japanese, Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål, Dutch,
Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian,
Russian, Slovak, Slovenian, Serbian, Swedish, Thai, Turkish, Uighur, Ukrainian, Uzbek,
Chinese (China), Chinese (Hong Kong), Chinese (Taiwan)
4.13.1
======
[Please note that this is a development release.]
Development release of xfdesktop targeting for Xfce 4.14.
Please report all problems at bugzilla.xfce.org.
* Miscellaneous bug fixes:
- Fix a memory leak reported in Bug #13555
- Fix garcon-2 dependancy check (continue to use garcon-1)
* Translation Updates:
ca da de es fr he hr id it ja kk ko ms pl
pt pt_BR ru th uk zh_CN
4.13.0
======
[Please note that this is a development release.]
Development release of xfdesktop targeting for Xfce 4.14.
Please report all problems at bugzilla.xfce.org.
* Major changes:
- Port to version = 3.22
- Fix icon size in Open with submenu (Bug #14774)3.
- The iconview has a CSS name of "XfdesktopIconView" and
adds the GTK_STYLE_CLASS_VIEW to it's base. It then adds
GTK_STYLE_CLASS_LABEL when rendering the icon text with
the states: selected, active, or normal. Additionally it
uses the GTK_STYLE_CLASS_RUBBERBAND when for the rubberband
theming.
- Port to GDBus.
* Miscellaneous bug fixes:
- Don't redraw the icons on focus change events (Bug #12071)
- Don't try to divide by 0 (Bug #12115)
- Settings: Fix loading of wallpaper previews (Bug #11892)
- Settings: Allow directories to be selected (Bug #12832)
- Fix Open dialog's title (Bug #12560)
- Prevent a crash in the backdrop loader (Bug #12339)
- Use gdk's get static image for animation files
- Add translation string for Trash desktop icon
- Retain icon relative position when moving a group
4.12.3
======
Stable release of xfdesktop for Xfce 4.12.
* Bug fixes:
- Remove whitespaces from monitor name when accessing settings
Patch by Andreas Müller
- Settings: Fix loading of wallpaper previews (Bug #11892)
- Rotate images for wallpaper based on embedded orientation
* Translation updates:
English (Australia) (en_AU), Spanish (Castilian) (es),
Lithuanian (lt), Swedish (sv)
4.12.2
======
Stable release of xfdesktop for Xfce 4.12.
* Bug fixes:
- Optimized sorting wallpapers (Bug #11817)
- Don't sort the image list when randomly cycling (Bug #11817)
- Don't load an image list unless we're cycling (Bug #11817)
- Allow dragging desktop launchers to the panel (Bug #2794)
- Load emblem-unreadable if necessary
- Bail out when a negative value was calculated for row/col. (Bug #11782)
- Hide empty comment line in icon tooltip
- Fix build error (Bug #11778)
- Ignore shadow blur radius when calculating icon text box
- Prefer "_NETSCAPE_URL" over "text/uri-list" (Bug #9632)
- Drop explicit LibSM check (Bug #11744)
- Preserve order when moving multiple icons (Bug #11195)
- Drop warning when D-Bus timeout error occurs (Bug #11283)
- Add default wallpaper folder to file chooser (Bug #11715)
4.12.1
======
Stable release of xfdesktop for Xfce 4.12.
* Bug fixes:
- Remove unused variable 'tmp_text'
- Monitor the wallpaper file for changes
(Bug #11620)
- Reinitialize background when reloading desktop
(Bug #11620)
- Update rc file after completing delete process
(Bug #11692)
- Add a xfconf settings to center the text on
xfdesktop icons. This fixes some issues with
RTL languages.
- Do not overwrite rc file while restoring icons
(bug #11266)
- Fix crash when moving 2+ icons to the bottom
right corner
- Fix icon placement when using "Arrange Desktop
Icons" (Bug #11639)
- Center icons vertically in the grid (Bug #11086)
- Set initial value of font size spin button
- Show sub directories in template menu again
- Prevent accidental double clicks in single
click mode (Bug #10720)
- Disable rename menu entry for special icons
- Add icon emblems in clockwise order
- Handle icons with preset emblems (Bug #7417)
- Enable drag&drop popup menu for local actions
- Use mini icon and allow dimming of non-scaled
icons
* Translation updates:
Czech (cs), Greek (el), Spanish (Castilian) (es),
Croatian (hr), Italian (it), Japanese (ja),
Kazakh (kk), Korean (ko), Lithuanian (lt),
Malay (ms), Norwegian Bokmål (nb),
Polish (pl), Portuguese (pt),
Portuguese (Brazilian) (pt_BR), Russian (ru),
Slovak (sk), Thai (th), Turkish (tr),
Ukrainian (uk), Chinese (China) (zh_CN)
4.12.0
======
Stable release of xfdesktop for Xfce 4.12.
Thank you to everyone who contributed patches,
translation updates, and tested xfdesktop
during its development.
* Miscellaneous bug fixes:
- New background for 4.12!
- Add a space between icons to fill the entire screen
- Add optional blurring on shadow on text of icons.
- Editing menu items with right click optional
(Bug #11031)
- Clarify right click apps menu presence (Bug #10301)
- Default application not respected with glib >= 2.41
(Bug #11306)
- Include dir needed for building "out of tree"
- Fix crash in xfdesktop's metadata monitor
- Add 1px to widen the text shadow and improve contrast
- Fix calculation of shadows that are offset in RTL
text (Bug #5239)
- Adapt thunar's context menu structure (Bug #11542)
- Additional context menu changes
- Consider shadow offsets and blur extents when
calculating the text box
- Sort pending icons on resize (Bug #11266)
- Allow thunarx menu entries for multiple file selection
- Show 'No templates installed' when no templates
are found
- Hide file action menu entries when volume + other
icons are selected
- Don't use cairo_surface_create_similar_image
(Bug #11566)
- Consider shadow extents/offsets when updating icon
extents
* Translation updates:
Arabic (ar), Asturian (ast), Bulgarian (bg),
Czech (cs), Danish (da), German (de),
English (Australia) (en_AU), Spanish (Castilian) (es),
Basque (eu), Finnish (fi), French (fr), Hebrew (he),
Croatian (hr), Icelandic (is), Italian (it),
Japanese (ja), Kazakh (kk), Korean (ko), Malay (ms),
Norwegian Bokmål (nb), Dutch (Flemish) (nl),
Polish (pl), Portuguese (pt), Portuguese (Brazilian) (pt_BR),
Russian (ru), Slovak (sk), Slovenian (sl), Serbian (sr),
Thai (th), Turkish (tr), Ukrainian (uk),
Chinese (China) (zh_CN), Chinese (Taiwan) (zh_TW).
4.11.8
======
[Please note that this is a development release.]
Development release of xfdesktop targeting for Xfce 4.12.
Please report all problems at bugzilla.xfce.org.
* Miscellaneous bug fixes:
- Fix xfdesktop --reload in spanning mode (Bug 10853)
- settings: Fix background color loading
- Add an --enable-debug option added to xfdesktop-settings
- Fix icon loading for .desktop files (Bug 11078)
- Don't show infobar when there's only 1 workspace (Bug 11134)
- Remove the drag highlight code (Bug 10450)
* Translation updates:
Czech (cs), Italian (it), Kazakh (kk), Korean (ko),
Polish (pl), Russian (ru), Thai (th)
4.11.7
======
[Please note that this is a development release.]
Eighth development release of xfdesktop targeting for Xfce 4.12.
Please report all problems at bugzilla.xfce.org.
* Miscellaneous bug fixes:
- Add an option to show hidden files (Bug 8132)
- Add a --next option to force wallpaper changes (Bug 10754)
- Add runtime debug support
- Add a move to trash menu option (Bug 10980)
- Change behaviour to behavior (Bug 8746)
- Matias De lellis: Fix display desktop file that include extension
in icon name
- Matias De lellis: Fix missing thumbnail on xfdesktop when thumbler
fails to create it.
- Mauro Giubileo: Fix icon position saving on resolution change (Bug 10813)
* Translation updates:
Asturian (ast), Chinese (Taiwan) (zh_TW), Croatian (hr),
Dutch (Flemish) (nl), English (Australia) (en_AU),
French (fr), German (de), Icelandic (is), Italian (it),
Japanese (ja), Korean (ko), Malay (ms), Norwegian Bokmål (nb),
Polish (pl), Portuguese (pt), Portuguese (Brazilian) (pt_BR),
Russian (ru), Spanish (Castilian) (es), Thai (th), Ukrainian (uk).
4.11.6
======
[Please note that this is a development release.]
Seventh development release of xfdesktop targeting for Xfce 4.12.
Please report all problems at bugzilla.xfce.org.
* Miscellaneous bug fixes:
- g_file_trash_async is too new (Bug 10786)
- Don't chain up style_set (Bug 10788)
- Fix for moving icons into folders on the desktop (Bug 10785)
- Fix issues with file move events (Bug 10796)
- Use GTK_STOCK_EXECUTE for Execute menu entry (Bug 10800)
- Change default image style to zoomed
- Fix for monitors not getting updated
- Hook up the signal handlers in xfdesktop-settings
* Translation updates: Czech (cs), Dutch (Flemish) (nl),
English (Australia) (en_AU), Italian (it), Japanese (ja),
Kazakh (kk), Polish (pl), Serbian (sr), Spanish (Castilian) (es),