File: ChangeLog

package info (click to toggle)
gconf-editor 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,192 kB
  • sloc: sh: 11,060; xml: 7,126; ansic: 5,305; makefile: 204
file content (1100 lines) | stat: -rw-r--r-- 23,790 bytes parent folder | download | duplicates (4)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
commit c346bfd4a1606a82f6d6987d64af8f5bcb0f81d8
Author: Christian Persch <chpe@gnome.org>
Date:   2011-11-21

    Version 3.0.1

    Re-release. Turns out there was a 3.0.0 release already, just without
    any commits nor was it tagged.

M	NEWS
M	configure.in

commit 3065832684dfb20caba26a02f03f12399605c215
Author: Christian Persch <chpe@gnome.org>
Date:	2011-11-14

    Version 3.0.0

M	NEWS
M	configure.in

commit 4c11c1095b43c7ec44d19d78e9ef8f0248cfa8ef
Author: Christian Persch <chpe@gnome.org>
Date:	2011-11-08

    Rename "type" property of GConfEditorWindow

    GtkWindow already has a "type" property, which this one conflicts
    with;
    and gail was trying to get this property on focus changes:

    GLib-GObject-WARNING **: g_object_get_valist: property `type' of
    object class `GConfEditorWindow' is not readable
    g_logv() [gmessages.c:779]
    g_log() [gmessages.c:826]
    g_object_get_valist() [gobject.c:1789]
    g_object_get() [gobject.c:1886]
    gail_focus_watcher() [gail.c:159]
    signal_emit_unlocked_R() [gsignal.c:3239]

    Also make the property readable, since the get_property implementation
    already
    supports that.

M	src/gconf-editor-application.c
M	src/gconf-editor-window.c

commit 24d5a13364d701f9fcc3c0f5e68344b5800e45f0
Author: Christian Persch <chpe@gnome.org>
Date:	2011-11-08

    Don't use GNOME_MAINTAINER_MODE_DEFINES

    With recent glib and gtk, the deprecations are done with attributes,
    making
    these defines unnecessary. Also, gconf-editor uses much deprecated
    gtk API,
    so this breaks the build when building with maintainer mode.

M	configure.in
M	src/Makefile.am

commit ca3e0a8210398d7a9c30ffb9a3db38f053956233
Author: Christian Persch <chpe@gnome.org>
Date:	2011-11-08

    Don't use G_CONST_RETURN

    Just replace it with "const" so this builds with recent glib.

M	src/gconf-key-editor.c
M	src/gconf-key-editor.h

commit 0ffb7c7a55ca7955e566fc96557a216408c49311
Author: Nilamdyuti Goswami <ngoswami@redhat.com>
Date:	2011-09-24

    Updated Assamese Translations:bugzilla#659595

M	po/as.po

commit 77bba21a78e4588463205a32feb1df0f50ee560f
Author: Nilamdyuti Goswami <ngoswami@redhat.com>
Date:	2011-09-22

    Updated Assamese translation

M	po/as.po

commit 9af976236a277a10394b09b11cc044d65f21b95d
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:	2011-09-17

    Updated Japanese translation

M	po/ja.po

commit 0bdfba2baad51216e052ba3d569d251f2280a1d6
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:	2011-07-28

    Added Basque language

M	docs/Makefile.am
A	docs/eu/eu.po
A	docs/eu/figures/gconf_editor_anno_window.png

commit f61cec23abfb67798a1b8932da2691df24fe33e1
Author: Pin-Hsien Li <pspeter9931@gmail.com>
Date:	2011-05-11

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

A	docs/zh_TW/figures/gconf_editor_anno_window.png

commit dab398c18b1f296627cb3772a3e5cce350dbbf46
Author: Pin-Hsien Li <pspeter9931@gmail.com>
Date:	2011-05-02

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

M	docs/Makefile.am
A	docs/zh_HK/zh_HK.po
A	docs/zh_TW/zh_TW.po

