-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
13588 lines (9267 loc) · 338 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
commit b1089124ca3d8c4a98e770e276ffad1b4c9f4e75
Author: Vincent Untz <[email protected]>
Date: 2011-10-11
panel: Fix loading launchers defined with relative paths
M gnome-panel/launcher.c
commit 40da4f7de1dbc5e2db4658873d2f2116f336c4f2
Author: Vincent Untz <[email protected]>
Date: 2011-10-11
panel: Do not assert on error when using default layout
Asserting is wrong: the default layout could be badly formatted,
and in
that case we should not abort but fail with a nice error. It turns out
we already had the code for that, except that we never reached
it since
we asserted before :-)
M gnome-panel/panel-layout.c
M gnome-panel/panel-layout.h
commit 4238b776ab74e38d36fc21810ce94dd1df2d5428
Author: Rudolfs Mazurs <[email protected]>
Date: 2011-10-08
Updated Latvian translation.
M po/lv.po
commit 563159e5e505ff7175004cb132ec2f069bfce550
Author: ipraveen <[email protected]>
Date: 2011-10-08
Revert "Updated Telugu Translations done by Hari Krishna"
This reverts commit 865de5a491550b67a84dd712e0232195d681eb45.
Accidental and unrevised commit
M po/te.po
commit 048d2230c6be6aafa4e38dd6a4f01c6b778fb1a6
Author: Jorge González <[email protected]>
Date: 2011-10-08
Updated Spanish translation
M po/es.po
commit 865de5a491550b67a84dd712e0232195d681eb45
Author: krishnababu k <[email protected]>
Date: 2011-10-07
Updated Telugu Translations done by Hari Krishna
M po/te.po
commit 33233c9f5735dbe046b02876f79c01bc9e80c5bc
Author: Мирослав Николић <[email protected]>
Date: 2011-09-27
Updated Serbian translation
M po/sr.po
M po/[email protected]
commit c7d5cb14f06c652249e162d77bbb68f9efa58c30
Author: ipraveen <[email protected]>
Date: 2011-09-26
Updated Telugu Translation
M po/te.po
commit 8766b22bf4647e5bd9c87bf97bbd53876aac4951
Author: Carles Ferrando <[email protected]>
Date: 2011-09-26
[l10n]Updated Catalan (Valencian) translation
M po/[email protected]
commit 6c86d7f137f6f6ded54c73a6fc18af30d1de0db1
Author: Vincent Untz <[email protected]>
Date: 2011-09-26
release: post-release bump to 3.2.1
M configure.ac
commit a124e56a8d03e3ad21421df97a0fb4523dbc0490
Author: Vincent Untz <[email protected]>
Date: 2011-09-26
release: 3.2.0
M NEWS
commit 7dd9bdeed642ad872f8d60d773b599980218538a
Author: Tommi Vainikainen <[email protected]>
Date: 2011-09-26
Updated Finnish translation
M po/fi.po
commit eb4c2b2e1b82801282f49bef70533bc100fde36d
Author: Jiro Matsuzawa <[email protected]>
Date: 2011-09-25
Updated Japanese translation
M po/ja.po
commit 484d54ab27810e3e1223cc04e0594ca0018aea34
Author: Aurimas Černius <[email protected]>
Date: 2011-09-24
Updated Lithuanian translation
M po/lt.po
commit 0a532c46bab84606dcea7855c69cc2d3ba7758d6
Author: Inaki Larranaga Murgoitio <[email protected]>
Date: 2011-09-24
Updated Basque language
M po/eu.po
commit fae7f3a9bbd47605f7f6433d6c5c7d4c7c8da7af
Author: Changwoo Ryu <[email protected]>
Date: 2011-09-23
Updated Korean translation
M po/ko.po
commit 9290ec331de87bec32b6f950e8156596eaf614b5
Author: Flemming Christensen <[email protected]>
Date: 2011-09-22
Updated Danish translation
M po/da.po
commit ad93af3725c9c0590a2f3c1c28fef26db1eecd26
Author: Gabor Kelemen <[email protected]>
Date: 2011-09-21
Updated Hungarian translation
M po/hu.po
commit 5f224ab8b6f66ef856551ea085f84e31d02b1fa3
Author: Sweta Kothari <[email protected]>
Date: 2011-09-20
Updated Gujarati Translations
M po/gu.po
commit 0855b2d7e0a2baff364d1fa5c86b440e1eac02a8
Author: Vincent Untz <[email protected]>
Date: 2011-09-19
release: post-release bump to 3.2.0
M configure.ac
commit 5a8132fb358a34091d52539dc7519616619466dc
Author: Vincent Untz <[email protected]>
Date: 2011-09-19
release: 3.1.92
M NEWS
commit 70ad1a2152b56e663ff6a254876a05ba2acea3bc
Author: Vincent Untz <[email protected]>
Date: 2011-09-19
clock: Look for calendar/tasks app in GSettings
M applets/clock/calendar-window.c
commit bc32070f267d280739ab1ceb5d9116046c0abd9b
Author: Vincent Untz <[email protected]>
Date: 2011-09-19
panel: Change "My Account" to "Online Accounts" in user menu
Obviously, we open the online accounts panel in the control center
now.
M gnome-panel/panel-menu-items.c
commit 066c35f46008582027f2deedc660b348496c2be5
Author: Vincent Untz <[email protected]>
Date: 2011-09-19
panel: Fix loading of main menu
https://bugzilla.gnome.org/show_bug.cgi?id=658863
M gnome-panel/panel-menu-button.c
commit 6d69511e08aeef57390cbf1eeb7284435f795b76
Author: Joan Duran <[email protected]>
Date: 2011-09-19
[l10n]Updated Catalan translation
M po/ca.po
commit 78abe9817a0ff96723293d17f27600c077ea30c7
Author: Ihar Hrachyshka <[email protected]>
Date: 2011-09-18
Updated Belarusian translation (some fixes after manual testing).
M po/be.po
commit 95d6840da2bcff812baa49039cbaf8d0f84ac612
Author: Jiro Matsuzawa <[email protected]>
Date: 2011-09-17
Updated Japanese translation
M po/ja.po
commit 5681cf2c34abac494e95d1efef010146ef38d3c6
Author: Antonio Fernandes C. Neto <[email protected]>
Date: 2011-09-16
Updated Brazilian Portuguese translation.
M po/pt_BR.po
commit 0991b0cb17c1db3432e2e6db5d20d32bd8fec72a
Author: Daniel Korostil <[email protected]>
Date: 2011-09-16
Uploaded Ukranian
M po/uk.po
commit e736085a36d741933d8093dbd737fedc69a1e655
Author: dmustieles <[email protected]>
Date: 2011-09-14
Updated Spanish translation
M po/es.po
commit 59edbcd08b64f52ecbd53b8b50e9878ad7eee572
Author: Anass Ahmed <[email protected]>
Date: 2011-09-13
Updated Arabic translation
M po/ar.po
commit c6ceffa72fceec36b31e6c8e895ac994bc13cee9
Author: Yinghua Wang <[email protected]>
Date: 2011-09-13
update Simplified Chinese (zh_CN) translation
M po/zh_CN.po
commit a2387a21601753903f5318cb4535044d96bf025f
Author: Dr.T.Vasudevan <[email protected]>
Date: 2011-09-12
updated Tamil translation
M po/ta.po
commit 5c6e8f64a0e3b9bcf93d81426fc2d8ebf6ff3c7c
Author: Rudolfs Mazurs <[email protected]>
Date: 2011-09-11
Updated Latvian translation.
M po/lv.po
commit d1e6c844a0290bfa3fceb14b3d8f2e5ce1ec5c13
Author: Duarte Loreto <[email protected]>
Date: 2011-09-10
Updated Portuguese translation
M po/pt.po
commit 39684d077174ed078f0f6379d7d06db37362e16b
Author: Bruce Cowan <[email protected]>
Date: 2011-09-09
Updated British English translation
M po/en_GB.po
commit b4844b5262a21ce1312c77296384ed5dafa03c45
Author: Matej Urbančič <[email protected]>
Date: 2011-09-07
Updated Slovenian translation
M po/sl.po
commit 11c5efe87e92fd3b5044b86822b2e332bcd64df9
Author: Luca Ferretti <[email protected]>
Date: 2011-09-07
Updated Italian translation
M po/it.po
commit fa7786b78ede2cdf10482226b4cf76e92f8540bd
Author: Arash Mousavi <[email protected]>
Date: 2011-09-06
Updated Persian translation
M po/fa.po
commit 324e12be095d112bd5e82a2169f2ac22275a27e6
Author: Chao-Hsiung Liao <[email protected]>
Date: 2011-09-06
Updated Traditional Chinese translation(Hong Kong and Taiwan)
M po/zh_HK.po
M po/zh_TW.po
commit 4686f67f3902cef67aa0a7c3c022069edeea2888
Author: Wouter Bolsterlee <[email protected]>
Date: 2011-09-06
Updated Dutch translation by Wouter Bolsterlee
M po/nl.po
commit dd453d2f1b53f2e78cdf093a13bf62eb1a450247
Author: Vincent Untz <[email protected]>
Date: 2011-09-05
release: post-release bump to 3.1.92
M configure.ac
commit 757ce61ab0716ac8e2f395daabba13018e3ec32e
Author: Vincent Untz <[email protected]>
Date: 2011-09-05
release: 3.1.91
M NEWS
M configure.ac
commit 16f2ed81471dcc674296fe893a92111d010c9ab1
Author: Ihar Hrachyshka <[email protected]>
Date: 2011-09-04
Updated Belarusian translation.
M po/be.po
commit d62d466603feac52162c12290320847c0a1fb07f
Author: Marek Černocký <[email protected]>
Date: 2011-09-02
Updated Czech translation
M po/cs.po
commit f29c952a513f078c03b8d3f8e037dde1af1dd354
Author: Ihar Hrachyshka <[email protected]>
Date: 2011-09-02
Updated Belarusian translation.
M po/be.po
commit c13716f076ecf5357b7fc22cf7e68f1bbf2da6d9
Author: Colin Walters <[email protected]>
Date: 2011-09-01
build: Fix srcdir != builddir
We need to explicitly look in the srcdir for enums.
M gnome-panel/libpanel-util/Makefile.am
commit 71aeff0f78f4d12e54bdf3fe0533bf89beddab9f
Author: Matt McCutchen <[email protected]>
Date: 2011-08-31
panel: Do not forcecully center non-expanded panels on login
When unexpanding panels, we only want to center them if this action is
done when changing the expand property, not when initially loading it.
M gnome-panel/panel-toplevel.c
commit 128e721ae4cbab236ddddb5d54c8fd8ca9f2acc1
Author: Stas Solovey <[email protected]>
Date: 2011-08-30
Updated Russian translation
M po/ru.po
commit 2cee2096c3fddc77aaaff8c9d9564519d8f73477
Author: Alexandre Franke <[email protected]>
Date: 2011-08-29
Update French translation
M po/fr.po
commit 1638b6408ccd5e667f26c29e590226616172f51e
Author: Ihar Hrachyshka <[email protected]>
Date: 2011-08-28
Updated Belarusian translation.
M po/be.po
commit 86efdcbb16dc8ffb99420b34a369ce6a47482773
Author: Abduxukur Abdurixit <[email protected]>
Date: 2011-08-28
Added UG translation
M po/ug.po
commit 4f45e2a6c5ec9523af6a28057049d28db84184bc
Author: Mario Blättermann <[email protected]>
Date: 2011-08-28
[l10n] Updated German translation
M po/de.po
commit 6f78b8c86a6bceda07e6954b9dd8e47f73a5ab79
Author: A S Alam <[email protected]>
Date: 2011-08-21
update Punjabi Translation
M po/pa.po
commit 1d2d797666b11d03a9de0a84996eeb58684098f8
Author: Andika Triwidada <[email protected]>
Date: 2011-08-19
Updated Indonesian translation
M po/id.po
commit 5691d985c867a04e3caa11eb0c8630fa2bbb3498
Author: Fran Dieguez <[email protected]>
Date: 2011-08-16
Updated Galician translations
M po/gl.po
commit 41864d9d6a993b23dbc69752ec1ecb6b98a4d216
Author: Theppitak Karoonboonyanan <[email protected]>
Date: 2011-08-14
Updated Thai translation.
M po/th.po
commit b5068f85a40385cd77f5c539e146da5bd4ccc2b6
Author: Vincent Untz <[email protected]>
Date: 2011-08-12
release: post-release bump to 3.1.90
M configure.ac
commit f331081e3ff808428d07bd5df3184f09d9a4a04c
Author: Vincent Untz <[email protected]>
Date: 2011-08-12
release: 3.1.5
M NEWS
M configure.ac
commit 20732053fbbb5b7a4b59c8f74a3a79dfca5a45cc
Author: Aryeh Gregor <[email protected]>
Date: 2011-08-12
clock: Do not miss seconds when displaying seconds
The timeout we were using is expecting a 1ms resolution; usually,
timers
have a 10ms, though, so we could sometimes simply skip a second, which
is bad. Add 15ms to the timeout to avoid that.
https://bugzilla.gnome.org/show_bug.cgi?id=585668
M applets/clock/clock.c
commit 354d239f970f0bd6dfdf98c1ef8f2f53b8e5b32f
Author: Piotr Drąg <[email protected]>
Date: 2011-08-11
Updated Polish translation
M po/pl.po
commit 8fc0e3e3d95528fd96128f9ddd2e1e22fa77400b
Author: Alexander Shopov <[email protected]>
Date: 2011-08-10
Updated Bulgarian translation
M po/bg.po
commit bbb76dcad1e717a2b9dd706c2849fe7ea055d520
Author: Kjartan Maraas <[email protected]>
Date: 2011-08-10
Updated Norwegian bokmål translation
M po/nb.po
commit 03dd6fd2ca1a677f3416809ae2885f2dbcccc338
Author: Yaron Shahrabani <[email protected]>
Date: 2011-08-06
Updated Hebrew translation.
M po/he.po
commit a0a91850a5f646d8795e8c177bc63adbea533423
Author: Daniel Mustieles <[email protected]>
Date: 2011-08-03
Updated Spanish translation
M po/es.po
commit d9d4f5eb3aedd7500f33c293411088df647c0d13
Author: Daniel Nylander <[email protected]>
Date: 2011-08-02
Updated Swedish translation
M po/sv.po
commit 247628370cadb3a4998a697b87780f8a990cd3c7
Author: Vincent Untz <[email protected]>
Date: 2011-07-22
panel: Correctly reload menu on changes
With the new API, we have to explicitly reload the menu.
M gnome-panel/menu.c
commit f83c844e307ecae1d0ee83ff147e84a37c38316a
Author: Vincent Untz <[email protected]>
Date: 2011-07-22
panel: Always keep the same window icon for run dialog
We used to change the icon, depending on the app that was selected,
but
this actually doesn't make sense; it's just confusing when people look
at the window list.
M gnome-panel/panel-run-dialog.c
commit 10ce6bac116a089cc8982c084f094a3634f076cf
Author: Vincent Untz <[email protected]>
Date: 2011-07-22
panel: Finish port to new gnome-menus API
This completes Colin's previous commit, fixing various issues and
cleaning some changes.
We move quite some code to GIcon, which is easier in many cases.
M configure.ac
M gnome-panel/menu.c
M gnome-panel/panel-addto.c
M gnome-panel/panel-menu-button.c
M gnome-panel/panel-run-dialog.c
M gnome-panel/panel-util.c
M gnome-panel/panel-util.h
commit 7fb52d0c7dd322c40e840a6808727031638ae69b
Author: Colin Walters <[email protected]>
Date: 2011-05-03
panel: Port to new gnome-menus API
This port is a bit suboptimal in that we call gmenu_tree_new()
in multiple places. But other than that, tested and appears to
work in a jhbuild on Fedora 14.
https://bugzilla.gnome.org/show_bug.cgi?id=649327
M configure.ac
M gnome-panel/menu.c
M gnome-panel/panel-addto.c
M gnome-panel/panel-run-dialog.c
commit e16135199fda66ecfe06c70fe7ff42a5ae8cb9dc
Author: Tommi Vainikainen <[email protected]>
Date: 2011-07-22
Updated Finnish translation
M po/fi.po
commit 54697b3e2255d46e89ef0f93fb2149155723070b
Author: Brian Cameron <[email protected]>
Date: 2011-07-18
libpanel-applet: Do not return a value in function with no return
value
https://bugzilla.gnome.org/show_bug.cgi?id=654716
M libpanel-applet/panel-applet.c
commit 201da2505e5ae37cd1a11e77fdf9153f25702ebd
Author: Ihar Hrachyshka <[email protected]>
Date: 2011-07-13
Updated Belarusian translation.
M po/be.po
commit 0f086faf79e52e0daeea0310968514ad1bf11475
Author: Rudolfs Mazurs <[email protected]>
Date: 2011-07-12
Updated Latvian translation.
M po/lv.po
commit 8f58ed39ac07fadc5a6154b82f726e6c9425e5e5
Author: Vincent Untz <[email protected]>
Date: 2011-06-27
panel: Fix -Wunused-but-set-variable warnings
M gnome-panel/applet.c
M gnome-panel/button-widget.c
M gnome-panel/libpanel-util/panel-launch.c
M gnome-panel/panel-applet-frame.c
M gnome-panel/panel-frame.c
M gnome-panel/panel-layout.c
M gnome-panel/panel-menu-button.c
M gnome-panel/panel-separator.c
M gnome-panel/panel-toplevel.c
M gnome-panel/panel.c
commit 844c6bf5cf444abfda93fd0fcdbfb48b9fe3c4cb
Author: Vincent Untz <[email protected]>
Date: 2011-06-27
panel: Stop using G_CONST_RETURN
M gnome-panel/applet.c
M gnome-panel/panel-action-button.c
M gnome-panel/panel-action-button.h
M gnome-panel/panel-ditem-editor.c
M gnome-panel/panel-ditem-editor.h
M gnome-panel/panel-menu-button.c
M gnome-panel/panel-toplevel.c
M gnome-panel/panel-toplevel.h
commit 7ed11caf03c5d049f434ab23f8dde4448fac96c3
Author: Ihar Hrachyshka <[email protected]>
Date: 2011-06-26
Updated Belarusian translation.
M po/be.po
commit 79c4027f1f1a462437069c326a14e07933bc4d0d
Author: Мирослав Николић <[email protected]>
Date: 2011-06-25
Updated Serbian translation
M po/sr.po
M po/[email protected]
commit 04e752f52ce124fa1009cd01a76049aca66613fb
Author: Vincent Untz <[email protected]>
Date: 2011-06-14
build: Modernize build system a bit
Stop using GNOME_COMMON_INIT as it is deprecated.
Do not use AM_MAINTAINER_MODE as it is not recommended by automake
developers.
Use LT_PREREQ & LT_INIT for libtool checks.
Require intltool 0.40.6 to avoid various bugs.
Do not use AC_ISC_POSIX, AC_HEADER_STDC, AM_PROG_CC_C_O as they
shouldn't be needed on modern systems.
Remove checks for perl and awk, and the useless --disable-rebuilds
configure flag.
M applets/clock/Makefile.am
M configure.ac
M gnome-panel/Makefile.am
M gnome-panel/libpanel-util/Makefile.am
M libpanel-applet/Makefile.am
commit f625da4e5f345ea9a7921c5edd60e48127a14596
Author: Carles Ferrando <[email protected]>
Date: 2011-05-29
[l10n]Updated Catalan (Valencian) translation
M po/[email protected]
commit c65f1ae3472cfd4cd96fd376b7bbd95fba5eef0a
Author: Vincent Untz <[email protected]>
Date: 2011-05-27
build: Fix build with --as-needed
M applets/notification_area/Makefile.am
commit 83c6f94ccd6bda9572f6e7a1159a0191bafaf8b9
Author: Vincent Untz <[email protected]>
Date: 2011-05-24
release: post-release bump to 3.0.3
M configure.ac
commit 3742908f0a3016873b1d1e13201430228dd0aca8
Author: Vincent Untz <[email protected]>
Date: 2011-05-24
release: 3.0.2
M NEWS
M configure.ac
commit 11346ea2992a069e523bc50285b7431358e48c6a
Author: Andrey Vihrov <[email protected]>
Date: 2011-05-24
clock: Correctly deal with leap seconds for updates
We need to use localtime() to take into account leap seconds that
might
exist, when defining the new timeout to update the clock. Else, the
clock will not update when a minute change, but a bit later.
https://bugzilla.gnome.org/show_bug.cgi?id=604317
M applets/clock/clock.c
commit b316207f2ac7531dab82aa03f485d416150c6b2f
Author: Kjartan Maraas <[email protected]>
Date: 2011-03-28
panel: Add missing #include <config.h> to make translations work
https://bugzilla.gnome.org/show_bug.cgi?id=645968
M gnome-panel/libpanel-util/panel-error.c
M gnome-panel/libpanel-util/panel-icon-chooser.c
M gnome-panel/libpanel-util/panel-launch.c
M gnome-panel/libpanel-util/panel-show.c
commit 8cb5b77912d365f30ffd7027f6ba52212aebf4d1
Author: Vincent Untz <[email protected]>
Date: 2011-05-24
panel: Fix crash when running without gnome-session
https://bugzilla.gnome.org/show_bug.cgi?id=650476
M gnome-panel/libpanel-util/panel-session-manager.c
commit 993dcc505e144cb598b527d002d6bf6ea52fe2b8
Author: Vincent Untz <[email protected]>
Date: 2011-05-23
clock: Rename a variable
M applets/clock/set-timezone.c
M applets/clock/set-timezone.h
commit 747496d102ffca4587fd7b892da3d7b7f5474220
Author: Chris Vine <[email protected]>
Date: 2011-05-23
clock: Fix usage of polkit service to set timezone
There were several issues, caused by changes in the polkit service:
- some dbus methods were renamed
- we don't need to pass a path to a timezone file to set it, just the
name of the timezone
Also we were reading a return value correctly.
https://bugzilla.gnome.org/show_bug.cgi?id=649639
M applets/clock/clock-location.c
M applets/clock/set-timezone.c
commit 3ce3e099ef72627ff6c09681749edf419c13d1d5
Author: Vincent Untz <[email protected]>
Date: 2011-04-13
panel, libpanel-applet: Correctly test for modifier keys
Using Alt to edit the panels doesn't always work; this is likely
because
we were not using gtk_accelerator_get_default_mod_mask() to test the
modifier key.
Note that we double-check that the metacity modifier is in the mask
returned by gtk_accelerator_get_default_mod_mask(), to make sure it
always work -- if it's not there, we default to MOD1.
https://bugzilla.gnome.org/show_bug.cgi?id=649971
M gnome-panel/applet.c
M gnome-panel/panel-applet-frame.c
M gnome-panel/panel-bindings.c
M gnome-panel/panel-toplevel.c
M gnome-panel/panel-util.c
M gnome-panel/panel-widget.c
M gnome-panel/panel.c
M libpanel-applet/panel-applet-bindings.c
M libpanel-applet/panel-applet.c
commit 76fa96eba5541625761bac1f8620f9b896526652
Author: Rachid <[email protected]>
Date: 2011-05-04
Updated Dutch translation by Rachid
M po/nl.po
commit 648b982b08dbb0fa960b747aded07faf1b3f25e9
Author: Daniel Korostil <[email protected]>
Date: 2011-05-03
Uploaded Ukranian
M help/clock/uk/uk.po
commit a19af49c4a8f1ed77a1c5d1ff52e27f0f8197086
Author: Rodrigo Padula de Oliveira <[email protected]>
Date: 2011-05-02
Updated Brazilian Portuguese translation
M po/pt_BR.po
commit 241e288c0a9d30f9f2e8d608b0bbd950c1ac959c
Author: Rodrigo Moya <[email protected]>
Date: 2011-05-02
clock applet: Pass the correct month to Evolution command line
gtk_calendar_get_date returns the month between 0 and 11, so we need
to add
1 to the month being passed to Evolution
M applets/clock/calendar-window.c
commit aa4e5546275b0f600bf55fc43a9e5211e80b5450
Author: Abduxukur Abdurixit <[email protected]>
Date: 2011-05-02
Added UG translation
M po/ug.po
commit ffa17160fc771b1613cc1ffaaeeb5b896f472b8a
Author: Daniel Korostil <[email protected]>
Date: 2011-05-02
Uploaded Ukranian
M po/uk.po
commit 8940fdfcf34cc91f4bf748a7e77f150e9f1307ed
Author: Michael Kotsarinis <[email protected]>
Date: 2011-04-27
l10n: Updated Greek translation for gnome-panel
M po/el.po
commit cc1e380220ba02bec71d1fa455d59570e9a74f2e
Author: Ask H. Larsen <[email protected]>
Date: 2011-04-25
Updated Danish translation
M po/da.po
commit 93db184ac8d26fab230b27fadf8f98cdbcb976c8
Author: Arash Mousavi <[email protected]>
Date: 2011-04-23
Updated Persian translation
M po/fa.po
commit 6a42aaf9257362358cee7736a646e26c8ec0a06f
Author: Claude Paroz <[email protected]>
Date: 2011-04-21
Updated French translation
M po/fr.po
commit a7972f7a87b2ad64aebb503cc4df46cbd6f14394
Author: Alexander Shopov <[email protected]>
Date: 2011-04-21
Updated Bulgarian translation
M po/bg.po
commit 44697df2f360bf010bd0666a399e661cde9762d5
Author: Bruce Cowan <[email protected]>
Date: 2011-04-20
Updated British English translation
M po/en_GB.po
commit 14506a490787a5ed258e35f7273bd91204f0a383
Author: Gil Forcada <[email protected]>
Date: 2011-04-20
[l10n]Updated Catalan translation
M po/ca.po
commit 5951f599b2a09279c402f04e23663def0028c2ba
Author: Matej Urbančič <[email protected]>
Date: 2011-04-19
Updated Slovenian translation
M po/sl.po
commit 9c582eac32d294725fa278021dd8e9d6633411d3
Author: Matej Urbančič <[email protected]>
Date: 2011-04-19
Updated Slovenian translation
M po/sl.po
commit 2a19550bf133e0d5c6a3b314f88fe804afe09a9b
Author: Vincent Untz <[email protected]>
Date: 2011-04-19
l10n: Ignore data/org.gnome.gnome-panel.applet.clock.gschema.xml.in.in
This is not needed yet.
M po/POTFILES.skip
commit 7ceba09dae2547f436320bf9c8cd091121a2cfa7
Author: Vincent Untz <[email protected]>
Date: 2011-04-19
Revert "Updated POTFILES.in"
org.gnome.gnome-panel.applet.clock.gschema.xml.in.in is not used yet.
This reverts commit da9990f7bdd307fc758e17b3e17ca844cee48a62.
M po/POTFILES.in
commit 85b29891286652059cd6258de3363ffb5bdcc2c3
Author: Vincent Untz <[email protected]>
Date: 2011-04-19