forked from linuxmint/cinnamon-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
7989 lines (5243 loc) · 208 KB
/
ChangeLog
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
# Generated by Makefile. Do not edit.
commit 2c3b43d28993225730cc9bff63e6d7cf920b91e8
Author: Rui Matos <tiagomatos@gmail.com>
Date: Sat Mar 16 18:52:13 2013 +0100
3.6.3
M NEWS
M configure.ac
commit 6c9ae8128e7cc7f09f0c86dd0596430a07618453
Author: Rui Matos <tiagomatos@gmail.com>
Date: Mon Jan 21 17:31:34 2013 +0100
gnome-xkb-info: Handle duplicated layouts
When merging entries from another .xml file (i.e. when
show-all-sources is active) there might be layout entries which were
already added before. In that case we don't want to create new entries
and replace the old ones because layout variants which were already
added depend on the existence of the old main layout.
https://bugzilla.gnome.org/show_bug.cgi?id=692219
https://bugzilla.gnome.org/show_bug.cgi?id=694149
M libgnome-desktop/gnome-xkb-info.c
commit 42e9bd70b7b8919cd9cefbafc0eac8bb38f84c5e
Author: Dimitris Spingos <dmtrs32@gmail.com>
Date: Sat Mar 9 08:48:34 2013 +0200
Updated Greek translation
M po/el.po
commit 2a0bf48d684c94072028960c7617e5bf19f0562f
Author: Gheyret Kenji <gheyret@gmail.com>
Date: Fri Jan 4 20:18:45 2013 +0900
Uyghur translation
Signed-off-by: Gheyret Kenji <gheyret@gmail.com>
M po/ug.po
commit 10bc8297b381b955db1ba93303a9d5ed2bcfef0c
Author: TmTFx <f.t.public@gmail.com>
Date: Fri Dec 28 23:23:52 2012 -0200
Updated Friulian translation
M po/fur.po
commit 74a1d9f786fa44d28560914301d76c39e6eefe55
Author: Dr.T.Vasudevan <drtvasudevan@gmail.com>
Date: Sun Dec 9 13:59:54 2012 +0530
Updated Tamil translation
M po/ta.po
commit 80052303c189d4bddc2f8f93294ca7ea8d89a509
Author: ManojKumar Giri <mgiri@redhat.com>
Date: Tue Nov 20 13:30:19 2012 +0530
Updated Odia Translation with FUEL implementation.
M po/or.po
commit ebfa75164e0fd57ed5b58fe086f628582d47094d
Author: Shankar Prasad <svenkate@redhat.com>
Date: Tue Nov 20 11:55:42 2012 +0530
Updated Kannada Translations
M po/kn.po
commit b570990ad8f8b242023b6840f311c08d9e23f4f3
Author: Matthias Clasen <mclasen@redhat.com>
Date: Mon Nov 12 19:56:09 2012 -0500
3.6.2
M NEWS
M configure.ac
commit 09f2c5e91d1768deaf75eb171cd449876263edf5
Author: Richard Hughes <richard@hughsie.com>
Date: Fri Nov 9 17:38:26 2012 +0000
gnome-rr: Fall back to XFree86_DDC_EDID1_RAWDATA if the other EDID keys are not set
This is what the KDE module does too...
M libgnome-desktop/gnome-rr.c
commit b968a9da45c28b09c5f6456f87d9b0f10d3f6804
Author: Yoji TOYODA <bsyamato@sea.plala.or.jp>
Date: Sat Oct 27 01:20:08 2012 +0900
[l10n] Update Japanese Translation.
M po/ja.po
commit d58b49ed73070a571dad232dea028e6599f03b44
Author: Yoji TOYODA <bsyamato@sea.plala.or.jp>
Date: Thu Oct 11 21:01:28 2012 +0900
[l10n] Update Japanese translation
M po/ja.po
commit ccd9313f4cdd17b0e55f699fb3d35094e618396d
Author: Colin Walters <walters@verbum.org>
Date: Wed Oct 17 11:38:48 2012 -0400
Release 3.6.1
M NEWS
M configure.ac
commit 9951beb5f5ad0be457c42ec9d67bc4c6bd6f0922
Author: Daniel Martinez Cucalon <dmartinez@src.gnome.org>
Date: Sat Sep 29 00:58:39 2012 +0200
Updated Aragonese translation
M po/an.po
commit 226385d96ad4a2f86ec7bd04b64b30ac9350b34b
Author: Bastien Nocera <hadess@hadess.net>
Date: Thu Sep 27 21:47:00 2012 +0200
wall-clock: Add debug when timezone or schema changes
M libgnome-desktop/gnome-wall-clock.c
commit ac4db1e9f86ae8626160668d18da5a91712cbb3e
Author: Bastien Nocera <hadess@hadess.net>
Date: Thu Sep 27 21:36:47 2012 +0200
wall-clock: Add test application
M libgnome-desktop/Makefile.am
A libgnome-desktop/test-wall-clock.c
commit 5edcac4e3f017c2fd6f69743aa23f8e62258f03d
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date: Tue Sep 25 16:17:08 2012 -0400
rr-labeler: scale the corner radii when drawing the fill
We need to scale down the corner radii of the fill when drawing it on
top of the frame, or its corners will not perfectly match those of the
stroke, leaving some unpleasant transparent artifacts around the
corners.
https://bugzilla.gnome.org/show_bug.cgi?id=684814
M libgnome-desktop/gnome-rr-labeler.c
commit f92b50c28219f364e8978f9f4c856545cb7b729e
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date: Tue Sep 25 16:15:39 2012 -0400
rr-labeler: use a shape region if the widget is not composited
Stolen pretty much as-is from the identical code in GtkTooltip. This
ensures the labels always stay round and with no artifacts below the
corners even in non-composited environments.
https://bugzilla.gnome.org/show_bug.cgi?id=684814
M libgnome-desktop/gnome-rr-labeler.c
commit 41a1074e4dd99e3b52e58a770cb8f7343aae8586
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date: Tue Sep 25 15:53:16 2012 -0400
rr-labeler: clear surface before drawing frame and background
To avoid gray areas extending below the edges.
https://bugzilla.gnome.org/show_bug.cgi?id=684814
M libgnome-desktop/gnome-rr-labeler.c
commit 08f2a0e7f9ff4e323cb11cea5987c51d5f0f1ee8
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date: Wed Sep 26 09:18:30 2012 +0300
Added uk translation
M po/uk.po
commit 76c0a506532738bb1bd9e924650f18a224f7d726
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date: Wed Sep 26 09:06:01 2012 +0300
Added uk translation
M po/uk.po
commit 9aa20c583686b5ee66628a78c62f21a423f70ce7
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date: Wed Sep 26 01:31:40 2012 +0200
[l10n] Updated Catalan (Valencian) translation
M po/ca@valencia.po
commit 9dec1e3391c4db1f9e0479897736f4d65540d642
Author: Gil Forcada <gforcada@gnome.org>
Date: Wed Sep 26 01:31:28 2012 +0200
[l10n] Updated Catalan translation
M po/ca.po
commit 42fca9d5cc2295c634d59d1c0535a8ac912755a0
Author: Matthias Clasen <mclasen@redhat.com>
Date: Tue Sep 25 16:00:07 2012 -0400
3.6.0.1
M NEWS
M configure.ac
commit 8dba9824364a2144ac6ea1169a0e16d56925e13c
Author: Rui Matos <tiagomatos@gmail.com>
Date: Tue Sep 25 19:46:40 2012 +0200
gnome-xkb-info: Fix introspection element-type annotations
https://bugzilla.gnome.org/show_bug.cgi?id=684802
M libgnome-desktop/gnome-xkb-info.c
commit 41b7753d4358b55c9eccaf3bab4f4634384bb144
Author: Noriko Mizumoto <noriko@fedoraproject.org>
Date: Tue Sep 25 05:38:30 2012 +0900
[l10n] Update Japanese translation
M po/ja.po
commit d45e3076511be635e761e006a98bf0d14cf6c5ac
Author: Timur Zhamakeev <ztimur@gmail.com>
Date: Mon Sep 24 18:50:24 2012 +0600
Updated Kyrgyz translation
M po/ky.po
commit bc89d80b06cb63d26b6c5370adf8981c6f884c14
Author: Matthias Clasen <mclasen@redhat.com>
Date: Mon Sep 24 06:26:49 2012 -0400
3.6.0
M NEWS
M configure.ac
commit 729e74232644082ead078cf37179fc81a4ba13bf
Author: Matthias Clasen <mclasen@redhat.com>
Date: Mon Sep 24 06:26:23 2012 -0400
fix docs build
M docs/reference/gnome-desktop3/gnome-desktop3-docs.sgml
commit 5e2b6b3c2008b97239727e87c2b3fa8bc544bb98
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date: Mon Sep 24 10:56:32 2012 +0300
[l10n] Updated Estonian translation
M po/et.po
commit 0adac42a7937ae6d5fe2c10690fb6491cba45c1a
Author: Rūdolfs Mazurs <rudolfsm@src.gnome.org>
Date: Sun Sep 23 20:49:19 2012 +0300
Updated Latvian translation
M po/lv.po
commit 5fd9b649f68d46420f4c1fd13425be707defdc3d
Author: YunQiang Su <yqsu@src.gnome.org>
Date: Sun Sep 23 04:18:54 2012 +0800
update Simplified Chinese (zh_CN) translation
M po/zh_CN.po
commit 83ad433ab64c5a3ca73ae0b8cc6cfaa9a21c113e
Author: Shankar Prasad <svenkate@redhat.com>
Date: Sat Sep 22 15:37:28 2012 +0530
Updated kn translation
M po/kn.po
commit 5929bfd59fc66d3db70343046a4fc4c52030a9c6
Author: Runa Bhattacharjee <runab@redhat.com>
Date: Fri Sep 21 19:36:18 2012 +0530
Updated Bengali India Translation
M po/bn_IN.po
commit 96ea50fb9be90343bb260ffaeadeeac7af290b99
Author: Rajesh Ranjan <rranjan@redhat.com>
Date: Fri Sep 21 14:08:39 2012 +0530
hindi update
M po/hi.po
commit f87d26d809f6082030e9677142f01b087b302448
Author: Praveen Illa <mail2ipn@gmail.com>
Date: Thu Sep 20 23:45:53 2012 +0530
Updated Telugu Translation
M po/te.po
commit 950519720d4c13418f45b624378f5de1fed954cd
Author: Hedda Peters <hpeters@redhat.com>
Date: Thu Sep 20 13:09:34 2012 +0200
[l10n] Updated German translation
M po/de.po
commit 6727d5f26a1c7e11970812d959d3d5218f3c5a02
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date: Thu Sep 20 10:21:55 2012 +0200
Update French translation
M desktop-docs/gpl/fr/fr.po
commit 5051aba8a99257581b5437967bf46b888cf7bd33
Author: Matej Urbančič <mateju@svn.gnome.org>
Date: Thu Sep 20 10:19:12 2012 +0200
Updated Slovenian translation
M desktop-docs/fdl/sl/sl.po
commit 031d7b29d24ba1cd40a3ae35974a398eab5380d4
Author: Matej Urbančič <mateju@svn.gnome.org>
Date: Thu Sep 20 10:18:35 2012 +0200
Updated Slovenian translation
M desktop-docs/gpl/sl/sl.po
commit ebe581a185e3f67d9efe32201d80dfc877fe5cac
Author: Martin Srebotnjak <miles@filmsi.net>
Date: Thu Sep 20 10:17:49 2012 +0200
Updated Slovenian translation
M desktop-docs/lgpl/sl/sl.po
commit bbffcb416e9607f4f07a8d7cc71c213e658517d1
Author: Alexander Shopov <ash@kambanaria.org>
Date: Thu Sep 20 06:32:35 2012 +0300
Updated Bulgarian translation
M po/bg.po
commit a2e5489dca808439d57d83acc0de86112d40eece
Author: Sweta Kothari <swkothar@redhat.com>
Date: Tue Sep 18 12:05:39 2012 +0530
Updated gujarati file
M po/gu.po
commit d04c3855d6b7473e85b93d90bcb59488ae598b86
Author: Ani Peter <apeter@redhat.com>
Date: Tue Sep 18 10:58:58 2012 +0530
Updated Malayalam file
M po/ml.po
commit 77bd6a5eaf0a5bad87f4e151c51799bbf076a035
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date: Mon Sep 17 14:15:56 2012 +0200
Updated Spanish translation
M desktop-docs/fdl/es/es.po
M desktop-docs/lgpl/es/es.po
commit c5ec270b42221c8ec6e6e62a1e3348220b266068
Author: Rui Matos <tiagomatos@gmail.com>
Date: Mon Sep 17 00:00:02 2012 +0200
gnome-xkb-info: Fix memory leak
We need to free the current iso639Id string when it doesn't replace a
previous one in the hash table.
https://bugzilla.gnome.org/show_bug.cgi?id=684140
M libgnome-desktop/gnome-xkb-info.c
commit 1749fb5ca803ba3e498a6e76b4b6e375a3642d22
Author: Marek Černocký <marek@manet.cz>
Date: Sun Sep 16 20:39:50 2012 +0200
Updated Czech translation
M po/cs.po
commit d1e2faaf998446372338b478f4029139b1f647d2
Author: Ask H. Larsen <asklarsen@gmail.com>
Date: Sun Sep 16 13:24:49 2012 +0200
Updated Danish translation
M po/da.po
commit b010cb90f5e92aaf08c9c947751be7ccc2399043
Author: Timo Jyrinki <timo@debian.org>
Date: Sat Sep 15 22:51:45 2012 +0300
Finnish translation update by Jiri Grönroos
M po/fi.po
commit d7a1f73b6c51edc1d59cdbfbf06dbfb5d6fc26ba
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date: Sat Sep 15 13:36:57 2012 +0200
Update French translation
M desktop-docs/fdl/fr/fr.po
M desktop-docs/lgpl/fr/fr.po
commit fe75f3c5436be2b537e3cb424ee54139001e2d16
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date: Fri Sep 14 20:14:37 2012 +0400
Updated Russian translation
M po/ru.po
commit cd1a06259d1195a5021a73063f134fca201eb9f0
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date: Thu Sep 13 14:59:44 2012 +0200
Update Hungarian license translations
M desktop-docs/fdl/hu/hu.po
M desktop-docs/gpl/hu/hu.po
M desktop-docs/lgpl/hu/hu.po
commit 2979098e547f27da9b65547a3daccdd44cb8d802
Author: Sandeep Sheshrao Shedmake <sshedmak@redhat.com>
Date: Wed Sep 12 17:20:06 2012 +0530
Updated Marathi Translations
M po/mr.po
commit 2560ff1effe8daec76e27190fbbb5debb98290ba
Author: A S Alam <aalam@users.sf.net>
Date: Wed Sep 12 07:22:22 2012 +0530
update Punjabi Translation
M po/pa.po
commit c4241b98f40eb90a1388b6a290c3059763e93d6d
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date: Tue Sep 11 21:13:58 2012 +0200
Updated Serbian translation
M desktop-docs/gpl/sr/sr.po
M desktop-docs/gpl/sr/sr@latin.po
commit df5d2091dbe0db36cc25ffb08c47eedf482d7ded
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date: Tue Sep 11 20:49:18 2012 +0530
Assamese translation updated
M po/as.po
commit 035ec4d6f911ff80199061edc8b04229dedcb6a5
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date: Mon Sep 10 00:23:03 2012 +0100
Updated Portuguese translation
M po/pt.po
commit 251b6bae413b3c6681837c60c3ad7b8cf41d30f0
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date: Sun Sep 9 11:36:39 2012 -0400
Updated Brazilian Portuguese translation.
M po/pt_BR.po
commit bbdd79c28017c0006002c39fb0793711c149cac5
Author: Changwoo Ryu <cwryu@debian.org>
Date: Sun Sep 9 05:49:35 2012 +0900
Updated Korean translation
M po/ko.po
commit 7baa1184d66c78c0eebf8a72acdff35bb4fbdfc0
Author: Aurimas Černius <aurisc4@gmail.com>
Date: Fri Sep 7 20:35:13 2012 +0300
Updated Lithuanian translation
M po/lt.po
commit fbaddeffebc97ca82f721506208aba6c838839fe
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date: Fri Sep 7 18:54:29 2012 +0300
Updated Belarusian translation.
M po/be.po
commit 83b83fffef4e0ec66fc26d8c3cd389b9131acea6
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date: Fri Sep 7 16:20:55 2012 +0300
Updated Hebrew translation.
M po/he.po
commit 84ad8444bcc036aa96e5aaf4b5d8a261b35e8991
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date: Fri Sep 7 15:23:46 2012 +0700
Updated Thai translation.
M po/th.po
commit e6448b7e7f08cdaf8c8cca274ac899f1b3e1afec
Author: Robert Ancell <robert.ancell@canonical.com>
Date: Thu Sep 6 13:38:46 2012 +1200
Require gsettings-desktop-schemas 3.5.91 which added the show-all-sources key
M configure.ac
commit 2571586ac7e11a553716e56a7a3229ef49132751
Author: Milo Casagrande <milo@ubuntu.com>
Date: Thu Sep 6 22:11:50 2012 +0200
[l10n] Updated Italian translation.
M po/it.po
commit 70e165a522819a7c42b4b4217023fd8ea95f68ea
Author: Matej Urbančič <mateju@svn.gnome.org>
Date: Thu Sep 6 19:43:17 2012 +0200
Updated Slovenian translation
M po/sl.po
commit 876dd971689b95bd8bf03fc3863b04f726525ab6
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date: Thu Sep 6 18:26:28 2012 +0200
Updated Spanish translation
M po/es.po
commit 67a5731edd230010dd6c9d8730e5eb38eb7d0646
Author: Arash Mousavi <mousavi.arash@gmail.com>
Date: Thu Sep 6 20:49:26 2012 +0430
l10n: Updated Persian translation
M po/fa.po
commit d1f1015a14461f3461c5900f9715bd7b32c51998
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date: Thu Sep 6 02:38:49 2012 +0300
Updated Greek translation
M po/el.po
commit 6f295ac2b2afe5b5186c0a5d1b5d4805cdb0af56
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date: Wed Sep 5 19:30:34 2012 +0100
Updated British English translation
M po/en_GB.po
commit 748180d43e580f0b60a95911111252cf03600358
Author: Dirgita <dirgitadevina@yahoo.co.id>
Date: Thu Sep 6 00:53:15 2012 +0700
Updated Indonesian translation
M po/id.po
commit 35d302494df9bab36cb6cffe30a0a14dda501d75
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date: Wed Sep 5 20:01:25 2012 +0800
Updated Traditional Chinese translation(Hong Kong and Taiwan)
M po/zh_HK.po
M po/zh_TW.po
commit 4ee8ae992e5a747426482611f293c4e848e30c82
Author: Kjartan Maraas <kmaraas@gnome.org>
Date: Wed Sep 5 13:02:41 2012 +0200
Updated Norwegian bokmål translation
M po/nb.po
commit 7cd19008ecca0ad69763e714eec7eb3b41a40201
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date: Wed Sep 5 11:44:16 2012 +0200
Updated Serbian translation
M po/sr.po
M po/sr@latin.po
commit edcf5e8473ee60871cdad3971d4de0f867d84986
Author: Khaled Hosny <khaledhosny@eglug.org>
Date: Wed Sep 5 07:18:00 2012 +0200
Updated Arabic translation
M po/ar.po
commit 4400fbc42db416d5022be45568e52d7e1e2aaaaf
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date: Tue Sep 4 23:24:28 2012 +0200
Update French translation
M po/fr.po
commit 33192ba730a43929910fb91734fb2e4bf2f77447
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date: Tue Sep 4 22:39:35 2012 +0200
Updated Galician translations
M po/gl.po
commit 7389d32f2e98db4ca6c17225463c24379cf8422c
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date: Tue Sep 4 15:48:26 2012 +0200
Updated Hungarian translation
M po/hu.po
commit ca86bf5c92098c3daa53dd5970a3e9150c3c9678
Author: Rui Matos <tiagomatos@gmail.com>
Date: Mon Sep 3 01:44:07 2012 +0200
gnome-xkb-info: Honor the 'show-all-sources' gsettings key
When this key is set to true we also load XKB layouts and options from
xkeyboard-config's .extras.xml file.
https://bugzilla.gnome.org/show_bug.cgi?id=682240
M libgnome-desktop/gnome-xkb-info.c
commit c4bca747733db814768afdadbf1d4f8a912af11e
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date: Tue Sep 4 13:07:55 2012 +0200
Updated Hungarian translation
M po/hu.po
commit da63213a404ae1066b6b31952c050c9bd2ff13d0
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Mon Sep 3 21:39:59 2012 +0200
Updated Polish translation
M po/pl.po
commit 4778ef016d8203b3aa2b28bedcc50b0a9e15bfcc
Author: Federico Mena Quintero <federico@gnome.org>
Date: Mon Sep 3 14:04:03 2012 -0500
[GnomeRRLabeler] bgo#592412 - Make 'Mirrored Displays' string consistent with the control-center
We had 'Mirror displays' as a command in the control center, but 'Mirror screens' as a description in
GnomeRRLabeler. Now we keep the former in the control center, and use 'Mirrored Displays' in the
labeler, as a description of the monitor's state.
Signed-off-by: Federico Mena Quintero <federico@gnome.org>
M libgnome-desktop/gnome-rr-labeler.c
commit 85e4a2be66e28efd7abd82ba39191bc0c71c1b1a
Author: Luca Ferretti <lferrett@gnome.org>
Date: Sun Sep 2 22:48:06 2012 +0200
Updated Italian translation
M po/it.po
commit 032f7a5e6d0e4cedf2febe1db6adf3b0382aa395
Author: Daniel Nylander <po@danielnylander.se>
Date: Sun Sep 2 11:36:26 2012 +0200
Updated Swedish translation
M po/sv.po
commit eb98f0ad46286d6fed89106a98fc588c36488d05
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date: Sat Sep 1 22:00:33 2012 +0700
Updated Vietnamese translation
M po/vi.po
commit 72c5f801e1cf4325fc19c621284693ee50a3a93c
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date: Sat Sep 1 21:59:58 2012 +0700
po/vi: import from Damned Lies
M po/vi.po
commit 75cc6388b0bc2ad6b592a7053edca07ea0bfebbf
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date: Sat Sep 1 00:52:28 2012 +0100
Updated Portuguese translation
M po/pt.po
commit efd4f72c081c0aed58602ad06923063f7ad3c646
Author: Colin Walters <walters@verbum.org>
Date: Mon Aug 27 17:30:56 2012 -0400
Update libgsystem
M libgnome-desktop/libgsystem
commit a241a2eebc91dd0fc980cc6388587cfd42cfd59f
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date: Mon Aug 27 23:49:54 2012 +0530
Implemented FUEL entries to Assamese translation
M po/as.po
commit 0a03c8ca30f6e192d2c325686916ac283aca7c14
Author: Khaled Hosny <khaledhosny@eglug.org>
Date: Sun Aug 26 06:09:09 2012 +0200
Updated Arabic translation
M po/ar.po
commit 4fb6bbb12431bc1b6c5d62be573f19f41de296a4
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date: Sat Aug 25 20:23:01 2012 +0400
Updated Russian translation
M po/ru.po
commit 6c4d2acee563d3f3590edbccca26ec01f2fc2fd9
Author: William Jon McCann <jmccann@redhat.com>
Date: Wed Aug 15 15:48:34 2012 -0400
Determine the correct mime type when we still know the filename
This fixes the case where we want to load .svgz files. If we
just sniff the data we'll determine that they are application/gzip.
https://bugzilla.gnome.org/show_bug.cgi?id=655406
M libgnome-desktop/gnome-desktop-thumbnail.c
commit 715b3ae32aa4dc8deaaa48138d4411a8393d25e1
Author: William Jon McCann <jmccann@redhat.com>
Date: Wed Aug 15 11:51:33 2012 -0400
Remove the temporary file when saving a thumbnail fails
https://bugzilla.gnome.org/show_bug.cgi?id=681942
M libgnome-desktop/gnome-desktop-thumbnail.c
commit 778b6844a893dea41801c5d8476bc8c83611c6c4
Author: William Jon McCann <jmccann@redhat.com>
Date: Wed Aug 15 11:51:14 2012 -0400
Show an error when saving a thumbnail fails
https://bugzilla.gnome.org/show_bug.cgi?id=681942
M libgnome-desktop/gnome-bg.c
M libgnome-desktop/gnome-desktop-thumbnail.c
commit d7d290a4ac35cd6e1c0cff26a017745cca678e22
Author: Piotr Drąg <piotrdrag@gmail.com>
Date: Wed Aug 22 20:16:27 2012 +0200
Updated Polish translation
M po/pl.po
commit 7e310e462b4dc2164f934be8c50172ffead929ce
Author: Frédéric Péters <fpeters@0d.be>
Date: Wed Aug 22 10:29:01 2012 +0200
release: post release version bump
M configure.ac
commit 9e5a780b4ad154138156a83653b8712a89456b9e
Author: Frédéric Péters <fpeters@0d.be>
Date: Wed Aug 22 10:28:36 2012 +0200
release: 3.5.90
M NEWS
M configure.ac
commit 8566774a292025dbbc235d15fe6713ecb5a96997
Author: Dirgita <dirgitadevina@yahoo.co.id>
Date: Tue Aug 21 21:39:48 2012 +0700
Updated Indonesian translation
M po/id.po
commit 443f4a5e32cde614d106f4ec635efd1549b0a378
Author: Alexander Larsson <alexl@redhat.com>
Date: Mon Aug 20 14:04:47 2012 +0200
Fix crash if default background not found
Its a hard error (i.e. crash) if you return FALSE from
the final fallback in a g_settings_get_mapped map function.
Fix that by returning TRUE with a NULL result.
https://bugzilla.gnome.org/show_bug.cgi?id=682252
M libgnome-desktop/gnome-bg.c
commit e08db42379420b690d13fc0bb5a0de305776e532
Author: A S Alam <aalam@users.sf.net>
Date: Sun Aug 19 15:09:17 2012 +0530
update Punjabi Translation
M po/pa.po
commit 8d6d33851557eee47369aab5a252e05a5f8c10e1
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date: Sun Aug 19 00:13:35 2012 +0300
Updated Belarusian translation.
M po/be.po
commit 21b7df015993f4e7ba0f5f2ccd66146b4b7d4eb5
Author: Rui Matos <tiagomatos@gmail.com>
Date: Fri Aug 17 02:17:29 2012 +0200
gnome-xkb-info: Use glib's slice allocator for small structures
https://bugzilla.gnome.org/show_bug.cgi?id=682004
M libgnome-desktop/gnome-xkb-info.c
commit 871601119af2646350732f32b531aa08ea0c6da9
Author: Rui Matos <tiagomatos@gmail.com>
Date: Fri Jul 6 18:38:41 2012 +0200
gnome-xkb-info: Parse XKB options
And offer public API to get at them.
https://bugzilla.gnome.org/show_bug.cgi?id=682004
M configure.ac
M libgnome-desktop/gnome-xkb-info.c
M libgnome-desktop/gnome-xkb-info.h
M libgnome-desktop/test-xkb-info.c
commit d8048b728ee9110f0d313bc5ec65c4458bad515c
Author: Bastien Nocera <hadess@hadess.net>
Date: Sat Aug 18 15:26:32 2012 +0100
Fix Ukrainian translations
The latest updates broke the build.
M desktop-docs/fdl/uk/uk.po
M desktop-docs/lgpl/uk/uk.po
commit 3068c656de06a6af2587326f87b5d152193727b8
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date: Fri Aug 17 01:35:19 2012 +0200
Updated Galician translations
M po/gl.po
commit 245cb1559cf3cf0ab21cc0ce87fb0767e435b5fe
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date: Thu Aug 16 17:08:12 2012 +0300
Updated Greek translations
M desktop-docs/fdl/el/el.po
M desktop-docs/gpl/el/el.po
M desktop-docs/lgpl/el/el.po
commit c5872652bda37f94e288bf409b2fc4f75a30876e
Author: William Jon McCann <jmccann@redhat.com>
Date: Fri Aug 10 14:49:09 2012 -0400
Increase the size of thumbnails to 256
https://bugzilla.gnome.org/show_bug.cgi?id=681929
M libgnome-desktop/gnome-bg.c
commit 3e49221d452067da4dbdfc90ba84c8ed7a72869b
Author: Colin Walters <walters@verbum.org>
Date: Wed Aug 15 13:40:47 2012 -0400
Update libgsystem
M libgnome-desktop/libgsystem
commit 9913061a27bfe49f08a24930e5bdbb11c6728b84
Author: Colin Walters <walters@verbum.org>
Date: Wed Aug 15 13:30:57 2012 -0400
Fix up submodule setup
M autogen.sh
A libgnome-desktop/libgsystem
commit bd6fb734806f40f6b8777792eebdc06635d001ea
Author: William Jon McCann <jmccann@redhat.com>
Date: Sat Jul 21 02:13:05 2012 -0400
Don't crash if unable to set background
https://bugzilla.gnome.org/show_bug.cgi?id=680354
M libgnome-desktop/gnome-bg.c
commit d0407417383533fbed84d7e0acebc7b1fef73fb3
Author: Colin Walters <walters@verbum.org>
Date: Wed Aug 15 11:47:34 2012 -0400
.gitmodules: Was missing from previous commit
A .gitmodules
commit 177090152ee90742b924ca00a18ded1bf1c3681f
Author: Colin Walters <walters@verbum.org>
Date: Fri Aug 10 17:26:33 2012 -0400
Pull in libgsystem, use it to read thumbnails with O_NOATIME
We can use libgsystem since we don't need to care about MSVC here.
https://bugzilla.gnome.org/show_bug.cgi?id=680326
M autogen.sh
M libgnome-desktop/Makefile.am