commit c1497e7195b66610a7f22c7b26b9d7992095e6d8
Author: Jiro Matsuzawa <matsuzawa.jr@gmail.com>
Date:	2011-04-04

    Updated Japanese translation

M	po/ja.po

commit a4c7c0e6b63aca0aa4b800f8d810d2b7a029098e
Author: Abduxukur Abdurixit <abdurixit@gmail.com>
Date:	2011-03-27

    Added UG translation

M	po/ug.po

commit 6c319981930d66e8dcc3e28aa7516cfeea3aa5df
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    Release 2.91.91.1

M	NEWS
M	configure.in

commit b1820f2e73a599185b29ea5b541dc17d746ed327
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    build: fix a typo

    https://bugzilla.gnome.org/show_bug.cgi?id=644160

M	configure.in

commit 009316c3feb8bef8b43b6e8dd442fe170263c817
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    Release 2.91.91

M	NEWS

commit d054da5b117ac2b93f898646a1dcd9fafd018a36
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    icons: use a new icon for gconf-editor

    Courtesy of Jakub Steiner, thanks!

M	data/icons/Makefile.am
A	data/icons/hicolor_apps_16x16_gconf-editor.png
A	data/icons/hicolor_apps_22x22_gconf-editor.png
A	data/icons/hicolor_apps_24x24_gconf-editor.png
A	data/icons/hicolor_apps_256x256_gconf-editor.png
A	data/icons/hicolor_apps_32x32_gconf-editor.png
M	data/icons/hicolor_apps_48x48_gconf-editor.png

commit a2df7b48df17874d9dc018887954cf33fe81be7b
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    build: enable AM_SILENT_RULES

    Patch by Thomas Andersen

    https://bugzilla.gnome.org/show_bug.cgi?id=607171

M	configure.in

commit d91a2f465eaa22a0f47c0770d6295f5162d59f45
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    policykit: port to GDBus

M	configure.in
M	src/gconf-policykit.c

commit 9ad4b715e7d61724ca1680d47daf8d6bb7bafefb
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    build: bump to 2.91.91

M	configure.in

commit 976eca6fdc52da2991f0e5dae3ea22831331134f
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    all: port to GTK+ 3

    Make gconf-editor a GTK+ 3 application.

M	configure.in
M	src/gconf-bookmarks-dialog.c
M	src/gconf-cell-renderer.c
M	src/gconf-editor-application.c
M	src/gconf-editor-window.c
M	src/gconf-key-editor.c
M	src/gconf-search-dialog.c
M	src/gedit-output-window.c

commit 42994c6fabebe9e36c77622fa52018081b0c405b
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2011-03-07

    icons: update icons to Tango guidelines

    Icon set by Martin Lettner, thanks!

    https://bugzilla.gnome.org/show_bug.cgi?id=561040

M	data/icons/hicolor_status_16x16_type-boolean.png
M	data/icons/hicolor_status_16x16_type-float.png
M	data/icons/hicolor_status_16x16_type-integer.png
M	data/icons/hicolor_status_16x16_type-list.png
M	data/icons/hicolor_status_16x16_type-pair.png
M	data/icons/hicolor_status_16x16_type-schema.png
M	data/icons/hicolor_status_16x16_type-string.png
M	data/icons/hicolor_status_16x16_type-undefined.png

commit 5447336bbd1c6a13667aa29f8714b411a0e99365
Author: Daniel Nylander <po@danielnylander.se>
Date:	2011-02-27

    Updated Swedish translation

M	po/sv.po

commit 949441960f883e4ccbe11f69749198ecacdcd371
Author: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Date:	2011-01-28

    Add Esperanto translation

A	po/eo.po

commit 7e259072e023cde6814837e436dc62d9f6b0ee64
Author: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Date:	2011-01-28

    Add Esperanto translation

M	po/LINGUAS

commit 937d61115542c31463fb412f2897ec28910dcf05
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:	2011-01-27

    QA of Galician translations

M	po/gl.po

commit 621145a21a8c8ea525c26a033d9b3b41c01a4104
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	2011-01-02

    Updated Norwegian bokmål translation from Torstein Adolf Winterseth

