-
Notifications
You must be signed in to change notification settings - Fork 36
/
NEWS
5259 lines (3811 loc) · 109 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
============
Version 44.1
============
- Fix compatibility with muslc (!158, Pablo Correa Gomez)
- Fix GNOME_DESKTOP_IS_THUMBNAIL_FACTORY (!160, Matthijs Velsink)
- Update default Indic input methods (!163, Parag Nemade)
- Use ibus-chewing as the default input source for zh_TW (!164, Kan-Ru Chen)
- Translation updates
============
Version 44.0
============
- Adding a zero
==========
Version 44
==========
- Fix idle monitor watch leak
- Save original thumbnail dimensions in metadata
- Fix Turkish keyboard layout
- Translation updates
===============
Version 44.beta
===============
- Add GnomeWallClock:force-seconds property
- Translation updates
============
Version 43.1
============
- Fix gnome_parse_locale returning NULL for the C locale (!148, godvino)
- Use more sensible default keyboard for es_US (!150, Georges Basile Stavracas Neto)
- Delete failed thumbnail if successfully savings thumbnail (!151, Corey Berla)
- skip territory if no translation available (!152, Alban Browaeys)
- Translation updates
==========
Version 43
==========
- Translation updates
=============
Version 42.rc
=============
- gnome-languages: Simplify XPG language parsing
- Translation updates
=============
Version 43.alpha
=============
- Don't use bubblewrap inside snaps since those are already sandboxed
- Remove gnome-version.xml
- Add GCancellable and GError to the thumbnail API
- Make it possible to disable gobject-introspection generation
- Revert "thumbnails: keep the original file name"
- Include a header defining GNOME_DESKTOP_PLATFORM_VERSION
- Translation updates
=============
Version 42.rc
=============
- Translation updates
===============
Version 42.beta
===============
- Add async methods for thumbnail creation
- thumbnail: Resolve symlinks before exporting them with Flatpak
- Make table:cangjie5 the default input method for zh_HK
- Translation updates
============
Version 42.alpha.1
============
- build: fix soversion in libgnome-desktop-4
============
Version 42.alpha
============
- gnome-languages: fix translation of 3-letter code languages
- Introduce gnome-desktop-4, libgnome-desktop-3.0 is still available with a build flag
- Split libgnome-desktop into three, gnome-desktop, gnome-rr, gnome-bg. -rr and -bg depend on gtk4
- Refactor gnome-gettext-portable.h
- Translation updates
============
Version 41.1
============
- gnome-languages: Avoid passing NULL to newlocale
- Avoid the use of `allow-none` for out parameters
- Translation updates
============
Version 41.0
============
- Translation updates
=============
Version 41.rc
=============
- Some improves in the CI
- Translation updates
===============
Version 41.beta
===============
- xkb: Clear cached layouts when necessary
- Translation updates
================
Version 41.alpha
================
- Stop mounting ld.so.cache on non-glibc systems
- Replace usage of non-portable `uselocale` with locale-dependent functions
- Fix starttime hour parsing in animated background
- xkbinfo: only insert new layouts, skip over duplicate ones
- Translation updates
============
Version 40.0
============
- No changes
=============
Version 40.rc
=============
- bg-slide-show: Always parse date/time integers in base 10
- thumbnail: Fix thumbnailing of CBZ with UTF-8 filenames
- thumbnail: Fix non-working thumbnailer in Flatpak
- Translation updates
===============
Version 40.beta
===============
- xkbinfo: Update iso639Ids but not iso3166Ids correctly in evdev
- Translation updates
================
Version 40.alpha
================
- Add support for x-large and xx-large thumbnail sizes (!99, Bastien Nocera)
- Make it easier to profile thumbnailers (!94, Bastien Nocera)
- thumbnailer: Cache GStreamer's plugin registry (!93, Bastien Nocera)
- Sandbox thumbnailers in Flatpaks (!92, Bastien Nocera)
- Change default input source to anthy for Japanese (#181, Takao Fujiwara)
- xkbinfo: use libxkbregistry to parse the rules files (!79, Peter Hutterer)
- Translation updates
==============
Version 3.38.0
==============
- Translation updates
===============
Version 3.37.92
===============
- Translation updates
===============
Version 3.37.91
===============
- Allow /etc/alternatives in bubblewrap sandbox (#92, Simon McVittie)
- Fix bubblewrap sandbox on s390x (!82, Simon McVittie)
===============
Version 3.37.90
===============
- systemd: Default to garbage collect failed scopes
- systemd: Change naming scheme to conform to systemd convention
- Translation updates
==============
Version 3.37.3
==============
- Don't run locale tests at build time (#159, Simon McVittie)
- Translation updates
===============
Version 3.37.2
===============
- languages: Fix encoding issue when translating locale modifiers (#156)
- thumbnails: keep the orignal file name (#154)
- Translation updates
===============
Version 3.37.1
===============
- rr: add color transform functions
- remove unused direct x11 dependency
===============
Version 3.36.0
===============
- Translation updates
===============
Version 3.35.91
===============
- Translation updates
===============
Version 3.35.90
===============
- Fix crash in idle monitor
==============
Version 3.35.4
==============
- Remove unused API not compatible with wayland
==============
Version 3.35.3
==============
- Add utility function to start a transient systemd scope
- Blacklist seccomp on riscv64 architecture as its not supported yet
- Honor XKB_CONFIG_ROOT environment variable
==============
Version 3.35.2
==============
- Fix time display issue with Japanese translation (Tianhao Chai)
==============
Version 3.35.1
==============
- No changes
==============
Version 3.34.1
==============
- Translation updates
=================
Version 3.34.0
=================
- Translation updates
=================
Version 3.33.92.1
=================
- tests/wall*: Do not fail if some of the locales is missing
===============
Version 3.33.92
===============
- Updated translations
===============
Version 3.33.91
===============
- Updated translations
===============
Version 3.33.90
===============
- Avoid using g_type_class_add_private()
- Updated translations
==============
Version 3.33.4
==============
- Support common_name in ISO 639 (#49, Gunnar Hjalmarsson)
- Display locale @modifiers properly (#50, Gunnar Hjalmarsson)
- Fix detection of builtin display on NVIDIA (Jeremy Soller)
- GnomeBGSlideShow filename property replaced with a file property (Marco Trevisan)
==============
Version 3.33.3
==============
- Translation updates
==============
Version 3.33.2
==============
- thumbnailer: Correctly cleanup stale thumbnailer directories
- Translation updates
==============
Version 3.33.1
==============
- thumbnailer: fix incomplete TIOCSTI filtering (#112)
- gnome-languages: Use uselocale to avoid threadsafety issues (#105)
- Add default keyboard layout for Indonesia
- Translation updates
===============
Version 3.31.91
===============
- Translation updates
===============
Version 3.31.90
===============
- Fix slow thumbnailer due to missing font cache (#90)
- Translation updates
==============
Version 3.31.4
==============
- Fix some thumbnailer sandboxing issues
- Translation updates
==============
Version 3.31.3
==============
- Use LC_TIME for time format string translations
- Fix a use-after-free in the thumbnailer
==============
Version 3.31.2
==============
- Translation updates
===============
Version 3.31.1
===============
- Port buildsystem to meson
- Translation updates
===============
Version 3.30.0
===============
- Translation updates
===============
Version 3.29.92
===============
- Translation updates
===============
Version 3.29.91
===============
- Fix various wall clock regressions
- Fix regressions from intltool removal
- Fix regressions introduced by g_autoptr usage
=================
Version 3.29.90.1
=================
- wall-clock: Tweak the clock format
- Require gio-unix-2.0
===============
Version 3.29.90
===============
- wall-clock: Immediately react to show-weekday changes
==============
Version 3.29.4
==============
- No changes
==============
Version 3.29.3
==============
- Fix memory leak
- Updated translations
==============
Version 3.29.1
==============
- Updated translations
==============
Version 3.28.1
==============
- Updated translations
==============
Version 3.28.0
==============
- No changes
===============
Version 3.27.92
===============
- idle-monitor fixes
- Several fixes for compilation warnings
- Updated translations
===============
Version 3.27.90
===============
- Miscellaneous improvements to the thumbnailer code
- Remove unused gnome_desktop_thumbnail_has_uri()
- Replace GdkColor methods with GdkRGBA methods
===============
Version 3.27.2
===============
- No changes
===============
Version 3.27.1
===============
- Change default Japanish input source to KCC
- wall-clock: respect new clock-show-weekday setting
- Remove some obsolete API's in thumbnailer
- Modernize autotools configuration a bit
- Translations updates
===============
Version 3.26.0
===============
- Translation updates
===============
Version 3.25.92
===============
- Fix multiple bugs in thumbnailing
- Disable gvfs in thumbnailer sandboxes
- Translation updates
=================
Version 3.25.91.1
=================
- Fix multiple bugs in sandboxed thumbnailer handling,
including performance, and left-over files in /tmp
- Fix a memory leak in the display handling code
- Fix a compile-time error on x32
=================
Version 3.25.90.1
=================
- Improve error reporting in thumbnailers
- Fix crashes in thumbnailers (#785963)
===============
Version 3.25.90
===============
- Thumbnailers are now sandboxed (#7744970, #785197)
- Fix a crash in xkb info handling (#785320)
- Translation updates
==============
Version 3.25.4
==============
- Fix uninitialized memory in the thumbnailer (#784915)
- Add default input source for fr_BE
==============
Version 3.25.3
==============
- gnome-bg: Handle exif orientations (#516177)
- Translation upates
==============
Version 3.25.2
==============
- thumbnail: Update documentation
==============
Version 3.25.1
==============
- wallclock: don't update needlessly (#780861)
- wallclock: am/pm is always available now (#780877)
- Translation updates
==============
Version 3.24.0
==============
- No changes
===============
Version 3.23.92
===============
- No changes
===============
Version 3.23.91
===============
- No changes
===============
Version 3.23.90
===============
- Always prefer the backend-provided preview in thumbnails (#738503)
- Use ibus-libzhuyin as default input method for Simplified Chinese (#772674)
- Deprecated gnome_desktop_thumbnail_scale_down_pixbuf (#775991)
==============
Version 3.23.3
==============
- Always use external gdk-pixbuf thumbnailer (#768064)
================
Version 3.23.2
================
- No changes
================
Version 3.23.1
================
- No changes
================
Version 3.22.1
================
- Translation updates
================
Version 3.22.0
================
- No changes
================
Version 3.21.92
================
- Fix a crash on non-udev platforms (#770686)
- Translation updates
================
Version 3.21.90
================
- No changes
================
Version 3.21.4
================
- Use udev's hwdb to query PNP IDs (--disable-udev to disable this)
- Remove dependencies on xrandr and xext
================
Version 3.21.3
================
- Translation updates
================
Version 3.21.2
================
- Add API to know if a GnomeRRMode is interlaced
================
Version 3.21.1
================
- No changes
================
Version 3.20.1
================
- No changes
================
Version 3.20.0
================
- No changes
================
Version 3.19.93
================
- Add a way to get the frequency for a mode as a floating number
================
Version 3.19.92
================
- No changes
================
Version 3.19.91
================
- Reduce log spam in thumbnailing
- Translation updates
================
Version 3.19.90
================
- No changes
================
Version 3.19.4
================
- Capitalize language and territory names
- Add default keyboard layout for Mexico and Guatemala
- Avoid a crash when thumbnailing
- Be more careful when parsing locales
- Translation updates
================
Version 3.19.3
================
- Fix a compiler warning in gnome-rr
================
Version 3.19.2
================
- Translation updates
================
Version 3.19.1
================
- Fix turning off tiled monitors
- Fix thumbnailing of animations
- Translation updates
================
Version 3.18.0
================
- Translation updates
================
Version 3.17.92
================
- Support g_autoptr() for all libgnome-desktop object types
================
Version 3.17.90
================
- Translation updates
================
Version 3.17.4
================
- Remove unused EDID parsing code
- Support underscanning
- Export dpms information
- Add support for tiled monitors
- Translation updates
================
Version 3.17.3
================
- Fix build of installed-tests
- Translation updates
================
Version 3.17.2
================
- Add support for overscan compensation in displays (#748560)
================
Version 3.16.1
================
- No changes
================
Version 3.16.0
================
- Translation updates
================
Version 3.15.92
================
- Translation updates
================
Version 3.15.91
================
- No changes
================
Version 3.15.90
================
- Drop libgsystem dependency (#680326)
- Translation updates
===============
Version 3.15.4
===============
- Modernize gtk-doc use (#742479)
- Fix memory handling in GnomeRR and language code (#742111, #742569)
===============
Version 3.15.3
===============
- Fix mutex handling in thumbnailing code (#740666)
=================
Version 3.15.2.1
=================
- Fix thumbnailing failures due to internal cleanups (#684026)
===============
Version 3.15.2
===============
- Add installed tests (#737140)
- Recognize builtin monitors in Dell machines (#740289)
- Improve thumbnail handling (#684026)
- Translation updates
===============
Version 3.15.1
===============
- languages: Use a more broadly compatible locale codeset suffix (#710412)
- Remove unused code in gtk-reftest (#737123)
- Translation updates
===============
Version 3.14.1
===============
- Translation updates
===============
Version 3.14.0
===============
- Translation updates
================
Version 3.13.92
================
- Fixed the build on systems lacking openat()
- Translation updates
================
Version 3.13.91
================
- gnome-xkb-info: Fix some layouts not being associated to a locale
- Translation updates
================
Version 3.13.90
================
- gnome-rr: Add missing introspection annotations
- Translation updates
===============
Version 3.13.3
===============
- wall-clock: Add ref-tests for clock output
- wall-clock: Always use the ratio character (#726232)
===============
Version 3.13.2
===============
- gnome-rr: Output the EDID vendor/product info as well
- gnome-rr: Add backlight output in debug
- thumbnailer: Try harder to create a failed thumbnail (#728775)
===============
Version 3.13.1
===============
- Fix the build on OpenBSD
- gnome-rr: Improve debug output
===============
Version 3.12.1
===============
- gnome-rr: Actually define output_get_possible_crtcs (#727034)
- gnome-rr: Initialize GnomeRROutputInfo:rotation to GNOME_RR_ROTATION_0 (#727023)
===============
Version 3.12.0
===============
- Version bump for the GNOME 3.12.0 stable release
================
Version 3.11.91
================
- Always set the DPMS mode when requested
- Translation updates
================
Version 3.11.90
================
- gnome-xkb-info: Remove xkbfile dependency (#719942) - API and ABI break
- gnome-xkb-info: Apply main layout locale metadata to variants (#711291)
===============
Version 3.11.5
===============
- wall-clock: Replace ratio with colon on non-UTF-8 locales (#722664)
===============
Version 3.11.4
===============
- more new gnome-rr api
- drop using glibc internal headers
- docs for thumbnailers
- idle monitor fixes
- use newer libgsystem internally
===============
Version 3.11.2
===============
- gnome-rr: Improve debug output
- Translation updates
===============
Version 3.11.1
===============
- Add gnome_rr_output_get_min_backlight_step() API
===============
Version 3.10.1
===============
- gnome-bg: Fix memory leaks (#709271)
- gnome-bg: set error when parsing XML file that's not a slide show (#708877)
- languages: Obtain supported locales from "locale -a" output (#698383)
- thumbnailer: Bail if no pixbuf loader could be created (#709819)
- thumbnailer: Support loading thumbnails from remote locations (#708824)
- Translation updates
===============
Version 3.10.0
===============
- libsystem: Update from master ($708435)
- gnome-rr: refresh when mutter restarts (#708284)
- Translation updates
===============
Version 3.9.92
===============
- IdleMonitor: protect watches from being freed while in flight (#707396)
- thumbnailer: Always print errors from gs_file_read_noatime() (#699252)
- thumbnailer: Correctly check for errors (#699252)
- thumbnailer: Check gdk_pixbuf_loader_close()'s retval (#699252)
- Correct the transposed bits of the red chromacity in the EDID parser
- Translation updates
===============
Version 3.9.91
===============
- gnome-rr: don't assume 'default' means built-in (#706738)
- gnome-rr: Read back new backlight value after changes (#706729)
- idle: Use mutter api instead of direct X clals (#706006)
- Translation updates
===============
Version 3.9.90
===============
- gnome-rr: Add api to get physical size
- gnome-rr: Add async constructor
- gnome-rr: Port to mutter dbus api (#705510)
- xkb: Prevent a crash (#705885)
- Translation updates
==============
Version 3.9.5
==============
- xkb: Ensure strings are UTF-8
- gnome-rr: Fix a crash
- gnome-rr: Be more careful when parsing EDID
- wall-clock: Initialize gettext
- gnome-bg: Objects without a filename are not slideshows
- gnome-xkb-info: Fix memory leaks
- Translation updates
==============
Version 3.9.1
==============
- gnome-xkb-info: Don't store duplicated layouts in locale tables
- idle-monitor: Make per-device monitor fallible
- wall-clock: Move ratio from msg id's to translations
- idle-monitor: Allow multiple watches per alarm
- Translation updates
==============
Version 3.7.90
==============
- Fix introspection generation for Vala
- Fix introspectability of GnomeBg
* GnomeIdleMonitor:
- Break ABI and API to fix reliance of the API on an Xorg bug
- use standard GObject boilerplate
- generate gtk-doc documentation
* GnomeWallClock:
- generate gtk-doc documentation
- add timezone property which can be monitored
- Add conventional gnome_wall_clock_new()
* GnomeXkbInfo:
- generate gtk-doc documentation