summaryrefslogtreecommitdiff
path: root/NEWS
blob: 75931a72d4948cba5bfbbe3a554832085d5e6d67 (plain)
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
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
3.2.6
=====

    * gsettings-schema-convert: Fix conversion of empty lists

    * 671490 - Fix shutdown of gconfd

    * 646663 - Removed unused gconf_get_lock_dir function

    * 674803 - Use XDG config dir for settings storage

    * 685509 - Fix early bailout on OS X

    * 667167 - Fix a user-after-free

    * 682963 - Remove obsolete debian/ dir

    * 686634 - Fix a typo

    * 653809 - Add Unity to OnlyShowIn

    * 646674 - Remove gconf-sanity-check

    * Translation updates

3.2.5
=====

Fixes:

    * fix an obvious memory error from the last release
      thanks to Ionut Biru; apologies to everyone else

3.2.4
=====

Fixes:

    * 671581 - don't migrate vendor settings to the user's dconf database

    * 652289 - store daemon data in XDG_RUNTIME_DIR

    * 670033 - don't crash during sync if gconfd shutting down

    * 664031 - D-Bus backend: Add GCONF_DEFAULT_SOURCE_PATH support

    * don't attempt to migrate settings with non-existent schemas

    * update the GIO cache after 'make uninstall' (fixes 'make distcheck')

3.2.3
=====

Fixes:

    * 662991 - fix assert caused by Ross' incompetence (thanks Vincent Untz)

3.2.2
=====

Fixes:

    * 661372 - Avoid crash when there is no reply to messages in gconf_engine_notify_remove
    * Clean-up ORBit vs DBus logic (Jasper St. Pierre)

3.2.1
=====

Fixes:

    * 659835 - Configuration server couldn't be contacted: D-BUS error: Method
      "Set" with signature "s(ii)" on interface "org.gnome.GConf.Database"
      doesn't exist (Vincent Untz)
    * Build fix for -Werror=format-securiyt (Rico Tzschichholz)

Translations:
    * fi (Tommi Vainikainen), ja (OKANO Takayoshi),
      vi (Nguyễn Thái Ngọc Duy)

3.2.0
=====

Translations:

    * da (Flemming Christensen), hu (Gabor Kelemen),
      eu (Inaki Larranaga Murgoitio), de (Mario Blättermann),
      as (Nilamdyuti Goswami)

3.1.92
======

Fixes:

    * 655954 - allow setting gconf values to the schema defaults (Joey Zheng)

Translations:

    * pt_BR (Antonio Fernandes C. Neto), pa (A S Alam), en_GB (Bruce Cowan),
      ko (Changwoo Ryu), pt (Duarte Loreto), ta (I Felix),
      ja (Jiro Matsuzawa), it (Luca Ferretti), or (Manoj Kumar Giri),
      pl (Piotr Drąg), gu (Sweta Kothari), ast (Xandru Armesto),
      zh_CN (Yinghua Wang), sr sr@latin (Мирослав Николић)

3.1.90
======

Fixes:

  * 656262 - Support for conversion files from user specified and XDG data
    directories (Ryan Lortie)


Translations:

  * ug (Abduxukur Abdurixit), ja (Takayoshi Okano),
    zh_HK zh_TW (Chao-Hsiung Liao), te (Krishnababu K)

3.1.6
=====

Fixes:

    * Fixes on the distcheck fixes
    * 655656 - Use "o" for the D-BUS object path rather than "s" (this changes
      the internal D-BUS API but for now we have a compatability bit that
      should avoid too much pain.)

Misc:

    * DOAP file!

3.1.5
=====

Fixes:

    * gsettings-convert - conver to unsigned int correctly (Kalev Lember)
    * Distcheck fixes
    * 656248 - Handle messages that don't have interface set (Joey Zheng)
    * 654801 - Export pkg-config file and C include details in GIR file 
      (Evan Nemerson)

Misc:

    * Autogenerated ChangeLog
    * Update .gitignore

Translations:

    * ru (Yuri Kozlov), fr (Claude Paroz), bg (Alexander Shopov),
      eo (Kristjan SCHMIDT), id (Andika Triwidada),
      th (Theppitak Karoonboonyanan)

3.1.4
=====

* gsettings-data-convert: Call g_type_init()
* ensure_database: don't free the reply til we've finished with its args
* build: Filter out generated corba code when building .gir

And translation updates.


3.1.3
=====
  Features
  - Add optional and disabled by default port to DBus
  Fixes
  - Use the cache when looking for keys we can't have locally
  Translation updates  