M	po/nb.po

commit 831cd5ed0dd24544087e03a422dccc45cd676ab3
Author: Gheyret T.Kenji <gheyret@gmail.com>
Date:	2010-12-23

    Added UG translation

M	po/ug.po

commit 65234e0803544827480246cfdf51967d7c42d00a
Author: Wei-Lun Chao <chaoweilun@gmail.com>
Date:	2010-12-12

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

M	po/zh_HK.po
M	po/zh_TW.po

commit a8a3870cc2835c425dac4f5b30f46b24e9466ee7
Author: Gheyret T.Kenji <gheyret@gmail.com>
Date:	2010-11-20

    Added UG translation

M	po/ug.po

commit 57e3816d1afa5fa34f94c0d77f0ab45ad066705b
Author: Gheyret T.Kenji <gheyret@gmail.com>
Date:	2010-11-13

    Added UG translation

M	po/ug.po

commit d6661f74945bf30c4e7e22526f14765e74e48589
Author: Mahyar Moghimi <mahyar.moqimi@gmail.com>
Date:	2010-10-30

    Update persian translation-minor change

M	po/fa.po

commit c849775f808de9c8491dfa03e8a016fcc2f5a1fd
Author: Mahyar Moghimi <mahyar.moqimi@gmail.com>
Date:	2010-10-30

    Update Persian translation

M	po/fa.po

commit b32d152469f84be96cdf2fe3b17bfad7c0013df8
Author: Erdal Ronahi <erdal.ronahi@gmail.com>
Date:	2010-10-26

    Updated Kurdish with translations by Omer Ensari

M	po/ku.po

commit 3c69ed1b09b5c3d713eae9758bd40ac678527ac0
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:	2010-10-26

    Updated Catalan (Valencian) translation

M	po/ca@valencia.po

commit 33a69680cfe1760dfd3dece5f537daa2913592aa
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:	2010-10-25

    Updated Hebrew translation.

M	po/he.po

commit f5b5b4840628a6ae7061c65e29bfa19712a86698
Author: Sahran <sahran@live.com>
Date:	2010-10-16

    Added UG translation

M	po/ug.po

commit 22b873fe12cbc1ccdcac54c6a09e47bb96989521
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2010-10-14

    Added Slovenian translation

A	docs/sl/sl.po

commit 6864019d9ba2e526826189cbd067b31ba031ee6a
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2010-10-14

    Added sl for Slovenian translation

M	docs/Makefile.am

commit 13288184a2c3baa273e72b61506756efb63f4728
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2010-10-14

    Added Slovenian translation

A	docs/po/sl.po

commit 1bb442200ae21069a8c1e776f6ccbfe47364ffde
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2010-09-27

    Release 2.32.0

M	NEWS
M	configure.in

commit 0268aeb0aa5c115fa0763573dba83f774cb0bc8e
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:	2010-09-15

    Initial translation to Kazakh

M	po/LINGUAS
A	po/kk.po

commit d8daf80d752a9c8a5f3d0c277c42032b7fc0be03
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	2010-09-02

    Fix typo in Polish translation

M	po/pl.po

commit ea801000cb9314aa7e12c54fdaab034107a3d0eb
Author: Dirgita <dirgitadevina@yahoo.co.id>
Date:	2010-09-01

    Updated Indonesian translation

M	po/id.po

commit 091f9b663900218ca6f0c32749ff7439a97e8706
Author: Vincent Untz <vuntz@gnome.org>
Date:	2010-08-05

    [release] post-release bump to 2.31.90

M	configure.in

commit 1934323cd5269c708ef11648dfa40ba25b6c4a5a
Author: Vincent Untz <vuntz@gnome.org>
Date:	2010-08-05

    [release] 2.31.6

M	NEWS
M	configure.in

commit 6dca56e8a6abfb320e048b86cbacf89ec368545e
Author: Frédéric Péters <fpeters@0d.be>
Date:	2010-07-28

    New configure flag to switch GTK+ version

M	configure.in

