forked from GNOME/gnome-desktop
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNEWS
4795 lines (3474 loc) · 100 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 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
- Use the correct methods to get language/country
- Handle duplicated layouts
- Add API to get layouts for language and country
* gnome-languages:
- generate gtk-doc documentation
- Add methods to get language/country from ISO codes
- Add default input sources per locale
* GnomeRR:
- Make GnomeRRConfig use the detected display name
- use standard GObject boilerplate
- Improve gtk-doc documentation
* GnomeBg:
- Split slide show API to be usable from gnome-shell
- Add asynchronous version of slideshow loading
=============
Version 3.7.5
=============
languages: Don't g_warning if there's no locale archive
languages: Extracted from gnome-control-center
languages: Fix a memory leak
xkb-info: Group layouts by country and language
xkb-info: Add a get_layout_info_for_locale method
Translation updates: Norwegian, Slovenian, Polish, Hebrew, Serbian
=============
Version 3.7.4
=============
690703 wallclock: Fix AM/PM detection
691701 GnomeRR: make DPMS take effect immediately
wallclock: return a proper error when idle-counter unavailable
Translation updates: Spanish, Polish, Norwegian bokmål, Arabic,
Greek, Galician, Hebrew, Assamese, Friulian, Bulgarian, Slovenian,
Uyghur
=============
Version 3.7.3
=============
rr-labeler has been moved into gnome-control-center
We use nice Unicode for date formatting now
688227 idle-monitor: Reset the alarm so it can be triggered again
Translation updates: Kannada, Odia, Tamil
=============
Version 3.7.2
=============
Bug fixes:
682224 Fix a memory leak in GnomeIdleMonitor
682224 Support device-specific counters
688189 Fix compiler warnings
687913 Only use 12h mode when am/pm is available
Translation updates: Japanese
=============
Version 3.7.1
=============
Bug fixes:
684814 rr-labeler: Improve drawing of monitor label
684803 gnome-xkb-info: Add public api to get XKB option descriptions
682224 Add GnomeIdleMonitor
686792 Don't use gvfs-copy in autogen.sh
Translation updates: Aragonese, Catalan, Catalan (Valencian), Japanese,
Ukrainian, Uzbek
===============
Version 3.6.0.1
===============
Bug fixes:
684802 gnome-xkb-info: Fix introspection element-type annotations
==============
Version 3.6.0
==============
Bug fixes:
684140 gnome-xkb-info: Fix a memory leak
Translation updates: Arabic, Assamese, Belarusian, Bengali India,
Brazilian Portuguese, British English, Bulgarian, Czech, Danish,
Estonian, Finnish, French, Galician, German, Greek, Gujarati, Hebrew,
Hindi, Hungarian, Indonesian, Italian, Kannada, Korean, Latvian,
Lithuanian, Malayalam, Marathi, Norwegian bokmål, Persian, Portuguese,
Punjabi, Russian, Serbian, Simplified Chinese, Slovenian, Spanish,
Telugu, Thai, Traditional Chinese
==============
Version 3.5.90
==============
Alexander Larsson (1):
Fix crash if default background not found
Colin Walters (5):
gnome-bg: Don't use C99 declarations
Pull in libgsystem, use it to read thumbnails with O_NOATIME
.gitmodules: Was missing from previous commit
Fix up submodule setup
Update libgsystem
Dominique Leuenberger (1):
trivial: Replace FSF address with current one.
Rui Matos (2):
gnome-xkb-info: Parse XKB options
gnome-xkb-info: Use glib's slice allocator for small structures
William Jon McCann (2):
Don't crash if unable to set background
Increase the size of thumbnails to 256
Fixed bugs:
- #680326, thumbnailer should not modify atime of file
- #680354, crashes if unable to create a root surface
- #681897, Outdated FSF address
- #681929, increase default wallpaper thumbnail size to 256
- #682004, gnome-xkb-info: Parse XKB options
- #682252, Crashes if default bg not installed
Translators:
- Ihar Hrachyshka (be)
- Fran Diéguez (gl)
- Dirgita (id)
- A S Alam (pa)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)
Many thanks to all contributors: Mario Blättermann, Alexander Larsson, Tom
Tryfonidis, William Jon McCann, Rui Matos, Fran Diéguez, Dominique
Leuenberger, Ihar Hrachyshka, Colin Walters, Daniel Mustieles, A S Alam,
Dirgita, Bastien Nocera
=============
Version 3.5.5
=============
Aurimas Černius (1):
Updated Lithuanian translation
Colin Walters (1):
Update to new GMutex API
Daniel Mustieles (1):
Updated Spanish translation
Fran Diéguez (1):
Updated Galician translations
Giovanni Campagna (1):
GnomeWallClock: add ignore-date property
Kjartan Maraas (1):
Updated Norwegian bokmål translation
Matej Urbančič (1):
Updated Slovenian translation
Matthias Clasen (1):
Port to new documentation infrastructure
Nilamdyuti Goswami (1):
Assamese translation updated
Piotr Drąg (1):
Updated Polish translation
Sebastien Bacher (1):
gnome-bg: load the default background if the configured one is invalid
Sweta Kothari (1):
Updated gujarati file
Tom Tryfonidis (1):
Updated Greek translation
Yaron Shahrabani (2):
Updated Hebrew translation.
Updated Hebrew translation.
Мирослав Николић (1):
Updated Serbian translation
=============
Version 3.5.4
=============
No news
=============
Version 3.5.3
=============
Andrea Cimitan (1):
gnome-bg: Fix color conversion for solid backgrounds
Bastien Nocera (4):
gnome-rr: Add gnome_rr_output_get_ids_from_edid()
gnome-rr: Document the default DPI setting
pnp-ids: Add test program
pnp-ids: Add loop for speed testing the ID fetching
Christian Hergert (1):
gnome-rr: Draw monitor labels with rounded corners
Matthias Clasen (1):
Post-release version bump
Nilamdyuti Goswami (1):
Assamese translation reviewed
Ray Strode (2):
gnome-bg: force property update when doing new crossfade frame
Revert "Allow rotation if the virtual size has the correct number of pixels"
William Jon McCann (1):
Move thumbnails into XDG_CACHE_HOME
=============
Version 3.5.2
=============
* Add api to parse and describe XML layouts (#676583)
* Make monitor labels translucent and click-through (#675696)
* Fix a crash in background slide-shows when the system clock
is behind (#673551)
* Use "default" as the name for built-in laptop outputs (#949296)
* Add a gnome-rr-debug tool to help with debugging GnomeRR issues
* Translation updates
==============
Version 3.3.92
==============
libgnome-desktop
* GnomeBG:
- Publish the 'representative color' (Ryan Lortie)
- Code cleanups (Ryan Lortie)
* GnomeRR:
- Add definition for next rotation (Bastien Nocera)
- Detect Apple DFP outputs as internal (Richard Hughes)
Translators
* rajesh (hi)
* Seng Sutha (km)
==============
Version 3.3.91
==============
libgnome-desktop
* Add missing linking with -lrt for clock_gettime() (Martin Pitt)
* GnomeRR: Consider Embedded Display Port outputs as the laptop's
built-in display (Seth Forshee)
Translators
* Bahodir Mansurov (uz@cyrillic)
==============
Version 3.3.90
==============
libgnome-desktop
* GnomeBG: Add paranoid check to avoid crash (Gordon Allott)
Translators
* Mattias Põldaru (et)
=============
Version 3.3.5
=============
Misc
* Include exported pkg-config name in GIR (Evan Nemerson)
Translators
* Kjartan Maraas (nb)
=============
Version 3.3.4
=============
libgnome-desktop
* GnomeRR:
- Use GDK to get work area (Bastien Nocera)
- gnome_rr_screen_new() now creates a singleton for the specified
GdkScreen (Federico Mena Quintero)
Translators
* Jovan Naumovski (mk)
=============
Version 3.3.3
=============
No change, just a version bump: it'd be a shame to miss the 3.3.3 release :-)
=============
Version 3.3.2
=============
libgnome-desktop
* GnomeRR:
- Don't refresh the GnomeRRScreen when applying a matched
configuration from a file (Chris Coulson)
=============
Version 3.3.1
=============
libgnome-desktop
* GnomePnpIds: Add object to get the vendor name from PNP IDs
(Bastien Nocera)
* GnomeRR:
- Fix crash in update_brightness_limits (Ray Strode)
- Don't print an error for no backlight (Bastien Nocera)
- Remove deprecated functions (Bastien Nocera)
- When setting the DPMS mode manually, clear the timeouts
(Michael Vogt, Richard Hughes)
- Ignore DPMSSetTimeouts() and DPMSForceLevel() return value
(Alexandre Rostovtsev)
- Other DPMS-related fixes (Richard Hughes)
* GnomeWallClock:
- Remove the date/time source on dispose (Vincent)
- Fix non-Linux fallback code (Colin Walters)
Misc
* Lower xext dependency to 1.1 (Sean Finney)
* Require XRandR 1.3 during compilation (Bastien Nocera)
Translators
* Nilamdyuti Goswami (as)
* Jiro Matsuzawa (ja)
* Hari Krishna (te)
==============
Version 3.1.91
==============
libgnome-desktop
* Add GnomeWallClock (Colin Walters)
Translators
* Jorge González (es)
* Kjartan Maraas (nb)
* Piotr Drąg (pl)
================
Version 3.1.90.1
================
libgnome-desktop
* Link against libm (Frederic Peters)
==============
Version 3.1.90
==============
libgnome-desktop
* Remove GnomeTzMonitor (Bastien Nocera)
=============
Version 3.1.5
=============
libgnome-desktop
* GnomeRR: Fix settings the DPMS mode (Richard Hughes)
=============
Version 3.1.4
=============
libgnome-desktop
* GnomeRR: Add the capability to get and set the DPMS mode of the
screen (Richard Hughes)
Misc
* Fix Cflags path in uninstalled.pc file (Brian Cameron)
* Remove stale startup-notification dependency (Vincent)
* Require xext in configure (Xan Lopez)
Translators
* Tommi Vainikainen (fi)
=============
Version 3.1.3
=============
Note to packagers: while new API was added in this release, the version of the
library is unchanged; this is because we already did a major bump earlier in
3.1.x.
libgnome-desktop
* GnomeRR: Add methods to control the backlight on each output (Richard
Hughes)
Misc
* Modernize build system a bit (Vincent)
Translators
* Yuri Matsuk (be)
* Мирослав Николић (sr)
* Miroslav Nikolić (sr@latin)
* Muhammet Kara (tr)
=============
Version 3.1.2
=============
Note to packagers: this release breaks ABI compatibility in GnomeRR, so the
version of the library was bumped.
libgnome-desktop
* GnomeDesktopThumbnail: Use GOnce for thread safety (Colin Walters)
* GnomeRR: Add a size return value to gnome_rr_output_get_edid_data()
(Richard Hughes)
* GnomeRR: Emit ::output-connected and ::output-disconnected when
screen outputs come and go (Richard Hughes)
Translators