2.32.5
======

[accidently released with incorrect version, renamed to 3.1.3]

2.32.4
======
  Fix distcheck
  Remove glib and gtk+ deprecations from the example app.
  Translation updates

2.32.3
======
  Translation updates

2.32.2
======
  Fixes
    - Bug 644662 - default GConf path includes hard-coded reference to /etc/gconf
    - Bug 638679 - Please make gsettings-data-convert.desktop translatable
  Many translation updates

2.32.1
======

  Features
   - Allow building against GTK+ 3
  Fixes
   - Make gsettings-data-convert deal better with enums and flags
   - Remove an obsolete error message (#631250)
  Translation updates

2.32.0
======

  Fixes
    * Make ref() function return the passed object (#629984)
  Translation updates

2.31.91
=======
  Features
   - libgconf-2 was ported to the DBus bindings in gio, and no longer
     links to libdbus.
  Translation updates

2.31.7
======

  Fixes
   - gsettings-data-convert: Realloc the correct amount of memory (Matthew
     Garrett)
   - configure: disable the defaults service if PolicyKit is not available
     (Thomas Wood)
   - Update GSettings backend to follow API changes (Frédéric Péters)

   Translation updates
   (gl)

2.31.6
======

  Features
    - gsettings-schema-convert: always add gettext domain (Vincent Untz)
    - gsettings-schema-convert: convert 0/1 to false/true (Vincent)
    - gsettings-schema-convert: convert underscores to dashes (Vincent)
    - gsettings-scheme-convert: convert to xml by default (Vincent)

  Fixes
    - gsettings-schema-convert: fix crash when lxml is missing (Vincent)
    - gsettings-schema-convert: don't crash on unknown types (Vincent)
    - gsettings-schema-convert: accept GConf schemas without defaults (Vincent)
    - gsettings-schema-convert: fix --help error (Vincent)

2.31.5
======

  Features
    - Add gsettings-schema-convert (used to be part of GLib) (Ryan Lortie)

  Fixes
    - Make the :path in groups optional again (Matthias Clasen)

  Translations
    Latvian

2.31.4
======

  Features
    - Allow external orbit-idl-2 compiler for cross-compiling (Fridrich Štrba)
    - Require GLib >= 2.25.9

  Fixes
    - Implement fsync replacement on win32 (Fridrich Štrba)
    - Make gsettings_backend_write consume the variant (Matthias Clasen)
    - Fix build with GLib >= 2.25.9 (Milan Bouchet-Valat)

  Translations
    Galician

2.31.3
======

  Features
   - Install an autostart file for gsettings-data-convert (Matthias Clasen)
   - Expose the location of the default path file in the pc file (Brian Cameron)

  Fixes
   - Update GSettings backend to follow API changes (Ryan Lortie)
   - Respect $datadir (Matthias)
   - Fix annotations for gconf_client_notify_add (Owen Taylor)
   - Support silent build (Christian Persch)
   - Don't print an error on the first run of
     gsettings-data-convert (Richard Hughes)

  Translations
   Albanian
   Norwegian bokmål
   Shavian

2.31.2
======

  Fixes
   - Handle prefix when installing instrospection data (Cosimo Cecchi)
   - Use /usr/share/GConf/gsettings in gsettings-data-convert (Matthias Clasen)
   - Don't segfault if saved_state has blank lines in it (Michael Meeks)
   - Treat nonexisting keys as writable in the settings backend (Matthias)
   - Warn if key is a path in gsettings-data-convert (Matthias)

  Translation updates
    Catalan (Valencian)

2.31.1
======

  Features
   - Add a GSettings backend. This is meant as a tool to ease the
     transition from GConf to GSettings/DConf, not as a permanent solution.
     To use this backend with GSettings, set GSETTINGS_BACKEND=gconf in
     your environment. Note that you still need to convert your GConf
     schema to a GSettings schema and install it (Vincent Untz)
   - Add a utility to migrate existing user settings from GConf to
     GSettings. For details, see gsettings-data-convert(1) (Matthias Clasen)
   - Add boxed types for GConfEntry and GConfValue (Florian Müllner)
   - Add introspection support (Florian Müllner)

  Fixes
   - Plug a memory leak when ignoring default values (Alberto Garcia)

2.28.1
======

  Fixes
   - Make the defaults mechanism find the right polkit action (Matthias Clasen)
   - Remove (worse than) useless signal handlers for SEGV, FPE, etc. in gconfd
     (Ray Strode)
   - Avoid a crash when gconftool-2 can't read the db (Matthias Clasen)
   - Make gconf compile with -DGSEAL_ENABLE (Andre Klapper)

   Translation updates
   (ast, bn,, ca, ca@valencia, cy, en@shaw, eu, gl, lt, nl, ru, vi)

2.28.0
======

   Translation updates
   (as, bn, bn_IN, cs, da, de, el, en_GB, fr, hu, kn, ko, ml,
    mr, or, pa, ro, sl, sr, sr@latin, ta, te, tr, vi, zh_CN)

2.27.0
======

  Features
   - Make gconf_value_encode/decode public api (Vincent Untz)
   - Add SetSystemValue and SetMandatoryValue functions
     to the defaults service for future use in gconf-editor (Vincent Untz)
   - Allow overriding the default config path (Dan Winship)
   - Port defaults menchanism to PolicyKit 1.0 (Matthias Clasen)

   Translation updates
   (es, nb, he, sv, th, uk, et, zh_CN, ca@valencia, pt_BR, it,
    gl, eu, ca, bg, fi, pl, jp, ar, pt, ko, zh_TW, zh_HK, gu,
    hi, or, ta)

2.26.1
======

  Fixes
   - Tracing improvements (Behdad Esfahbod)
   - Track fully-cached directories in the client (Matthias Clasen)
   - Improve performance of the markup backend (Michael Meeks)
   - Make openldap support optional (Gilles Dartiguelongue)
   - Fix errno usage (Christian Persch)

  Translation updates
     (ar, et, kn, or)

2.26.0
======

  Fixes
   - Correct url to gconf website (Kjartan Maraas)
   - Plug memory leak in error path (Matthias Clasen, Tommi Rantal)
   - Remove deprecated GTK+ api (Matthias Clasen)

  Translation updates
     (as, bg, bn_IN, ca, cs, da, de, el, en_GB, es, eu, fi, fr, gl, gu, he, hi, hu, it, ja, kn, ko, lt, lv, ml, mr, nb, nl, or, pl, pt, pt_BR, ro, ru, sv, ta, te, th, tr, zh_HK, zh_TW)

2.25.2
======

  Fixes
   - Correct location of system settings in path configuration (Ray Strode)

2.25.1
======

  Fixes
   - Missing return in gconftool.c/do_toggle (Magnus Boman)
   - Fix xml-backend symbol exports on Cygwin (Vincent Untz)
   - Win32 build fixes (Tor Lillqvist)
   - Optimizations in the markup backend (Michael Meeks)
   - Don't hardcode paths in the defaults mechanism (Vincent Untz)
   - Fix dbus policy for the defaults mechanism (Vincent Untz)

  Translation updates
     (bg, ca, de, eu, fi, fr, gu, hu, ja, ko, nl, or, pt. th, 
      vi, zh_HK, zh_TW)

2.25.0
======

  Fixes
   - Fix various format string warnings (Christian Persch)
   - Sync saved state to disk before closing (Ray Strode)

  Features
   - Add --search-key-regex option to gconftool (Christian Persch)
   - Add --toggle option to gconftool (Matthias Clasen)

  Translation updates
    (ar, da, dz, es, fi, he, nb, pt_BR, sv, uk)

2.24.0
======

  Fixes
  - Fix pokit-policy-file-validate check (Saleem Abdulrasool)

  Translation updates
    (ar, bg, cs, da, de, en_GB, et, fr, gu, hr, hu, it, kn, 
     lt, mai, or, pt, pt_BR, ro, ru, sr, ta, te, tr, uk, vi 
2.23.2
======
  Fixes
  - cleanups (Kjartan)

  Features
  - stop using /tmp for the IOR, instead use the DBus session bus (Ray Strode)
  - optionally install a DBus service for system-wide settings (Matthias Clasen, Behdad Esfahbod)

2.23.1
======
  Fixes
  - Fix the build. (Kjartan)

2.23.0
======
  Fixes
  - stop spamming syslog (David Förster)
  - signal handling fixes (Javier Uruen Val)
  - use AC_HELP_STRINGS for nice formatting (Sven Herzberg)
  - timeout batching work (Matthias Clasen)
  - remove syslog spamming code (from Debian)
  - fix a crash when unsetting a key with no writable source (Richard Hult)
  - allow overriding $TMPDIR (Frederic Crozat)
  - integration with D-BUS (Ray Strode)
  - translation updates (ar, da, es, gl, he, nb, nl, sq, sk, th, vi)

2.22.0
======

  Misc
  - Fix deprecated openldap calls
  - Translation updates

2.21.90
=======

  Misc
  - Don't use deprecated functions (Christian)
  - Win32 fixes (Tor)

2.21.2
======

  Misc
  - Build fixes.
  - Various cleanups
  
2.21.1
======

  Misc
  - Lots of string fixes (Christian Rose, Adam Weinberger, Clytie Siddall)
  - Documentation fixes

2.20.1
======

  Misc
  - Improve docs (Stefan Kost)
  - Dist example schema (Kjartan)

  Translation updates:
  - Korean (Changwoo Ryu)
  - Norwegian nynorsk (Kjartan Maraas)
 
2.20.0
======

  Misc
  - Build fixes (Sven Herzberg)
  - Compiler warning fixes (Jaap Haitsma)

2.19.1
======

  Misc
  - Add --search-key argument to gconftool-2 (#406329; Richard Hult)
  - Fix gconftool-2 --help output translation (#432925; Christian Persch)
  - Init GThread (#432923; Christian Persch)
  - Fix strings used for errors about invalid keys (#406251; Christian Persch)
  - Fix build failure with -z defs in LDFLAGS (#409221; Loïc Minier)

  Translation updates:
  Khaled Hosny (ar), unknown (cs), Kenneth Nielsen (da), David Lodge (en_GB),
  Jorge González (es), Ignacio Casal Quinteiro (gl), Ankit Patel (gu),
  Yair Hershkovitz (he), Thierry Randrianiriana (mg), Espen Stefansen (nb),
  Yannig MARCHEGAY (oc), Subhransu Behera (or), Daniel Nylander (sv),
  Felix (ta), Theppitak Karoonboonyanan (th), Yang Zhang (zh_CN).


2.18.0.1
========

 Misc
  - Don't fail db sync operations and leave %gconf-tree.xml.new
    files laying around if there wasn't a %gconf-tree.xml to start
    with (Loïc Minier)

2.18.0
======

 Misc
  - Make sure error strings are utf-8 (Christian Persch)
  - don't include xml-entry.h twice (Kjartan Maraas)
  - fix leak in gconf meta info code (Richard Hult, Ray Strode)
  - remove more popt gunk (Chris Wilson, Ray)
  - when installing a batch of schema files, don't abort
    the entire transaction if one fails (Laszlo Peter)
  - don't close already closed file descriptors if fdwalk()
    is available (Padraig O'Briain) 
  - use g_file_test instead of gconf_file_test or
    gconf_file_exists (Paolo Borelli)
  - remove dead code found from coverity scan (Paolo Borelli)
  - retain file permissions on gconf database files when
    syncing a tree to disk (Narayana Pattipati)
  - Add g_return_val_if_fail checks on type inputs for 
    gconf_value_new_from_string (Kjartan Maraas, Ray)

 Translators
  - Gintautas Miliauskas (lt)

2.16.1
======

 Misc
  - Fix error handling in the getters (Matthias Clasen)
  - Fix a leak (Pascal Terjan)
  - Close write end of pipe in parent (Tom Tromey)

 Translators
  - Khaled Hosny (ar)
  - Josep Puigdemont i Casamajó (ca)
  - Priit Laes (et)
  - Adam Weinberger (en_CA)
  - Yair Hershkovitz (he)
  - Gabor Kelemen (hu)
  - Luca Ferretti (it)
  - Vladimer Sichinava (ka)
  - Thierry Randrianiriana (mg)
  - The GNOME PL Team (pl)
  - Leonardo Ferreira Fontenelle (pt_BR)
  - Laurent Dhima (sq)
  - Daniel Nylander (sv)
  - Maxim Dziumanenko (uk)
  - Nguyễn Thái Ngọc Duy (vi)

2.14.0
======

 Misc
  - Improved manual page (Christopher Hanna)
  - Uses the new g_slice API (Benoît Dejean)
  - Got rid of padding members in private structs (Benoît)
  - Speed up the installation of multiple schema files (Josselin Mouette,
    Mark LcLoughlin)

 Fixes
  - Only calls closelog() when it has HAVE_SYSLOG_H (Tor Lillqvist)
  - Fixed a memory leak, bugs #332528 and #334047 (Kjartan Maraas,
    Matthias Clasen)

 Translators
  - Petr Tomeš (cs)
  - Rhys Jones (cy)
  - Ole Laursen (da)
  - Hendrik Richter (de)
  - Kostas Papadimas (el)
  - Ivar Smolin (et)
  - Iñaki Larrañaga (eu)
  - Rajesh Ranjan (hi)
  - Gabor Kelemen (hu)
  - Alessio Frusciante (it)
  - Takeshi AIHANA (ja)
  - Changwoo Ryu (ko)
  - Gnome PL Team (pl)
  - Evandro Fernandes Giovanini (pt_BR)
  - Duarte Loreto (pt)
  - Mişu Moldovan (ro)
  - Leonid Kanter (ru)
  - Laurent Dhima (sq)
  - Слободан Д. Средојевић (sr)
  - Christian Rose (sv)
  - Maxim Dziumanenko (uk)
  - Funda Wang (zh_CN)

2.13.5
======

 Features
  - Save translations in separate file with markup backend's "meged" mode (Mark McLoughlin)
  - Switch on "merged" mode for the defaults database (Mark McLoughlin)
  - Make gconf_value_compare() and gconf_entry_equal() public (Jorn Baayen)
  - Lots of new docs (Dinoop Thomas)

 Fixes
  - Remove unused --enable-gconf-source configure option (Mark McLoughlin)
  - Fix parallel build (Thomas Vander Stichele)
  - Make gconf_client_remove_dir() clear the dir's cache (Vincent Untz)
  - Win32 build fix - include DLLs in zipfile package (Tor Lillqvist)
  - Make gconf_value_decode() work with schemas (Nicolas Peninguy)
  - Fix segault unescaping strings (Dan Williams)
  - Remove C99 usage (Jens Granseuer)

 Translators
  - Ales Nyakhaychyk (be)
  - Alexander Shopov (bg)
  - Jordi Mallach (ca)
  - Adam Weinberger (en_CA)
  - Francisco Javier F. Serrador (es)
  - Ivar Smolin (et)
  - Ilkka Tuohela (fi)
  - Christophe Merlet (RedFox) (fr)
  - Ignacio Casal Quinteiro (gl)
  - Ankit Patel (gu)
  - Takeshi AIHANA (ja)
  - Žygimantas Beručka (lt)
  - Kjartan Maraas (nb)
  - Tino Meinen (nl)
  - Åsmund Skjæveland (nn)
  - Kjartan Maraas (no)
  - Evandro Fernandes Giovanini (pt_BR)
  - Marcel Telka (sk)
  - Theppitak Karoonboonyanan (th)
  - Clytie Siddall (vi)
  - Abel Cheung (zh_HK)
  - Chao-Hsiung Liao (zh_TW)

2.12.1
======

 Fixes
  - Code cleanups (Kjartan Maraas)
  - Open GModules with G_MODULE_BIND_LAZY (Kjartan Maraas)
  - Fix change notification with multiple sources (Alexander Larsson)
  - Allow space in config source names on windows (Tor Lillqvist)
  - Read xml files in larger chunks (Mark McLoughlin)
  - Simplify the handling of --enable-schemas-install (Stepan Kasal)
  - Win32 Fixes (Tor Lillqvist)

 Translators

  - Alexander Shopov (bg)
  - Samia Niamatullah (bn)
  - Miloslav Trmac (cs)
  - Martin Willemoes Hansen (da)
  - Adam Weinberger (en_CA)
  - Francisco Javier F. Serrador (es)
  - Ivar Smolin (et)
  - Hizkuntza Politikarako Sailburuordetza (eu)
  - Ilkka Tuohela (fi)
  - Ignacio Casal Quinteiro (gl)
  - Ankit Patel (gu)
  - Yair Hershkovitz (he)
  - Erdal Ronahi (ku)
  - Tino Meinen (nl)
  - Mişu Moldovan (ro)
  - Marcel Telka (sk)
  - Laurent Dhima (sq)
  - Christian Rose (sv)
  - Maxim Dziumanenko (uk)
  - Clytie Siddall (vi)
  - Funda Wang (zh_CN)

2.12.0
======

 Misc

  - Fix issue with Win32 zipfile (Tor Lillqvist)

 Translators

  - Miloslav Trmac (cs)
  - Ivar Smolin (et)
  - Christophe Merlet (RedFox) (fr)
  - Ignacio Casal Quinteiro (gl)
  - Ankit Patel (gu)
  - Gabor Kelemen (hu)
  - Mohammad DAMT (id)
  - Alessio Frusciante (it)
  - Takeshi AIHANA (ja)
  - Žygimantas Beručka (lt)
  - Evandro Fernandes Giovanini (pt_BR)
  - Leonid Kanter (ru)
  - Данило Шеган (sr)
  - Baris Cicek (tr)
  - Clytie Siddall (vi)
  - Chao-Hsiung Liao (zh_TW)

2.11.91
=======

 Misc

  - Fix typos in some error messages (Adam Weinberger)

 Translators

  - Alexander Shopov (bg)
  - Jordi Mallach (ca)
  - Rhys Jones (cy)
  - Hendrik Richter (de)
  - Kostas Papadimas (el)
  - Adam Weinberger (en_CA)
  - Francisco Javier F. Serrador (es)
  - Ivar Smolin (et)
  - Ilkka Tuohela (fi)
  - Gabor Kelemen (hu)
  - Changwoo Ryu (ko)
  - Kjartan Maraas (nb)
  - Sameer Rajbhandari (ne)
  - Tino Meinen (nl)
  - Kjartan Maraas (no)
  - Gnome PL Team (pl)
  - Duarte Loreto (pt)
  - Mişu Moldovan (ro)
  - Marcel Telka (sk)
  - Laurent Dhima (sq)
  - Theppitak Karoonboonyanan (th)
  - Maxim Dziumanenko (uk)
  - Funda Wang (zh_CN)

2.11.90
=======

 Fixes

  - More work on Win32 support (Tor Lillqvist)
  - Fix gconfd not shutting down when not in use (Mark)
  - Plug some memory leaks (Aivars Kalvans)
  - Use G_GNUC_NULL_TERMINATED in some APIs (Marcus Meissner)
  - Fix build breakage (Gustavo J. A. M. Carneiro)
  - Improve performance by reducing no. of g_string_append_c() calls (Aivars Kalvans)

 Translators

  - Rostislav Raykov (bg)
  - Jordi Mallach (ca)
  - Martin Willemoes Hansen (da)
  - Hendrik Richter (de)
  - Ivar Smolin (et)
  - Hizkuntza Politikarako Sailburuordetza (eu)
  - Hamed Malek (fa)
  - Ignacio Casal Quinteiro (gl)
  - Ankit Patel (gu)
  - Yair Hershkovitz (he)
  - Mohammad DAMT (id)
  - Takeshi AIHANA (ja)
  - Žygimantas Beručka (lt)
  - Kjartan Maraas (nb, no)
  - Duarte Loreto (pt)
  - Marcel Telka (sk)
  - Laurent Dhima (sq)
  - Данило Шеган (sr)
  - Christian Rose (sv)
  - Theppitak Karoonboonyanan (th)
  - Funda Wang (zh_CN)
  - Chao-Hsiung Liao (zh_TW)

2.11.1
======

 Features

  - Port to Windows (Tor Lillqvist)
  - Backend for retrieving Evolution data sources from LDAP (Mark)

 Fixes

  - Fix crasher with gconf-editor (Josselin Mouette, Mark)
  - Generate GType for GConfUnsetFlags (Mark, Gustavo Carneiro)
  - Fix --enable-schemas-install error message (Stepan Kasal)
  - Fix build failure when building from CVS (Mark)

 Translators

  - Miloslav Trmac (cs)
  - Dafydd Harries (cy)
  - Kostas Papadimas (el)
  - Adam Weinberger (en_CA)
  - David Lodge (en_GB)
  - Francisco Javier F. Serrador (es)
  - Ivar Smolin (et)
  - Hizkuntza Politikarako Sailburuordetza (eu)
  - Elnaz Sarbar (fa)
  - Gabor Kelemen (hu)
  - Steve Murphy (rw)
  - Marcel Telka (sk)
  - Laurent Dhima (sq)

2.10.0
======

 Translators

  - Ivar Smolin (et)
  - Žygimantas Beručka (lt)
  - Reinout van Schouwen (nl)
  - Mişu Moldovan (ro)
  - Maxim Dziumanenko (uk)
  - Canonical Ltd (xh)

2.9.90
======

 Fixes

  - Fix daemon reloading causing listeners to break (Mark)
  - Fixes problem where a path file which only includes another path
    file wouldn't work (Mark)
  - Fix double free with gconf_client_clear_cache() (Mark)
  - Add pre-condition to gconf_value_validate (Vincent Untz)

 Translators

  - Rostislav Raykov (bg)
  - Priit Laes (et)
  - Pauli Virtanen (fi)
  - Marcel Telka (sk)

2.9.2
=====

 Fixes

  - Make all_entries() get the schema name when the value is set (Fernando Herrera)
  - Look up value in the C locale even if its found in the current locale (Fernando Herrera)
  - Add title/name to the API documentation (Jonathan Blandford)

 Translators

  - Changwoo Ryu (ko)

2.8.1
=====

 Fixes

  - If the toplevel directory of a source isn't writable,
    then mark the whole source as readonly (Mark)
  - Plug various leaks (Kjartan)

 Translators

  - Christophe Merlet (RedFox) (fr)
  - Alessio Frusciante (it)
  - Žygimantas Beručka (lt)
  - Li-Jen Hsin (zh_TW)

2.8.0.1
=======

 Fixes

  - Use automake 1.7 (Mark)
  - Always ship the API docs html in the tarball (Mark)

2.8.0
=====

 Translators

  - Ayman Hourieh (ar)
  - Kenan Hadžiavdić (bs)
  - Miloslav Trmac (cs)
  - Dafydd Harries (cy)
  - Kostas Papadimas (el)
  - Francisco Javier F. Serrador (es)
  - Alessio Frusciante (it)
  - Hasbullah Bin Pit (ms)
  - Evandro Fernandes Giovanini (pt_BR)
  - Mişu Moldovan (ro)
  - Gurkan Aslan (tr)

2.7.92
======

 Fixes

  - Fix crash caused by dropping the default database early (Mark)
  - Fix issue with SIGHUP causing listeners to be dropped (Josselin Mouette)
  - Only install the global schema default in the C locale (Mark)
  - Don't crash if there's no schema for the locale (Mark)

 Translators

  - Jordi Mallach (ca)
  - Laszlo Dvornik (hu)
  - Pawan Chitrakar (ne)
  - Tino Meinen (nl)
  - Laurent Dhima (sq)
  - Maxim Dziumanenko (uk)

2.7.91.1
========

 Features

  - Switch off the "subtree-in-a-file" thing again (Mark)
      See: http://mail.gnome.org/archives/desktop-devel-list/2004-August/msg00393.html

 Translators

  - Kenan Hadžiavdić (bs)
  - Martin Willemoes Hansen (da)
  - Pauli Virtanen (fi)
  - Takeshi AIHANA (ja)
  - Laurent Dhima (sq)

2.7.91
======

 Fixes

   - Fix a bunch of coding errors (Kjartan Maraas)
   - Always install schemas with the correct permissions (Mark)
   - Fix various strings to use better terminology (Danilo Šegan)

 Translators

   - Miloslav Trmac (cs)
   - Christian Neumair (de)
   - Adam Weinberger (en_CA)
   - David Lodge (en_GB)
   - Francisco Javier F. Serrador (es)
   - Pauli Virtanen (fi)
   - Ankit Patel (gu)
   - Changwoo Ryu (ko)
   - Sanlig Badral (mn)
   - Kjartan Maraas (nb)
   - Åsmund Skjæveland (nn)
   - Kjartan Maraas (no)
   - Amanpreet Singh Alam (pa)
   - Gnome PL Team (pl)
   - Duarte Loreto (pt)
   - Dmitry G. Mastrukov (ru)
   - Laurent Dhima (sq)
   - Данило Шеган (sr)
   - Christian Rose (sv)
   - Funda Wang (zh_CN)

2.7.90
======

  Fixes

   - Remove unused internal function (Carlos Daniel Ruvalcaba Valenzuela)
   - Bring docs up to date with GObject (rather than GtkObject) usage (Kai Willadsen)

  Translators

   - Rostislav Raykov (bg)
   - Adam Weinberger (en_CA)
   - Francisco Javier F. Serrador (es)
   - Ravishankar Shrivastava (hi)
   - Laszlo Dvornik (hu)
   - Takeshi AIHANA (ja)
   - Changwoo Ryu (ko)
   - Žygimantas Beručka (lt)
   - Sanlig Badral (mn)
   - Tino Meinen (nl)
   - Kjartan Maraas (no)
   - Gnome PL Team (pl)
   - Duarte Loreto (pt)
   - Laurent Dhima (sq)
   - Christian Rose (sv)
   - Maxim Dziumanenko (uk)

2.7.3.1
=======

  Fixes

   - Make --makefile-install-rule worky again (Mark)
   - Remove an outdated comment from the path file (Fernando Herrera)

  Translators

   - Alexander Shopov (bg)
   - Miloslav Trmac (cs)
   - Gareth Owen (en_GB)
   - Laurent Dhima (sq)

2.7.3
=====

 Features

  - Switch on "subtree-in-a-file" at certain points in the tree (Mark)
      o See http://mail.gnome.org/archives/desktop-devel-list/2004-June/msg00424.html
  - Add --unload to gconftool which complements --load (Julio M. Merino Vidal, Mark)
  - Add --sysgconfsubdir configure argument (Julio M. Merino Vidal)
  - Make gconfd reload all databases on SIGHUP (Josselin Mouette)

 Fixes

  - Fix gconfd segfault from freeing the default database twice (Mark)
  - Warn in docs to call g_type_init() before using GConfCient (Leonardo Quijano Vincenzi)
  - Don't create a dir during docs build if not needed (Julio M. Merino Vidal)
  - Encode non-ascii GConf keys using a more compact encoding (Mariano Suárez-Alvare)
  - 64-bit fix (Joe Marcus Clarke)
  - Plug a leak (Kjartan Maraas)

2.7.1
=====

 Features:

  - Add a --ignore-schema-defaults argument for use with gconftool-2 --dump (Mark)
  - Add API to construct databases from arbitrary stacks of sources (Mark)
  - Allow backends to notify the daemon of changes (Cyrille Moureaux, Mark)
  - Add vtable size mismatch detection (Mark)

 Fixes:

  - Fix accidental use of a C99ism (Morten Welinder)
  - Fix random crashes when unsetting keys (Richard Hult)
  - Fix .gconfd/saved_state growing to a huge size (Gustavo Giráldez)
 
 Translators:

  - Gisela Carbonell (ca)
  - Miloslav Trmac (cs)
  - Adam Weinberger (en_CA)
  - Gareth Owen (en_GB)
  - Francisco Javier F. Serrador (es)
  - Hizkuntza Politikarako Sailburuordetza (eu)
  - Christophe Merlet (RedFox) (fr)
  - Nirav, Ankit, Ankur, Atit, Bhavin, Kartik, Khushbu, Sweta. (gu)
  - helgi (is)
  - Alessio Frusciante (it)
  - Kjartan Maraas (no)
  - Laurent Dhima (sq)
  - Данило Шеган (sr)
  - Yuri Syrota (uk)
  - Funda Wang (zh_CN)

2.6.1
===

 Fixes:

 - add a --enable-gtk=yes/no/auto configure arg (Julio Merino, Mark)
 - fix basic example app to not crash (Elijah Newren)
 - don't try and create a dir if it already exists (Ryan Lovett, Mark)
 - only ever create the $(HOME)/.gconfd/ dir in the daemon (Colin Walters)
 - add quotes around AM_GCONF_SOURCE_2 (Frédéric L. W. Meunier)
 - handle <entry> with only <schema_name> correctly in --load (Mark)
 - fix the order in which local-defaults.path gets included (Mark)
 - fix minor inefficiency when not printing debugging messages (Mark)

 Translators:

 - Adam Weinberger (en_CA)
 - Robert Sedak (hr)
 - Samúel Jón Gunnarsson (is)
 - Alessio Frusciante (it)
 - Takeshi AIHANA (ja)
 - Amanpreet Singh Alam (pa)
 - Gurkan Aslan (tr)

2.5.1
===

 Thanks to lots of people for contributions to this release. 

 The primary change in this release is switching over to a new backend
 for loading the XML config files, which should be faster and use far
 less memory. However, the change is high-risk, report any problems.

2.4.0
===

 Thanks to Muktha Narayan, Christophe Fergeau, Frederic Crozat, 
 Jeffrey Stedfast, Mark McLoughlin, Dafydd Harries, Ross Golder,
 Greg Hudson for contributions to this release.

 - print usage message when no options passed to gconftool 
 - API docs updates
 - fix UTF-8 handling for command line output
 - fix reliability of writing out XML
 - ensure recursive unsets get synced
 - fix flag value that was "0"
 - fix recursive preloading
 - fix a memleak
 - fix some gconftool messages/segfaults

2.3.3
===

 Thanks to James Cape, Rodrigo Moya, Michael Meeks, Ross Burton, 
 Mark McLoughlin for contributions to this release.

 - new gconf_client_notify() API to fake a notification
 - fixes to gconftool --dump feature
 - implement schema uninstallation in gconftool so packages
   can avoid leaving junk
 - fix build issues with linc-free ORBit
 - new gconf_client_recursive_unset API
 - fix gcc 3.3 strict aliasing warnings

2.3.2
===

 Thanks to Masahiro Sakai, Muktha Narayan, Brian Cameron, Ross Burton, 
 Jeff Franks for fixes in this release.

 - fix build on Cygwin
 - don't complain about missing saved_state in syslog
 - improve gconf-sanity-check error text
 - added --get-type, --get-list-size and --get-list-element
 - exported gconf_entry_copy
 - cleaned up headers for C++
 - added missing GCONF_CLIENT_GET_CLASS
 - hackaround fix for 2.3.1 lockfile breakage

===
GConf 1.2.0 released June 11 2002.