commit 371550a23c5a75286e413b37e105dbb3aafd8f0d
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:	2010-07-18

    Fixed headers in galician translation file

M	po/gl.po

commit baebbce7c600031e07ae321655cce9dd7b746ab0
Author: Frédéric Péters <fpeters@0d.be>
Date:	2010-07-13

    [release] 2.31.5

M	NEWS
M	configure.in

commit d573f1b5eb69df9a78527308bf1386390fe9606c
Author: Frédéric Péters <fpeters@0d.be>
Date:	2010-07-13

    Switch to GTK+ 3

M	configure.in

commit ecdd3ff7f8274e01d6fa1911ec6482518b8cbdfe
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2010-06-10

    Updated Slovenian translation

M	po/sl.po

commit 37bcfa1743bd43d2122e88eb6eb066afbe376b26
Author: Thomas Thurman <tthurman@gnome.org>
Date:	2010-05-19

    Updated Shavian translation

M	po/en@shaw.po

commit 8f5a8fe4546139425a506ff8c8bef0617f148d74
Author: Thomas Thurman <tthurman@gnome.org>
Date:	2010-05-12

    Updated Shavian transliteration

M	po/en@shaw.po

commit 64e22dde8a89bcdf94d163dd3a8564b442ba7bec
Author: Shankar Prasad <svenkate@svenkate.pnq.redhat.com>
Date:	2010-04-21

    Updated Kannada translations

M	po/kn.po

commit e764cd2ab32c007915c992f94daf304c050614da
Author: Olav Vitters <olav@vitters.nl>
Date:	2010-04-18

    Fix doap file

M	gconf-editor.doap

commit c855bea2c5de4d1f9560aedfe3393daeb9be40b1
Author: Andika Triwidada <andika@gmail.com>
Date:	2010-04-17

    Updated Indonesian translation

M	po/id.po

commit 7eaa8a689af9a5f308760f149057a0a3ba00ec0c
Author: Runa Bhattacharjee <runab@redhat.com>
Date:	2010-04-14

    Typo correction

M	po/bn_IN.po

commit 47855f68ae43d5089ffff8b477f290ade7785f5e
Author: Javier Jardón <jjardon@gnome.org>
Date:	2010-04-06

    Use accessor functions instead direct access

    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=612471

M	configure.in
M	src/gconf-bookmarks-dialog.c
M	src/gconf-bookmarks.c
M	src/gconf-cell-renderer.c
M	src/gconf-editor-window.c
M	src/gconf-key-editor.c
M	src/gconf-search-dialog.c

commit aeec316ff7256e10209c5acb96c595cc4159b652
Author: Jordi Serratosa <jordis.lists@gmail.com>
Date:	2010-04-02

    Fixes to Catalan translation

M	po/ca.po

commit 0409e1cf6f5651716f945705d7323ebfed377971
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2010-03-30

    Prepare for 2.30.0 release.

M	NEWS
M	configure.in

commit 9a0d0fea9fcc872e1dc85a00d97af0b02e4a8c8d
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:	2010-03-28

    Updated Bengali translation

M	po/bn.po

commit 8b2c7f27686c2cc93641eaa4f4cb2a3377ac25d0
Author: Sweta Kothari <swkothar@redhat.com>
Date:	2010-03-26

    Updated Gujarati Translations

M	po/gu.po

commit 783e053f9917059d36fca39a7e8b2cf34ca16f5f
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:	2010-03-23

    Updated Basque language

M	po/eu.po

commit 9ef30b12b129efc1c2a9b17910b32bae2cdebaf4
Author: Badral Sanligiin <badral@openmn.org>
Date:	2010-03-23

    Updated Mongolian translation

M	po/mn.po

commit 38d0c507f51dba7fcf06825d3d1a8111a8dfb362
Author: Changwoo Ryu <cwryu@debian.org>
Date:	2010-03-13

    Updated Korean translation

M	po/ko.po

commit eb054341a1443f334c8f0435d5167a8ff705a9db
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2010-03-11

    Prepare for release.

M	NEWS
M	configure.in

commit 2bf7b045a5085844cce40c5f7481f2509147f18f
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2010-03-11

    Check if the dialog has not been destroyed.

    Before calling GTK+ functions on it. Fixes a crash when the user
    dismisses the dialog while the search is in place.

M	src/gconf-search-dialog.c

commit 7435119e107f164fa83751c9f593da593e74c331
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2010-03-10

    Don't use deprecated GConf synbols.

M	src/gconf-list-model.c
M	src/gconf-search.c

commit 574aa245d210a4bb75aca172712998b50f0f6572
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2010-03-10

    Don't use deprecated GTK+ symbols.

M	src/gconf-editor-window.c

commit d81a517c49f3ccd5a29ee5bb7f6c13fe6afe41e9
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2010-03-10

    Use the standard GNOME macro to define deprecations.

M	configure.in
M	src/Makefile.am

commit 6641fd88baf0eb313998e7be4523952b0c9d0395
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	2010-02-26

    Updated Polish translation

M	po/pl.po

commit 37f5d8f04bb39f3a3e4646cc708fc2cbcf6b1fdd
Author: Marcel Telka <marcel@telka.sk>
Date:	2010-02-26

    Updated Slovak translation

M	po/sk.po

commit 9d319fd1721dc38331bcb584380d05a83501c477
Author: Fran Diéguez <frandieguez@ubuntu.com>
Date:	2010-02-15

    Updated Galician Translation

M	po/gl.po

commit dbcdf8551dc3d155cdab32c47d111c453f9b8fa0
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:	2010-01-22

    Updated Bengali translation

M	po/bn.po

commit 0d0eb9fc194a586c3f4fcc16638cfcab49868a41
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2009-11-25

    Fixed bug #602880 in German translation

M	po/de.po

commit 745b6cf4644a0d51b451143ee73aa411394b2661
Author: Thomas Thurman <tthurman@Dorothy.plexq.com>
Date:	2009-11-12

    Shavian translation

M	po/LINGUAS
A	po/en@shaw.po

commit b0205cf47f88ae9dbb019ddb2a397fd9fcccd2b0
Author: Lucian Grijincu <lucian.grijincu@gmail.com>
Date:	2009-11-08

    Updated Romanian translation

M	po/ro.po

commit cabf8653999dbcc0c367f6777ed80e303e95e75a
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-09-21

    Start development of 2.29 series

M	configure.in

commit 56e12619f963157bcb1b1bb39f44f1a6dbe8aaee
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-09-21

    Prepare for 2.28.0 release.

M	NEWS
M	configure.in

commit d740e7e891197dde52faa71771567b589038490f
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:	2009-09-18

    maithili update

M	po/LINGUAS
A	po/mai.po

commit b2413e554595184c2b6566835ae53f311045c24c
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:	2009-09-16

    hindi update by Rajesh Ranjan

M	po/hi.po

commit 5e14b64cb007fbf2c4bb2349e4def031219eb825
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:	2009-09-08

    Updated Arabic translation

M	po/ar.po

commit acdf9eb99491b0665f3f53e3784ffb1f7d847f01
Author: André Gondim <andregondim@ubuntu.com>
Date:	2009-09-07

    Corrected some access keys and a grammatical error in Brazilian
    Portuguese translation file.

M	po/pt_BR.po

commit 6d377148c41547f89225f663f5cbe94d2277c76f
Author: Denis Arnaud <darnaud@src.gnome.org>
Date:	2009-09-02

    Updated breton translation

M	po/br.po

commit 2725f66b51ce9ebf83ceeacd1d65e1864404dd8d
Author: Rodrigo L. M. Flores <rlmflores@src.gnome.org>
Date:	2009-08-30

    Updated Brazilian Portuguese mailing list address.

M	po/pt_BR.po

commit d2f10e079a90301c01e2a1adef887c29691d6176
Author: Miloš Popović <mpopovic@src.gnome.org>
Date:	2009-08-28

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit e76974fa25a41838dbdf5ed8fb4e7b7517c87026
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-08-24

    Post-release version bump

M	configure.in

commit f5ea6ecb9083de386927cd210a351661edd9f4b1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-08-24

    Pre-release version bump

M	configure.in

commit ae355547de2ed6fdf5ee1dc6caa8ce2b3db17867
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-08-24

    Remove ChangeLog on distclean

M	Makefile.am

commit b3db7dffdfce1c441077964371d6f6dc8abcd267
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-08-24

    Update news.

M	NEWS

commit fe983da8ca6491dd0e138b61f99f466e830572bb
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-08-24

    Add myself to the maintainers of this module

M	MAINTAINERS
M	gconf-editor.doap

commit 8fbaf480bc2a47dfb1d2698d82cb2c6547b3e811
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-08-24

    Don't overwrite window->list_model in popup-menu callback

    This causes a crash, as the list view has another sort model on
    it, and
    later we will use it instead of the real model.
    Patch by Sergey Nizovtsev, fix bug #531718.

M	src/gconf-editor-window.c

commit 6d5c0ac4041eaac3bb76391523f167870e03164e
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-08-24

    port to PolicyKit 1.0

    This also removes the need of depending on polkit-dbus, and needs
    a new
    GConf to work properly.
    Based on the patch by Matthias Clasen, fix bug #585596.

M	configure.in
M	src/Makefile.am
M	src/gconf-editor-window.c
M	src/gconf-policykit.c
M	src/gconf-policykit.h

commit bef8d9cd077bed712c840eb6bd2aed122d49c3e8
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:	2009-08-21

    Updated Arabic translation

M	po/ar.po

commit 1066d732638be4715799d4a2f4933800c0eac581
Author: Iestyn Pryce <dylunio@gmail.com>
Date:	2009-08-06

    Updated Welsh translation

M	po/cy.po

commit 9e5d96d5116f3a74dc08a7ca2eab4b790719e4bf
Author: Alexander Nyakhaychyk <nyakhaychyk@gmail.com>
Date:	2009-07-30

    Updated Belarusian translation

M	po/be.po

commit 6de60d4fbc5a4af396481579c2a884de4a6aaa83
Author: Petr Kovar <pknbe@volny.cz>
Date:	2009-07-12

    Added Czech help translation by Marek Cernocky

M	docs/Makefile.am
A	docs/cs/cs.po
A	docs/cs/figures/gconf_editor_anno_window.png

commit bccf95bfcfa16a4845520266e4a75b8f23aa3470
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:	2009-07-09

    Updated Ukrainian translation

M	po/uk.po

commit 3ffd1ef86e178524d32d90df1943b257fe643872
Author: Miquel Esplà <miquelespla@gmail.com>
Date:	2009-05-25

    Added Valencian-Catalan translation

M	po/LINGUAS
A	po/ca@valencia.po

commit 28f8829e4c830c40ecba1e0568a7e1dfda5897f8
Author: Awgnl <y.z.h@gmx.com>
Date:	2009-05-15

    Added Simplified Chinese document translation.

M	docs/Makefile.am
A	docs/zh_CN/zh_CN.po

commit 0d4ecb4e3d191ccd9fef1417524c7fcff7535fe4
Author: Perier Romain <mrpouet@tuxfamily.org>
Date:	2009-05-06

    Make PolicyKit support optional

    Make PolictKiy an optional dependency, turned on by default (#579096).

    Signed-off-by: Cosimo Cecchi <cosimoc@gnome.org>

M	configure.in
M	src/Makefile.am
M	src/gconf-editor-window.c

commit dd126519f52155008b1483aa98217f8f1b77732c
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-04-30

    Generate ChangeLog file from git log

    Autogenerate the ChangeLog file from git log output.

R100	ChangeLog	ChangeLog.pre-git
M	Makefile.am

commit 73aa4444a8894738c7c1a6ffc38d6ad3377a4940
Author: Olav Vitters <olav@bkor.dhs.org>
Date:	2009-04-23

    Add DOAP file

M	gconf-editor.doap

commit 8eb8f4e387167d981644057842538afa32ebb2e4
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-04-21

    2009-04-21	Cosimo Cecchi  <cosimoc@gnome.org>

	* gconf-editor.doap: add the DOAP file for this project.

M	ChangeLog
A	gconf-editor.doap

commit a699cc47e1936008f9df1837849c3cfcba089e1e
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-04-21

    2009-04-21	Cosimo Cecchi  <cosimoc@gnome.org>

	* src/gconf-editor-window.c (gconf_editor_window_finalize):
	We can always unref the GConfClient object now that bug #579751
	has
	been fixed.

M	ChangeLog
M	src/gconf-editor-window.c

commit 4d95403a96a98eb4d8b3b85359febc8e7ef9f78e
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-04-21

    2009-04-21	Cosimo Cecchi  <cosimoc@gnome.org>

	* uk/gconf-editor.xml: remove this, as it's autogenerated.

M	docs/ChangeLog
D	docs/uk/gconf-editor.xml

commit 42dccca2de10735a2a68532fdf91ee2c5707acb6
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:	2009-04-21

    2009-04-21	Cosimo Cecchi  <cosimoc@gnome.org>

	* src/gconf-list-model.c (gconf_list_model_finalize),
	(gconf_list_model_set_client):
	* src/gconf-tree-model.c (gconf_tree_model_set_client):
	Ref the GConfClient object when setting it to a model (#579751).

M	ChangeLog
M	src/gconf-list-model.c
M	src/gconf-tree-model.c

commit 6fa99f2ffa75ebdf822801e7c547873513744a6e
Author: Funda Wang <fwang@n1.mandriva.com>
Date:	2009-04-17

    Updated zh_CN translation.

M	po/ChangeLog
M	po/zh_CN.po

commit 25955cbc5d24b5e8f7c42bc9dc41ee4b87ba32cb
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:	2009-04-12

    Updated Spanish translation

    svn path=/trunk/; revision=1518

M	po/ChangeLog
M	po/es.po

commit c8887a921cd279429da3b38f95052484750f6fb6
Author: Simos Xenitellis <simos@src.gnome.org>
Date:	2009-04-04

    Added screenshot (Fotis Tsamis)

    svn path=/trunk/; revision=1517

M	docs/ChangeLog
A	docs/el/figures/gconf_editor_anno_window.png

commit 8dde902350bde2a14e1d2f706f421248d45969bb
Author: Shankar Prasad <sprasad@src.gnome.org>
Date:	2009-03-25

    updated kn.po

    svn path=/trunk/; revision=1516

M	po/kn.po

commit 327f168d038435cd07560080fe3c809a65f137f6
Author: Shankar Prasad <sprasad@src.gnome.org>
Date:	2009-03-25

    updated kn.po

    svn path=/trunk/; revision=1515

M	po/ChangeLog

commit 186870f9066314949da79804a04ebe97a35a398e
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:	2009-03-20

    Updating Punjabi Translation (pa)

    svn path=/trunk/; revision=1514

M	po/pa.po

commit 77cf6fd6b92c63a7a899851bb2f49d6309db04e4
Author: Shankar Prasad <sprasad@src.gnome.org>
Date:	2009-03-19

    updated kn.po

    svn path=/trunk/; revision=1513

M	po/ChangeLog
M	po/kn.po

commit a5717e769141a359504b62f666d96c215f4e98ec
Author: Djihed Afifi <djihed@src.gnome.org>
Date:	2009-03-18

    Updated Arabic translation

    svn path=/trunk/; revision=1512

M	po/ChangeLog
M	po/ar.po

commit 8ad73c4db14b7b027f66069d08e19cfb9d53e93d
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-03-17

    post-release bump to 2.26.1

    2009-03-17	Vincent Untz  <vuntz@gnome.org>

	* configure.in: post-release bump to 2.26.1

    svn path=/trunk/; revision=1511

M	ChangeLog
M	configure.in
M	docs/ChangeLog
M	po/ChangeLog