File: ChangeLog

package info (click to toggle)
gconf-editor 2.16.0-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,424 kB
  • ctags: 551
  • sloc: sh: 8,834; ansic: 5,226; xml: 557; makefile: 120
file content (2015 lines) | stat: -rw-r--r-- 66,079 bytes parent folder | download
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
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2006-09-05  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Release 2.16.0

2006-08-07  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Release 2.15.91
	* Makefile.am: added missing m4 subdir

2006-08-07  Kjartan Maraas  <kmaraas@gnome.org>

	* .cvsignore:
	* Makefile.am:
	* configure.in:
	* docs/.cvsignore:
	* docs/C/gconf-editor.xml:
	* docs/Makefile.am: Port to gnome-doc-utils. Patch from
	Don Scorgie. Closes bug #346919.

2006-08-07  Kjartan Maraas  <kmaraas@gnome.org>

	* src/gedit-output-window.c: (my_popup_handler),
	(gedit_output_window_init): Port to gtk+ from deprecated
	libgnomeui API. Kristof Vansant. Closes bug #166882.

2006-07-23  Luca Ferretti  <elle.uca@libero.it>

	* autogen.sh: add "USE_COMMON_DOC_BUILD=yes", fix bug # 348238 

2006-07-11  Kjartan Maraas  <kmaraas@gnome.org>

	* autogen.sh: Convert to use gnome-autogen.sh. Fixes
	bug #341344. Patch from Frederic Peters.

2006-05-19  Fernando Herrera  <fherrera@onirica.com>

	* docs/de/gconf-editor-de.omf: Converted to UTF-8
	(pointed by Kjartan Maraas)

2006-05-09  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* src/main.c: (main): Port to GOption. Patches and code from
	Paolo Borelli, Christian Persch and Kristof Vansant. Fixes
	bugs #335032 and #320390.

2006-05-09  Brian Pepple  <bdpepple@gmail.com>

	* po/LINGUAS: New file listing all supported languages.
	* configure.in: Use po/LINGUAS instead of including all languages
	directly in this file. See the wiki for more information:
	http://live.gnome.org/GnomeGoals/PoLinguas

2006-05-09  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-search.c: (gconf_tree_model_search_iter_foreach):
	Show search results when more than one has been found on the
	path. Fixes #339316

2006-05-09  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c:
	(gconf_editor_window_popup_error_dialog),
	(gconf_editor_window_go_to):
	* src/main.c: (main): remove invalid_arg_error_dialog. Reuse
	gconf_editor_window_popup_error_dialog and made this dialog HIG
	compliant. Patch from Kristof Vansant. Fixes #340241

2006-05-09  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: version 2.15.0

2006-04-27  Wouter Bolsterlee  <uws+gnome@xs4all.nl>

	* src/main.c: Call gnome_accelerators_sync() to save the keyboard
	shortcuts on exit. Fixes bug #162902.

2006-04-21  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* configure.in: 
	* docs/fr/Makefile.am:

	Adding missing docs/fr/Makefile.am .
	
2006-04-17  Benoît Dejean  <benoit@placenet.org>

	* docs/Makefile.am:
	* docs/fr/*:
	
	Added French translation.

2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Remove obsolete entry for no_NO.
	* po/no.po: And the translation.

2006-03-27 Vladimer Sichinava  <vlsichinava@gmail.com>

        * configure.in: Added "ka" (Georgian) to ALL_LINGUAS

2006-03-26  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* configure.in: Adding "de" documentation entry.
	* docs/de/Makefile.am: Fixing build (#336005).

2006-03-25  Christian Neumair  <chris@gnome-de.org>

	* docs/Makefile.am: (SUBDIRS): Add "de". Thanks to Keywan Najafi
	Tonekaboni.

2006-03-22  Tommi Vainikainen  <thv@iki.fi>

	* configure.in (ALL_LINGUAS): Added Dzongkha (dz).

2006-03-20  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_gconf_value_changed): Fix 
	memory corruption. GconfValue should be freed with gconf_value_free
	not with g_free.
	* src/gconf-list-model.c: (gconf_list_model_notify_func): Fix a tiny
	leak.
	Patch from Paolo Borelli. Closes bug #332931.

2006-03-20  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Bump version to 2.14.1

2006-03-12  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Release 2.14.0

2006-03-04  Jérémy Ar Floc'h <jeremy.lefloch@gmail.com>

	* configure.in: Added Breton translation

2006-01-30  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-key-editor.c: (update_list_buttons): Fix button sensitivity
	illness on the key list dialog. Patch from Christian Persch. Fixes bug
	#166112

2006-01-30  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c:
	(gconf_editor_window_selection_changed): Remove duplicated strings
	and fix capitalization. Patch from Benoît Dejean. Fixes bug #167350

2006-01-30  Fernando Herrera  <fherrera@onirica.com>

	* src/main.c: (invalid_arg_error_dialog): HIGfy error dialog.
	Patch from Kristof Vansant. Fixes bug #325058.

2006-01-30  Fernando Herrera  <fherrera@onirica.com>

	* po/POTFILES.in:
	* src/gconf-cell-renderer.c: (gconf_cell_renderer_get_size),
	(gconf_cell_renderer_render): Translate "<no value>" string.
	Patch from Gabor Kelemen. Fixes bug #327525

2006-01-30  Fernando Herrera  <fherrera@onirica.com>

	* data/gconf-editor.desktop.in.in: Added GTK; to Category entry.
	Fixes bug #328037

2006-01-14  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>

	* configure.in: Add "zh_HK" to ALL_LINGUAS.

2006-01-08  Sebastien Bacher  <seb128@debian.org>

	* src/gconf-editor-window.c: (gconf_editor_window_about_window):
	use "translator-credits" instead of "translator_credits",
	patch by Vincent van Adrighem <adrighem@gnome.org> (Closes: #300958)

2006-01-03  Mark McLoughlin  <mark@skynet.ie>

	* configure.in: remove some redundant code which
	set GCONF_DEFAULTS_SOURCE with a value which was
	later overwritten.

2005-11-30  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.12.1 ("Cazuelazo")

2005-11-29  Sebastien Bacher  <seb128@debian.org>

	* src/gconf-key-editor.c: (gconf_key_editor_create_list_type_menu):
	fix a crasher with the combobox selection, 
	patch by Felix Riemann <felix@hsgheli.de> (Closes: #318050).

2005-11-29  Sebastien Bacher  <seb128@debian.org>

	* src/gconf-editor-window.c: (help_cb):
	fix a crasher when pressing F1 without yelp installed,
	patch by Felix Riemann <felix@hsgheli.de> (Closes: #318878).

2005-09-23  Erdal Ronahi  <erdal.ronahi@gmail.com>

	* configure.in: Added "ku" to ALL_LINGUAS

2005-09-07  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.12.0 "I only care when I miss it"

2005-08-31  Shaun McCance  <shaunm@gnome.org>

	* docs/uk/Makefile.am:
	* docs/uk/gconf-editor-uk.omf:
	- Got the uk documentation translation working, #314947

2005-08-29  Maxim Dziumanenko <mvd@mylinux.ua>

	* configure.in:
	* docs/Makefile.am:
	* docs/uk/*:
	Added Ukrainian translation of the manual.
	
2005-08-23  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Postrelease version bumping to 2.12.0

2005-08-23  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* NEWS: Released 2.11.92 (and forgot ChangeLog entry)

2005-08-02  Abduxukur Abdurixit <abdurixit@gmail.com>

        * configure.in: Added "ug" to ALL_LINGUAS.

2005-06-25  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-key-editor.c: (combo_box_changed),
	(list_type_menu_changed), (gconf_key_editor_create_combo_box),
	(gconf_key_editor_create_list_type_menu), (list_add_clicked),
	(list_edit_element), (gconf_key_editor_init),
	(gconf_key_editor_set_value), (gconf_key_editor_get_value):
	* src/gconf-key-editor.h: Port to GtkComboBox.

	Patch by Michael Gossard <michael.gossard@free.fr>
	Fix bug #171000

2005-06-25  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: branch for gnome-2-10 and bump version to
	2.11.0

2005-06-25  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Bump version to 2.10.1
	* src/gconf-editor-window.c: (gconf_editor_popup_window_unset_key),
	(list_view_button_press_event),
	(gconf_editor_window_list_view_popup_menu): Only make some popup
	options sensitive when there is a key selected. Fixes bug #167547.

2005-06-20  Runa Bhattacharjee <runa@bengalinux.org>

        * configure.in: Added "te" (Telegu) to ALL_LINGUAS.

2005-03-31  Steve Murphy  <murf@e-tools.com>

        * configure.in: Added "rw" to ALL_LINGUAS.

2005-03-23  Adi Attar  <aattar@cvs.gnome.org>

	* configure.in: Added 'xh' to ALL_LINGUAS.

2005-03-07  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* NEWS:
	* configure.in: Release 2.10.0: "Maria Stuarda"

2005-03-03  Hendrik Richter  <hendrik@gnome-de.org>

        * docs/de/gconf-editor.xml: Fixed German translation by Keywan
		Najafi Tonekaboni <keywan@uni-duisburg.de>

2005-02-28  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* NEWS:
	* configure.in: Release 2.9.92: "Drexler singing"

2005-02-12  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c:
	* src/gconf-search-dialog.c:
	* src/gedit-output-window.c: Use glib/gi18n.h and GTK_STOCK_ABOUT
	instead of deprecated ones in libgnome*. Patch from Kristof Vansant

2005-02-12  Fernando Herrera  <fherrera@onirica.com>

	* data/icons/Makefile.am:
	* data/icons/folder-closed.png: Re-add folder closed icon.

2005-02-10  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* NEWS:
	* configure.in: Release 2.9.91: "Spectacular, Spectacular"

2005-02-10  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* src/gconf-list-model.c: (gconf_list_model_finalize): removes the 
	notify handler when the list model is finalized. Fixes bug #166438.
	Patch from John Ellis <johne@bellatlantic.net>

2005-01-24  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release version bumping.

2005-01-24  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.9.3 "Bang Bang"

2005-01-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-cell-renderer.c: (gconf_cell_renderer_set_property),
	(gconf_cell_renderer_finalize), (gconf_cell_renderer_get_size),
	(gconf_cell_renderer_render), (gconf_cell_renderer_class_init),
	(gconf_cell_renderer_init): Implement a finalize method.
	* src/gconf-bookmarks.c: (gconf_bookmarks_hook_up_menu):
	* src/gconf-editor-window.c:
	(gconf_editor_window_selection_changed),
	(gconf_editor_window_update_list_selection): Tooons of leaks fixes.

	Patch by Paolo Borelli.

2005-01-10  Madhan Raj  <raj_madan@rediffmail.com>

	* src/gconf-search.c: (gconf_tree_model_search_iter_foreach): After
	finding a pattern in the final key name, continue the list. Do not return.

2004-11-30  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.9.2 "Con la frente marchita"

2004-11-28  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-editor-window.c (gconf_editor_window_init): Set the
	window icon for the dialog.
	
2004-11-28  Fernando Herrera  <fherrera@onirica.com>

	* data/icons/Makefile.am: Install icon on $prefix/share/icons/hicolor
	* src/gconf-editor-window.c: (gconf_editor_window_about_window):
	Use gtk_about_dialog_new() instead of gnome_about_new(). (Patch from
	Dennis Cranston). Add Shaun McCance to documentors credits.

2004-11-28  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-editor-window.c (gconf_editor_window_about_window):
	
2004-11-24  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-editor-window.c (gconf_editor_window_selection_changed): 
	Cleanup the main window's title.  Use proper capitalization; fix
	default/mandatory window title confusion; and remove the trailing 
	'-' from the title bar if the key name is blank.

2004-11-24  Christoffer Olsen  <co@deworks.net>

	* configure.in: Added data/gconf-editor.desktop.in to AC_OUTPUT
	* data/gconf-editor.desktop.in: Removed, will be generated
	* data/gconf-editor.desktop.in.in: Created this file, will
	generate *.desktop.in from this one.
	* po/POTFILES.in: Replaced *.desktop.in with *.desktop.in.in

2004-11-20  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_class_init): Fix a 
	typo (in ttype :) ). Thanks to David Lodge for pointing this. Fixes
	bug #158300.

2004-11-20  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-key-editor.[ch]: HIGify capitalization, alignment, and 
	padding for New Key and Edit Key dialogs.
	
2004-11-20  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-editor-window.c: (gconf_editor_window_init):  HIGify
	capitalization, alignment, and padding for Key Documenation pane.
	
2004-11-20  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Require gtk+ >= 2.5.5
	* src/gconf-editor-application.c:
	(gconf_editor_application_create_editor_window): Disable defaults
	and mandatory windows menu entry as well as the shortcut. Fixes
	bug #157243

2004-11-05  Fernando Herrera  <fherrera@onirica.com>

	* src/main.c: (main): Ops, forgot to update the main window creation
	to the new type. Kudos to Luis' build sheriff hat.

2004-11-03  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (help_cb): Show the _real_
	error message if help cannot be displayed. Patch by
	Paolo Borelli.

2004-11-03  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Require gconf >= 2.8.2
	* src/gconf-editor-application.c:
	(gconf_editor_application_create_editor_window):
	* src/gconf-editor-application.h:
	* src/gconf-editor-window.c: (gconf_editor_window_new_window),
	(gconf_editor_window_new_defaults_window),
	(gconf_editor_window_new_mandatory_window),
	(gconf_editor_popup_window_set_as_default),
	(gconf_editor_popup_window_set_as_mandatory),
	(gconf_editor_window_selection_changed),
	(gconf_editor_window_get_client),
	(gconf_editor_window_set_property),
	(gconf_editor_window_get_property),
	(gconf_editor_window_class_init), (gconf_editor_window_init):
	* src/gconf-editor-window.h:
	* src/gconf-util.c: (gconf_client_get_schema_for_key),
	(gconf_util_can_edit_defaults), (gconf_util_can_edit_mandatory): Set window type
	as a property. Set title based on this property. Use only gconf_client API (now
	that gconf bug is fixed) but for guessing write perms on defaults and mandatory
	(queried at the first time only). Disable "Set as default/mandatory" popup entry
	when browsing them.

2004-10-31  Fernando Herrera  <fherrera@onirica.com>

	* data/icons/Makefile.am:
	* data/icons/folder-closed.png:
	* src/gconf-bookmarks-dialog.c: (gconf_bookmarks_dialog_init):
	* src/gconf-bookmarks.c: (gconf_bookmarks_update_menu):
	* src/gconf-editor-window.c:
	* src/gconf-stock-icons.c: (gconf_stock_icons_register):
	* src/gconf-stock-icons.h: Use hicolor stock bookmarks icons. Thanks to
	Bryan W Clark for finding them. Fix bug #123986

2004-10-31  Dave Ahlswede <mightyquinn@letterboxes.org>

	* src/gconf-editor-window.c: Change "GConf editor" to
	"Configuration Editor" in the UI.

2004-10-22  James Henstridge  <james@jamesh.id.au>

	* data/Makefile.am: clean some files.  Include the intltool
	schemas rule.

	* Makefile.am: remove intltool stuff on "make distclean".  Ignore
	scrollkeeper indices during "make distcheck"'s uninstall check.

	* configure.in: modernise configure script a bit.

	* autogen.sh: request a modern version of automake, and cause the
	script to fail if any of the build tools fail.  Call
	gnome-doc-common to pull in current xmldocs.make and omf.make
	files.

2004-10-11  Christian Neumair  <chris@gnome-de.org>

	* docs/de/figures/gconf_editor_anno_window.png 
	* docs/de/figures/gconf_editor_anno_window.xcf 
	* docs/de/Makefile.am
	* docs/de/gconf-editor-de.omf 
	* docs/de/gconf-editor.xml
	* docs/de/l10n.txt
	* docs/de/legal.xml: Added German documentation. Kudos to Keywan
	Najafi Tonekaboni <keywan@uni-duisburg.de>.

2004-10-07  James Bowes  <bowes@cs.dal.ca>

	* src/gconf-editor-window.c:
	(gconf_editor_window_have_tearoffs_notify),
	(gconf_editor_window_setup_ui_prefs_handler): Handle menu
	tearoffs correctly, using the ui_manager.

2004-10-07  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Branched. Now HEAD is for GNOME 2.9. 
	Bumped version to 2.9.0

2004-10-04  Mark McLoughlin  <mark@skynet.ie>

	Fix for spewing warnings on startup - bug #144833

	* configure.in: require GConf 2.8.1.
	
	* src/gconf-util.[ch]:
	(can_edit_source): assume the  backend will correctly
	report whether the key is writable.
	(gconf_util_can_edit_defaults),
	(gconf_util_can_edit_mandatory): re-name from
	gconf_client_can_edit_...() to avoid possible future
	conflicts.
	
	* src/gconf-editor-window.c: (gconf_editor_window_init): upd.

2004-10-01  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.8.1 "Puerto Rico"

2004-09-18  Fernando Herrera  <fherrera@onirica.com>

	* src/main.c: (main): parse correcly gtk/gnome command line
	arguments. Based on patch from Julio M. Merino Vidal. Fix bug
	#151829.

2004-09-18  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release version bumping.
	* src/gconf-bookmarks.c: (gconf_bookmarks_hook_up_menu): don't 
	crash if have_icons key is not present. Fix bug #151720.

2004-09-13  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.8.0 "Joshua Bell"

2004-09-12  Shaun McCance  <shaunm@gnome.org>

	* docs/C/gconf-editor.xml:
	- Minor fixes

2004-09-12  Shaun McCance  <shaunm@gnome.org>

	* docs/C/gconf-editor.xml:
	- Typo fixes from Keywan Najafi Tonekaboni

2004-09-11  Abel Cheung  <maddog@linuxhall.org>

	* configure.in: Added "en_CA" to ALL_LINGUAS.

2004-09-08  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release version bumping to 2.8.0

2004-09-08  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.7.92 ("Morte della Madonna").

2004-09-08  Gora Mohanty  <gmohanty@cvs.gnome.org>
                                                                                
        * configure.in: Added 'or' to ALL_LINGUAS.
 
2004-09-06  Shaun McCance  <shaunm@gnome.org>

	* docs/C/gconf-editor.xml:
	- Adding revision status information

2004-09-02  Shaun McCance  <shaunm@gnome.org>

	* docs/C/Makefile.am:
	* docs/C/gconf-editor-C.omf:
	* docs/C/gconf-editor.xml:
	- Full revisions for 2.8

2004-09-02  Shaun McCance  <shaunm@gnome.org>

	* docs/C/gconf-editor.xml:
	* docs/C/figures/gconf_editor_anno_window.png:
	* docs/C/figures/gconf_editor_anno_window.xcf:
	- Partial documentation updates for 2.8

2004-08-21  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.7.91 ("Que fuerte me parece").

2004-08-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-search-dialog.c: (gconf_search_dialog_search):
	* src/gconf-search.c: (gconf_tree_model_search_iter_foreach),
	(gconf_tree_model_build_match_list):
	* src/gconf-search.h: Fix search cancelation. (Bugs #150728, #146790)

2004-08-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c:
	(gconf_editor_window_update_list_selection): Check for NULL values
	before showing/hiding the non-schema warning. Fix bug #149805.

2004-08-16  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "bs" to ALL_LINGUAS.

2004-08-16  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added nb to ALL_LINGUAS.

2004-08-02  Anders Carlsson  <andersca@gnome.org>

	* configure.in: Release 2.7.90

	* NEWS: Update.

2004-07-31  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-editor-window.c:  Use stock add icon in 'Add Bookmark' menu.
	
	* src/gconf-bookmarks-dialog.c:  Use HIG widget spacing for edit
	bookmarks dialog. Use header capitalization for dialog's window title. 

2004-07-31  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-editor-window.c:  Use header capitalization for newly added
	menu item and add mnemonic.

2004-07-31  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-search-dialog.c:  (gconf_search_dialog_init):  Use HIG
	widget spacing for find dialog.  Add missing mnemonic to the search
	entry's label.
	 
2004-07-20  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	Post release version bump

2004-07-20  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Released 2.7.4

2004-07-18  Fernando Herrera  <fherrera@onirica.com>

	* src/gedit-output-window.c: (gedit_output_window_prepend_line):
	* src/gedit-output-window.h: added prepend function.
	* src/gconf-editor-window.c: (gconf_add_recent_key),
	(gconf_editor_show_recent_keys), (gconf_editor_new_key_response),
	(gconf_editor_edit_key_response), (gconf_editor_window_recents_init),
	(gconf_editor_gconf_value_changed), (gconf_editor_window_init):
	* src/gconf-editor-window.h:
	* src/gconf-search-dialog.c: (gconf_search_dialog_search): Add every
	modified key to recents and add an entry in the menu for showing them
	all in the output window.

2004-07-18  Dennis Cranston <dennis_cranston@yahoo.com>

	* src/gconf-editor-window.c:  Use header capitalization for
	menu items. Fix bug #147753

2004-07-18  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_go_to): Go to
	the rigth key also in the list view if location is a full key.

2004-07-17  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-search-dialog.c: (gconf_search_dialog_search):
	* src/gconf-search.c: (gconf_tree_model_search_iter_foreach),
	(gconf_tree_model_build_match_list):
	* src/gconf-search.h: Search asyncronously and add results to the 
	output window as soon as they come. Search in gconf_client_all_entries
	instead of the list_model to allow user interation during the search.

2004-07-17  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_init): Put the output
	window in a vpane so it can be resized. Fixs #146776

2004-07-14  Pawan Chitrakar  <pawan@nplinux.org>

	* configure.in: Added ne Nepali in ALL_LINGUS

2004-07-09  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post-release version bumping.

2004-07-09  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* NEWS: Release 2.7.3

2004-07-09  Anders Carlsson  <andersca@gnome.org>

	* src/gconf-search-dialog.c: 
	(gconf_search_not_found_dialog):
	Translate dialog title
	
	(gconf_search_entry_changed):
	Make the find button insensitive if there's no text entered.

	(gconf_search_dialog_init):
	Remove the dialog separator and make the window non-resizable.

2004-07-09  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.7.2 (never released :) )

2004-07-09  Fernando Herrera  <fherrera@onirica.com>

	* po/POTFILES.in: removed src/gconf-message-dialog.c and added
	gconf-search-dialog.c

2004-07-09  Fernando Herrera  <fherrera@onirica.com>

	* data/gconf-editor.schemas.in:
	* src/Makefile.am:
	* src/gconf-message-dialog.c:
	* src/gconf-message-dialog.h:
	* src/main.c: (main): Removed warning dialog. Patch from Christian Neumair

2004-07-08  Fernando Herrera  <fherrera@onirica.com>

	* src/Makefile.am: Added new files.
	* src/gconf-editor-window.c: (gconf_editor_window_search),
	(gconf_editor_window_close_output_window),
	(gconf_editor_window_output_window_changed),
	(gconf_editor_window_init): 
	* src/gconf-editor-window.h: Added the output window. Change default size.
	* src/gconf-search-dialog.c: (gconf_search_dialog_response),
	(gconf_search_dialog_class_init), (gconf_search_not_found_dialog),
	(gconf_search_dialog_search), (gconf_search_dialog_init),
	(gconf_search_dialog_get_type), (gconf_search_dialog_new):
	* src/gconf-search-dialog.h: New files for the search dialog.
	* src/gconf-search.c: (gconf_tree_model_search_iter_foreach),
	(gconf_tree_model_build_match_list):
	* src/gconf-search.h: New files for doing the search.
	* src/gedit-output-window.c: (gedit_output_window_get_type),
	(gedit_output_window_class_init),
	(gedit_output_window_copy_selection), (close_clicked_callback),
	(clear_clicked_callback), (copy_clicked_callback),
	(gedit_output_window_key_press_event_cb), (create_popup_menu),
	(gedit_output_window_treeview_selection_changed),
	(gedit_output_window_init), (gedit_output_window_finalize),
	(gedit_output_window_destroy), (gedit_output_window_new),
	(gedit_output_window_clear), (gedit_output_window_append_line),
	(gedit_output_window_set_select_multiple):
	* src/gedit-output-window.h: Class borrowed from gedit. Minor changes
	for disabling multiple selection and adding a new signal when the
	selection has changed.

	With this we have a new fancy search system :) Fixed bugs #82902 and
	#113235.

2004-07-04  Christian Neumair  <chris@gnome-de.org>

	* src/gconf-editor-window.c (gconf_editor_window_init):
	Enable menu internationalization by setting the menu action group's
	translation domain to NULL.

2004-06-22  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post-release version bumping.

2004-06-22  Breda McColgan  <breda.mccolgan@sun.com>

	* docs/C/gconf-editor.xml: updated menu path (Getting Started)
	* docs/C/gconf-editor-C.omf: updated manual date and version numbers
	* docs/C/l10n.txt: updated manual date and version number

2004-06-21  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.7.1

2004-06-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_gconf_value_changed): Check 
	if we are changing values of the same type. Because we can get a changed 
	signal from a cell_renderer corresponfing to a previous list_model.
	This finally fixes bug #136148.

2004-06-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-list-model.c: (gconf_list_model_finalize): Free root_path.

2004-06-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_gconf_value_changed): Free the path.

2004-06-18  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-application.c:
	(gconf_editor_application_create_editor_window):
	* src/gconf-editor-window.c: (gconf_editor_window_init): Fix keybindings.
	* src/gconf-editor-window.h:
	* src/gconf-list-model.h:
	* src/gconf-tree-model.h: add missing function definitions.

2004-06-18  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_init): Unsensitivice new 
	defaut/mandatory windows menu entries if the user cannot edit them.

2004-06-18  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-application.c:
	(gconf_editor_application_create_editor_window):
	* src/gconf-editor-application.h:
	* src/gconf-editor-window.c: (gconf_editor_window_go_to),
	(gconf_editor_window_new_window),
	(gconf_editor_window_new_defaults_window),
	(gconf_editor_window_new_mandatory_window),
	(gconf_editor_popup_window_unset_key),
	(gconf_editor_new_key_response),
	(gconf_editor_popup_window_new_key),
	(gconf_editor_edit_key_response),
	(gconf_editor_popup_window_edit_key),
	(gconf_editor_gconf_value_changed), (gconf_editor_check_writable),
	(gconf_editor_window_update_list_selection),
	(gconf_editor_window_expand_first), (gconf_editor_window_finalize),
	(gconf_editor_window_init):
	* src/gconf-editor-window.h:
	* src/gconf-list-model.c: (gconf_list_model_notify_func),
	(gconf_list_model_init), (gconf_list_model_set_client):
	* src/gconf-tree-model.c: (gconf_tree_model_set_client):
	* src/main.c: (main): Open new windows for browsing/editing defaults and
	mandatory settings. Use always the GConf client asociated to the window.

2004-06-18  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c:
	(gconf_editor_popup_window_set_as_default): set defaults in
	gconf.xml.defaults instead of on schemas.
	(gconf_editor_popup_window_set_as_mandatory): set a value as
	mandatory.
	(gconf_editor_window_init): Unsensitive "set as default" and "set as
	mandatory" if the user cannot do it.
	* src/gconf-util.c: (gconf_client_can_edit_defaults),
	(gconf_client_can_edit_mandatory):
	* src/gconf-util.h: new helper functions.

2004-06-18  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* data/Makefile.am:
	* data/gconf-editor.schemas.in:
	* po/POTFILES.in: Add an schema file.

2004-05-28  Anders Carlsson  <andersca@gnome.org>

	* src/gconf-editor-window.c (gconf_editor_window_about_window): 
	Add Fernando.

2004-05-28  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release bump to 2.7.1
	* src/gconf-editor-window.c: (gconf_editor_popup_window_new_key): new
	key are writable, so don't show the warning.
	* src/gconf-key-editor.c: (update_list_buttons),
	(list_edit_element), (list_edit_clicked),
	(list_view_row_activated), (gconf_key_editor_init):
	* src/gconf-key-editor.h: Implement list element editing and add a
	button for it. Fixes bug #141034.

2004-05-28  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.7.0

2004-05-28  Alberto Ruíz  <arc@gulic.org>

	* src/gconf-key-editor.c: (list_remove_clicked): When removing an
	item, select the next one or the previous. Fixes bug #142994.

2004-05-28  Fernando Herrera  <fherrera@onirica.com>

	* data/icons/Makefile.am
	* data/icons/stock-about-16.png: removed unused icon.

2004-05-19  James Bowes  <bowes@cs.dal.ca>

	* src/gconf-stock-icons.h:
	* src/gconf-stock-icons.c: Remove gconf-stock-about icon.
	* src/gconf-editor-window.c (gconf_editor_window_close_window,
	gconf_editor_window_copy_key_name, gconf_editor_window_add_bookmark,
	gconf_editor_window_edit_bookmarks, gconf_editor_window_new_window,
	help_cb, gconf_editor_window_about_window, 
	gconf_editor_popup_window_unset_key, gconf_editor_popup_window_new_key,
	gconf_editor_popup_window_edit_key, 
	gconf_editor_popup_window_set_as_default, list_view_button_press_event,
	gconf_editor_window_list_view_popup_position, 
	gconf_editor_window_list_view_popup_menu, 
	gconf_editor_window_set_have_tearoffs, 
	gconf_editor_window_set_item_has_icon, gconf_editor_window_finalize,
	gconf_editor_window_init):
	* src/gconf-editor-window.h: Replace use of item factory with ui 
	manager. Remove function 
	gconf_editor_window_item_factory_translate_func.
	* src/gconf-editor-window.c (gconf_editor_window_init):
	Put number of rows and columns in the correct order in gtk_table_new
	for the details area table. Remove shadow from details_frame and
	indent its contents to follow the HIG

2004-04-27  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Removed AC_SUBST CFLAGS, CPPFLAGS, LDFLAGS because
	autoconf does it automatically.

2004-04-23  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_new_window): Don't
	show all widgets in new window, because we have hidden ones.

2004-04-23  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: Translate "Contents" string added by
	Shakti patch.

2004-04-23  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c:
	(gconf_editor_window_update_list_selection),
	(gconf_editor_window_init):
	* src/gconf-editor-window.h: Show an alert when the key has no schema.
	Fixes #110745

2004-04-23  Mariano Suárez-Alvarez  <msuarezalvarez@arnet.com.ar>

	* src/gconf-bookmarks.c: (gconf_bookmarks_set_item_has_icon),
	(gconf_bookmarks_set_have_icons),
	(gconf_bookmarks_have_icons_notify),
	(gconf_bookmarks_hook_up_menu): Make menu icons follow
	menus_have_icons preference key.

2004-04-23  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_about_window): use
	gnome_about_window. (Fix #88279)

2004-04-23  Fernando Herrera  <fherrera@onirica.com>

	* xmldocs.make: added for build docs.
	* omf.make: added for build docs.

2004-04-23  Shakti Sen <shprasad@novell.com>

	* configure.in: Made changes to provide gnome libraries support.
	* src/main.c (main): Initialized the application with gnome_program_init
	* src/gconf-editor-window.c (help_cb): Added this function to provide
	Help support.
	* src/gconf-editor-application.h: <gnome.h> is included
	* docs/Makefile.am: Added the C subdirectory.
	* omf.make and xmldocs.make: Added to provide Help support.
 	Fixes #133052
 
2004-04-19  Richard Hult  <richard@imendio.com>

	* src/gconf-editor-window.c (gconf_editor_popup_window_edit_key):
	Fix crash when nothing is selected.
	(gconf_editor_window_edit_bookmarks): Fix warning.

2004-04-12  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: branched for gnome 2.7. Bump version number to 2.7.0

2004-04-12  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-key-editor.c: (gconf_key_editor_init): allow the notebook
	in the key editor to fill and expand. (Fix #138557)

2004-04-12  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_go_to): Check if
	location is a valid key/dir. Fix #136381

2004-04-12  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-cell-renderer.c:
	(gconf_cell_renderer_text_editing_done): Cast to gdouble for float
	keys in the cell editor. Fix bug #137468

2004-04-12  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-tree-model.c: (gconf_tree_model_free_node),
	(gconf_tree_model_clear_node), (gconf_tree_model_unref_node): Reverted
	wrong patch for #124662 . New unref code. Real Fix(tm) for 
	#124662 and #136631

2004-04-12  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c:
	(gconf_editor_window_selection_changed):
	* src/gconf-tree-model.c: (gconf_tree_model_build_level),
	(gconf_tree_model_iter_has_child):
	* src/gconf-tree-model.h: Reverted patch for #96744, because it
	introduced two worse bugs (#135807 and #136400)

2004-04-12  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Bump version to 2.6.1

2004-04-09  Guntupalli Karunakar  <karunakar@freedomink.org>

        * configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.

2004-04-05  Iñaki Larrañaga  <dooteo@euskalgnu.org>

	* configure.in:  Added "eu" (Basque) to ALL_LINGUAS.

2004-03-22  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.6.0

2004-03-20  Guntupalli Karunakar  <karunakar@freedomink.org>

        * configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.

2004-03-18  Gareth Owen  <gowen72@yahoo.com>

	* configure.in: Added en_GB to ALL_LINGUAS

2004-03-16  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.5.92

2004-03-06  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.5.91

2004-03-05  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-util.c:
	(gconf_client_get_schema_for_key): Retrieve the entry
	using gconf_engine API to get the schema name, beacuse
	getting it with gconf_client doesn't work (GConf bug #131011).
	So this Fixes #121813.

2004-02-21  Paisa Seeluangsawat  <paisa@users.sf.net>

	* configure.in: Added Thai (th) to ALL_LINGUAS.

2004-02-03  Anders Carlsson  <andersca@gnome.org>

	* configure.in: Release 2.5.4

2004-02-03 Sanjiv Agarwala <sagarwala@novell.com>
	* src/gconf-tree-model.c:(gconf_tree_model_unref_node):
	When unreffing the node, node->parent->children must be 
	assigned to node->children. Fix (#105884 and #124662)

2004-02-01  Robert Sedak  <robert.sedak@sk.htnet.hr>

        * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.

2004-01-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_copy_key_name):
	When copying keys, check if there is one selected on the list and
	if so, copy full path, otherwise, copy only the tree path. (Fix
	#132085)

2004-01-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c:
	(gconf_editor_window_update_list_selection): Update statusbar on key
	selection.

2004-01-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-tree-model.c: (gconf_tree_model_get_value): Check if
	node is NULL before getting value (Fix #128272)

2004-01-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-editor-window.c: (gconf_editor_window_about_window): 
	Unify copyright strings. Patch from Christian Neumair Fixes bug
	#101728

2004-01-21  Anders Carlsson  <andersca@gnome.org>

	* src/gconf-editor-window.c:
	(gconf_editor_window_selection_changed):
	* src/gconf-tree-model.c: (gconf_tree_model_get_gconf_escape_path),
	(gconf_tree_model_build_level), (gconf_tree_model_iter_has_child):
	* src/gconf-tree-model.h:
	Handle escaping of keys correctly.
	(#96744, fix by Hidetoshi Tajima).
	
2004-01-21  Fernando Herrera  <fherrera@onirica.com>

	* src/gconf-cell-renderer.h:
	* src/gconf-key-editor.h:
	* src/gconf-list-model.h:
	* src/gconf-tree-model.h: Removed final "," in enums and make AIX
	compiler happy

2003-12-11  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am:
	* configure.in:
	* docs/gconf-editor.1: added man page from Sebastien Bacher

2003-11-12  Anders Carlsson  <andersca@gnome.org>

	* configure.in: Release 2.5.1

2003-11-11  Sebastien Bacher  <seb128@debian.org>

	* src/gconf-editor-window.c: (gconf_editor_new_key_response),
	(gconf_editor_popup_window_edit_key):
	Commited patch to fix the crash with unset values 
	(Closes: 121084).

2003-10-28  Federico Mena Quintero  <federico@ximian.com>

	* src/gconf-editor-window.c (gconf_editor_window_test_expand_row):
	New callback, set the cursor to GDK_WATCH while we are figuring
	out the child nodes.
	(gconf_editor_window_row_expanded): New callback, reset the cursor
	to normal.
	(gconf_editor_window_init): Install signal handlers for the
	callbacks above.

2003-10-23 Mark Finlay <sisob@tuxfamilyDOTorg>

	* src/gconf-editor-window.c:

	Commiting Patch by Christophe Fergeau <teuf@gnome.org> 
	to make the tree items expand when double clicked.

2003-10-14  Ross Burton  <ross@burtonini.com>

	* src/gconf-key-editor.c:
	Added float support to the list editor, fixing a crash.

2003-10-06  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "mr" to ALL_LINGUAS.

2003-10-06  Arvind Samptur  <arvind.samptur@wipro.com>

	* src/Makefile.am: GtkItemFactory has been depricated
	Remove the GTK_DISABLE_DEPRECATED flag. Thanks to Anders for
	the right fix. Fix #123932

2003-09-06  Anders Carlsson  <andersca@gnome.org>

	* configure.in: Release 2.4.0

2003-09-05  Taneem Ahmed  <taneem@bengalinux.org>

	* configure.in: Added "bn" to ALL_LINGUAS.

2003-09-02  Gediminas Paulauskas  <menesis@delfi.lt>

	* configure.in: Added lt to ALL_LINGUAS.

2003-08-10  Anders Carlsson  <andersca@codefactory.se>

	* configure.in: Release 2.3.6

Wed Jul 23 14:43:43 2003  George Lebl <jirka@5z.com>

	* src/gconf-bookmarks.[ch], src/gconf-editor-window.c:
	  Don't allow changing bookmarks when the bookmarks key is not
	  writable

	* src/gconf-message-dialog.c: If the key for the show toggle
	  is not writable, don't even show the toggle

	* src/gconf-cell-renderer.[ch]: Fix signature of the changed signal
	  and add a "check_writable" signal which has a boolean return 
	  value and can be used to make the cell not writable.

	* src/gconf-key-editor.[ch]:  Add a non-writable label and show it
	  if the key is not writable, also in that case make the notebook
	  insensitive since we can't set the key.

	* src/gconf-editor-window.[ch]: Don't set a key if it's not writable,
	  fix crash when setting a key resulted in an error,  Also
	  set the key editor not to be writable and connect the
	  "check_writable" signal for the list items and check writability
	  there.  In the information pane add a non-writable label thing
	  and show that if the key is not writable.

	* src/gconf-marshal.[ch], src/gconf-marshal.list: the glib signal
	  marshaller generating stuff did some changes here.  I added
	  a BOOLEAN:STRING

2003-07-02  Jordi Mallach  <jordi@sindominio.net>

	* data/gconf-editor.desktop.in: Use "false" instead of "0" in Terminal
	entry.

2003-06-26  Anders Carlsson  <andersca@codefactory.se>

	* src/gconf-editor-window.c (gconf_editor_popup_window_edit_key): 
	Fix typo (reported by Dafydd Harries).

2003-06-24  Anders Carlsson  <andersca@codefactory.se>

	* src/gconf-cell-renderer.c: (gconf_cell_renderer_set_property),
	(gconf_cell_renderer_get_size), (gconf_cell_renderer_render):
	* src/gconf-list-model.c: (gconf_list_model_get_value):
	Add support for showing pairs. (#90729, Mathias Warkus)
	
2003-06-05  Mark McLoughlin  <mark@skynet.ie>

	* src/Makefile.am: remove -I$(includedir).
	Patch from Matt Keenan, matt.keenan@sun.com.

2003-06-05 Kenneth Rohde Christiansen <kenneth@gnu.org>

	* configure.in: Added li to ALL_LINGUAS.

2003-06-04  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: Added "sr@Latn" to ALL_LINGUAS.

2003-06-03  Anders Carlsson  <andersca@codefactory.se>

	* configure.in: Release 0.5.0

2003-05-26  Telsa Gwynne  <hobbit@aloss.ukuu.org.uk>

	* configure.in: Added "cy" to ALL_LINGUAS

2003-05-13  Ross Burton  <ross@burtonini.com>

	* src/gconf-editor-window.c: Implement Set As Default on arbitary
	keys. Requires that the user has write access to the defaults
	tree.

	* configure.in: Find the GConf defaults and mandatory
	configuration sources. Also comment the AC_DEFINEs.

	* acconfig.h: Remove, thanks to the commenting done above.
	
2003-05-08  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: Added "am" "mk" "nl" "tr" to ALL_LINGUAS.

2003-05-07  Richard Hult  <rhult@codefactory.se>

	* src/gconf-editor-window.c (gconf_editor_window_init),
	(gconf_editor_window_style_set): Set the bg color for the textview
	in a style_set callback instead of in _init to make it work with
	other themes than the default. Start out with the name column
	sorted for keys.

2003-05-07  Danilo Šegan  <dsegan@gmx.net>

	* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.

2003-03-18  Paul Duffy <dubhthach@zion.nuigalway.ie>

	* configure.in: Added "ga" to ALL_LINGUAS.

2003-03-13  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "ml" to ALL_LINGUAS.

2003-03-09  Pauli Virtanen  <pauli.virtanen@hut.fi>

	* configure.in: Added "fi" to ALL_LINGUAS.

2003-02-17  Roozbeh Pournader  <roozbeh@sharif.edu>

	* configure.in: Added "fa" to ALL_LINGUAS.

2003-02-14  Mark McLoughlin  <mark@skynet.ie>

	* src/gconf-editor-window.[ch]: (gconf_editor_window_go_to):
	Split this out from gconf-bookmarks.c.

	* src/gconf-bookmarks.c: (gconf_bookmarks_bookmark_activated):
	Upd.

	* src/gconf-tree-model.c:
	(gconf_tree_model_get_tree_path_from_gconf_path): Return the
	last matching element of the path - better than nothing if we
	don't have an exact match. Also, don't leak the strv.

	* src/main.c: (invalid_arg_error_dialog), (main): add support
	for passing in an initial GConf key as an argument.

2003-02-09  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "kn" to ALL_LINGUAS.

2003-02-06  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "id" to ALL_LINGUAS.

2003-01-26  Fatih Demir <kabalak@gtranslator.org>

	* configure.in: Added "ta" (Tamil) to the languages' list.

2003-01-21  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "mn" to ALL_LINGUAS.

2002-12-10  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c (gconf_editor_window_init): Don't use a white
	background in the long description view.

	* src/gconf-list-model.c (gconf_list_model_notify_func): Don't monitor
	keys we're not interested in.

	* data/gconf-editor.desktop.in: Turn on startup notification.

2002-12-09  Artis Trops  <hornet@navigator.lv>

	* configure.in: Added Latvian (lv) to ALL_LINGUAS.

2002-12-08  Daniel Elstner  <daniel.elstner@gmx.net>

	* src/gconf-editor-window.c (gconf_editor_window_set_have_tearoffs):
	Don't translate the item paths passed to gtk_item_factory_get_item().
	Apparently you aren't supposed to do so since GtkItemFactory takes
	care of the translation, and passing in a translated string causes
	the lookup to fail.
	(gconf_editor_window_set_have_icons): ditto.

2002-11-18  Fernando Herrera <fherrera@onirica.com>

	* data/gconf-editor.desktop.in: add X-GNOME-BUGZILLA stuff

2002-11-07  Jon K Hellan  <hellan@acm.org>

	* src/gconf-editor-window.c (gconf_editor_window_about_window):
	Make the about window a transient child of the main window, fixing
	bug 97918.

2002-11-05  Mark McLoughlin  <mark@skynet.ie>

	* configure.in: bump version to 0.4.0. It was
	0.2 which is less than what's on gnome-2-0 and
	I think 0.4.0 is what we agreed on ...

2002-11-03  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* configure.in: Added Belarusian to ALL_LINGUAS

2002-09-09  Mark McLoughlin  <mark@skynet.ie>

	* src/gconf-cell-renderer.c: (gconf_cell_renderer_set_property),
	(gconf_cell_renderer_get_size),
	(gconf_cell_renderer_text_editing_done),
	(gconf_cell_renderer_start_editing),
	(gconf_cell_renderer_activate), (gconf_cell_renderer_render):
	* src/gconf-list-model.c: (gconf_list_model_get_value):
	* src/gconf-tree-model.c: (gconf_tree_model_get_value):
	use break; in default switch cases to keep the AIX compiler
	happy. #91801.

2002-09-03  Marius Andreiana <mandreiana@yahoo.com>

	* configure.in: added 'ro' to ALL_LINGUAS

2002-08-23  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-bookmarks.c (gconf_bookmarks_bookmark_activated): 
	Fix scrolling correctly.

	* src/gconf-key-editor.c: (list_add_clicked):
	Fix focus issue.
	
	* src/main.c: (main):
	Use better wording for the caveat dialog.
	
2002-08-22  Shahms E. King <shahms@shahms.com> and
            Jan Arne Petersen <jpeterson@uni-bonn.de>

	* src/gconf-key-editor.c (gconf_key_editor_create_option_menu),
	(gconf_key_editor_get_value, gconf_key_editor_init): implement
	list item editing.
	(gconf_key_editor_list_entry_changed, list_type_menu_changed),
	(gconf_key_editor_create_list_type_menu, update_list_buttons),
	(list_selection_changed, list_add_clicked, list_remove_clicked),
	(list_go_up_clicked, list_go_down_clicked, fix_button_align): impl.

	* src/gconf-editor-window.c
	(gconf_editor_new_key_response): allow lists to be edited.

	Commit bug #76973 to stop other people re-implementing it.

2002-08-22  Michael Meeks  <michael@ximian.com>

	* src/gconf-key-editor.c (bool_button_toggled): 
	fix boolean accelerator; #90908

2002-08-22  Michael Meeks  <michael@ximian.com>

	* src/gconf-editor-window.c
	(gconf_editor_window_list_view_row_activated),
	(gconf_editor_window_init): make double click on a
	key do something useful #90909

2002-08-18  Havoc Pennington  <hp@pobox.com>

	* autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
	both automake 1.6 and 1.4 installed get the right automake. Means
	compilation from CVS will now require the latest automake 1.4
	release, or manually creating symlinks called "automake-1.4" and
	"aclocal-1.4"

2002-08-11  Ross Burton  <ross@burtonini.com>

	* data/gconf-editor.desktop.in: Add encoding keyword, and fix up
	Terminal and Categories keywords.

2002-08-11  Mark McLoughlin  <mark@skynet.ie>

	* src/gconf-key-editor.[ch]: Implement support
	for floating point values.

2002-08-07  Mark McLoughlin  <mark@skynet.ie>

	* data/icons/Makefile.am:
	* data/icons/about-logo.png: remove about logo.

	* src/gconf-editor-window.c:
	(gconf_editor_window_about_window): use the gconf
	editor logo as an about dialog picture.

2002-08-01  Mark McLoughlin  <mark@skynet.ie>

	Implement support for menus_have_icons too. #88569.

	* src/gconf-editor-window.c:
	(gconf_editor_window_set_item_has_icon),
	(gconf_editor_window_set_have_icons),
	(gconf_editor_window_have_icons_notify): impl.
	(gconf_editor_window_setup_ui_prefs_handler): rename
	from gconf_editor_window_setup_tearoffs_handler and
	add menus_have_icons handler.
	(gconf_editor_window_finalize): remove the gconf notify.
	(gconf_editor_window_init): update.

2002-07-31  Mark McLoughlin  <mark@skynet.ie>

	Implement support for tearoff menus and respecting
	/desktop/gnome/interface/menus_have_tearoff. #89347.

	* src/gconf-editor-window.[cf]:
	(gconf_editor_window_set_have_tearoffs): impl showing
	and hiding the tearoffs.
	(gconf_editor_window_have_tearoffs_notify): gconf notify
	handler.
	(gconf_editor_window_setup_tearoffs_handler): hook up the
	notify handler and get the initial value.
	(gconf_editor_window_finalize): unref the item factory and
	remove the notify.
	(gconf_editor_window_class_init): hook up finalize.
	(gconf_editor_window_init): setup the tearoffs handler.

2002-07-31  Mark McLoughlin  <mark@skynet.ie>

	* src/gconf-cell-renderer.c: (gconf_cell_renderer_start_editing):
	remove finish editing on focus out hack to be consistent with
	text cell renderer. Fixes #85516.

2002-07-31  Mark McLoughlin  <mark@skynet.ie>

	* src/gconf-editor-window.c: (gconf_editor_window_init):
	slightly modified version of a patch by Jan Arne Petersen
	(jpetersen@uni-bonn.de) to but the key documentation
	frame into a paned widget, allowing it to be resizable.
	Fixes #83573.

2002-07-31  Mark McLoughlin  <mark@skynet.ie>

	* src/gconf-list-model.c: (gconf_list_model_notify_func):
	keep model->length updated here. Fixes #89347.

	* src/gconf-editor-window.c:
	(gconf_editor_window_popup_error_dialog): implement.
	(gconf_editor_new_key_response): split this out and
	fix leak of the path. Correctly handle errors.
	(gconf_editor_popup_window_new_key): free the path and
	hook up the response handler.
	(gconf_editor_edit_key_response): split this out and use
	gconf_key_editor_get_key_name. Correctly handle errors.
	(gconf_editor_popup_window_edit_key): hook up the response
	handler and free the path.

	* src/gconf-key-editor.[ch]:
	(gconf_key_editor_get_key_name): add new method.
	(gconf_key_editor_get_full_key_path): kill debug. Remove
	unneeded function calls.

2002-07-30  Mark McLoughlin <mark@skynet.ie>

	* src/Makefile.am: apply patch from Toshi to
	get locale directory correct. #83643.

	* src/gconf-util.c: don't use c++ comment.

2002-07-28  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "sq" to ALL_LINGUAS.

2002-07-26  Gustavo Noronha Silva <kov@debian.org>

	* configure.in: (ALL_LINGUAS) Added Brazilian Portuguese (pt_BR).

2002-06-14  Yanko Kaneti <yaneti@declera.com>

	* configure.in: (ALL_LINGUAS) Added Bulgarian (bg).

2002-06-07  Jesus Bravo Alvarez  <jba@pobox.com>

	* configure.in: Added gl (Galician) to ALL_LINGUAS.

2002-06-02  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added Catalan (ca) to ALL_LINGUAS.

2002-05-24  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c: (gconf_editor_window_about_window):
	Set the window icon, as suggested by Mikael and Glynn.
	
2002-05-20  Anders Carlsson  <andersca@gnu.org>

	* configure.in: 0.2

	* autogen.sh: Get rid of the gnome-common dependancy. Woo!

	* src/gconf-editor-window.c: (strip_whitespace),
	(set_label_and_strip_whitespace),
	(gconf_editor_window_update_list_selection),
	(gconf_editor_window_init):
	* src/gconf-editor-window.h:
	Add Owner from the schema and remove leading whitespace from
	the long and short desc.
	
2002-05-20  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-bookmarks-dialog.c: (gconf_bookmarks_dialog_destroy),
	(gconf_bookmarks_dialog_class_init),
	(gconf_bookmarks_dialog_populate_model),
	(gconf_bookmarks_dialog_update_gconf_key),
	(gconf_bookmarks_dialog_row_deleted),
	(gconf_bookmarks_dialog_delete_bookmark),
	(gconf_bookmarks_dialog_bookmarks_key_changed),
	(gconf_bookmarks_dialog_init):
	* src/gconf-bookmarks-dialog.h:
	Make the bookmarks dialog catch notification messages.
	
2002-05-20  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c: (gconf_editor_popup_window_edit_key):
	Add a NULL check. Fixes #74533. 
	
2002-05-20  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c:
	(gconf_editor_window_update_list_selection):
	Tolerate NULL short and long descriptions.

2002-05-20  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c:
	(gconf_editor_window_list_view_popup_menu), (strip_whitespace),
	(gconf_editor_window_update_list_selection),
	(gconf_editor_window_init):
	* src/gconf-editor-window.h:
	* src/gconf-tree-model.c:
	(gconf_tree_model_get_tree_path_from_gconf_path):
	* src/gconf-util.c: (gconf_client_get_schema_for_key):
	* src/gconf-util.h:
	Integrate a patch from Erwann Chenede that adds key doc
	support, using the descriptions stored in the schemas.
	
2002-05-12  Christophe Merlet  <christophe@merlet.net>

	* src/gconf-editor-window.c: Mark a string translatable.

2001-05-10  Naba Kumar  <kh_naba@users.sourceforge.net>

	* configure.in: Added "hi" to ALL_LINGUAS.

2002-05-01  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: Added "zh_TW" to ALL_LINGUAS.

2002-04-27  Simos Xenitellis  <simos@hellug.gr>

	* configure.in: Added "el" to ALL_LINGUAS.

Fri Apr 26 11:29:48 2002  Kristian Rietveld  <kris@gtk.org>

	* src/gconf-list-model.c (gconf_list_model_notify_func): ignore the
	notify if the key given is a directory, and fix the list handling,	
	which created looping lists :)

2002-04-25  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added "vi" to ALL_LINGUAS.

Sat Apr 13 13:54:49 2002  Kristian Rietveld  <kris@gtk.org>

	* src/gconf-editor-window.c (gconf_editor_window_selection_change):
	just set the title to "GConf editor" if there isn't a node selected.

2002-03-29  Christophe Merlet  <christophe@merlet.net>

	* configure.in: Added fr to ALL_LINGUAS.

2002-03-28  Changwoo Ryu  <cwryu@debian.org>

	* configure.in: Added ko to ALL_LINGUAS.

2002-03-25  Wang Jian   <lark@linux.net.cn>

	* configure.in: Added "zh_CN" to ALL_LINGUAS.

2002-03-17  Tõivo Leedjärv  <toivo@linux.ee>

	* configure.in: Added et to ALL_LINGUAS.

2002-03-16  Szabolcs Ban <shooby@gnome.hu>

	* configure.in: Added "hu" to ALL_LINGUAS.

2002-03-11  Richard Hult  <rhult@codefactory.se>

	* src/gconf-editor-window.c (gconf_editor_window_init): Expand the
	children immediately below the root.

2002-03-05  Carlos Perello Marin <carlos@gnome-db.org>

	* configure.in: Added "es" to ALL_LINGUAS.

2002-03-02  Ole Laursen  <olau@hardworking.dk>

	* configure.in: Added da (Danish) to ALL_LINGUAS.

2002-03-02  Yuriy Syrota  <yuri@renome.rovno.ua>

	* configure.in: Added uk (Ukrainian) into ALL_LINGUAS.

2002-03-01  Zbigniew Chyla  <cyba@gnome.pl>

	* configure.in (ALL_LINGUAS): Added pl (Polish).

2002-02-25  Seth Nickell  <snickell@stanford.edu>

	* data/gconf-editor.desktop.in:

	Add a comment in verb form.

2002-02-22  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

	* configure.in:  Added "sk" to ALL_LINGUAS.

2002-02-18  Takayuki KUSANO  <AE5T-KSN@asahi-net.or.jp>

	* configure.in: Added "ja" to ALL_LINGUAS.

2002-02-13  Duarte Loreto <happyguy_pt@hotmail.com>

        * configure.in: Added pt (Portuguese) to ALL_LINGUAS

2002-02-13  Kjartan Maraas  <kmaraas@gnome.org>

	* src/gconf-message-dialog.c: #include <config.h>
	* src/gconf-key-editor.c: Same here.
	
2002-02-11  Anders Carlsson  <andersca@gnu.org>

       * Released version 0.1
	
2002-02-11  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c (gconf_editor_window_selection_changed): 
	Use correct cast to GTK_TREE_MODEL_SORT.

	* src/gconf-bookmarks.c (gconf_bookmarks_bookmark_activated): Use
	sort model path when expanding nodes.
	(gconf_bookmarks_bookmark_activated): Use correct cast.

	* src/gconf-editor-window.c (menu_items): Comment out the edit
	bookmarks menu item.
	(gconf_editor_popup_window_edit_key): Show a warning dialog
	if we can't edit the value.

	* src/gconf-cell-renderer.c (gconf_cell_renderer_get_size): 
	use gconf_value_to_string for lists.
	(gconf_cell_renderer_render): Likewise.

Sat Feb  9 23:04:19 2002  Kristian Rietveld  <kris@gtk.org>

	* src/gconf-editor-window.c (gconf_editor_window_copy_key_name),
	(gconf_editor_window_add_bookmark),
	(gconf_editor_popup_window_new_key),
	(gconf_editor_window_selection_changed): convert modelsort iter
	to gconftreemodel iter
	(gconf_editor_window_init): put the treemodel in a modelsort

	* src/gconf-editor-window.h: add sorted_tree_model member

	* src/gconf-tree-model.c (gconf_tree_model_build_level): new
	function
	(gconf_tree_model_iter_nth_child): build level if it isn't there
	(gconf_tree_model_iter_children): use gconf_tree_model_build_level
	(gconf_tree_model_iter_n_children): new function, was missing
	(gconf_tree_model_iter_parent): set stamp on the iter we return

2002-01-31  jacob berkman  <jacob@ximian.com>

	* data/icons/Makefile.am (EXTRA_DIST): fix typo

2002-01-30  Hasbullah Bin Pit <sebol@ikhlas.com>

	* configure.in: Added Malay (ms)to ALL_LINGUAS.
	* po/ms.po: Added Malay Translation.

2002-01-30  Johan Dahlin  <jdahlin@telia.com>

	* src/gconf-key-editor.c (gconf_key_editor_init): Make 3 more
	strings translatable.

2002-01-20  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c: 
	(gconf_editor_window_copy_key_name): Implement copy key name.
	
	(gconf_editor_popup_window_new_key),
	(gconf_editor_popup_window_edit_key): Remove debugging msgs.
	
2002-01-20  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-bookmarks.c (gconf_bookmarks_hook_up_menu): Doh,
	switch argument order for g_object_set_data_full.

	* src/Makefile.am (INCLUDES): Add -DIMAGEDIR.

	* src/gconf-editor-window.c (gconf_editor_window_init): 
	Set appicon.

	* data/gconf-editor.desktop.in:
	Use the correct icon. Also, move program to System.
	
	* data/icons/Makefile.am:
	Install icon.
	
	* data/icons/gconf-editor.png:
	New application icon.
	
	* src/gconf-bookmarks.c: (gconf_bookmarks_update_menu),
	(gconf_bookmarks_key_changed), (gconf_bookmarks_add_bookmark),
	(remove_notify_id), (gconf_bookmarks_hook_up_menu):
	Add support for bookmark change notifications.
	
Tue Jan 15 23:13:44 2002  Kristian Rietveld  <kris@gtk.org>

	* src/gconf-list-model.c (gconf_list_model_set_root_path): duh! put
	iter.user_data (new slist address) in the hash and not list (some
	local list). Side effect of late night coding. Also fix some (usual :)
	line ends here

Tue Jan 15 01:16:23 2002  Kristian Rietveld  <kris@gtk.org>

	* src/gconf-editor-window.c (gconf_editor_popup_window_unset_key),
	(gconf_editor_popup_window_edit_key),
	(gconf_editor_gconf_value_changed),
	(gconf_editor_window_init): wrap list_model in sorted_list_model,
	so we can sort the 'key list'

	* src/gconf-editor-window.h: add sorted_list_model

	* src/gconf-list-model.c (gconf_list_model_notify_func): increase
	stamp before emitting signal,
	(gconf_list_model_set_root_path): increase stamp before row_deleted
	emission, rewrote loop to add one item each time, so models (like
	(GtkTreeModelSort ...) won't be confused
	(gconf_list_model_get_flags): add,
	(gconf_list_model_iter_n_children): add,
	(gconf_list_model_tree_model_init): add newly implemented methods
	to interface

	* src/gconf-tree-model.c
	(gconf_tree_model_get_tree_path_from_gconf_path): special case root
	node

Mon Jan 14 20:10:43 2002  Kristian Rietveld  <kris@gtk.org>

	* src/gconf-bookmarks.c (gconf_bookmarks_bookmark_activated): our
	own recursive row collapse code, the treeview thing seem to be
	meant for other things, scroll to the cell and various line end
	cleanups,
	src/gconf-tree-model.c
	(gconf_tree_model_get_tree_path_from_gconf_path): set iter before
	starting a new iteration of the loop, so we actually end up in the
	new level, added a FIXME, some line end cleanups,
	(gconf_tree_model_iter_children): finish row inserted notification

2002-01-13  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c: (gconf_editor_window_close_window),
	(gconf_editor_popup_window_edit_key):
	* src/gconf-message-dialog.c: (gconf_message_dialog_should_show),
	(gconf_message_dialog_button_toggled):
	* src/gconf-tree-model.c: (gconf_tree_model_iter_nth_child),
	(gconf_tree_model_unref_node):
	Various things.
	
Mon Jan 14 00:43:23 2002  Kristian Rietveld  <kris@gtk.org>

	* src/gconf-tree-model.c (struct _Node): add an offset field,
	fix open line ends,
	(gconf_tree_model_iter_nth_child): we want the nth child of a level,
	while the node stored in the parent iter doesn't have to be the
	_root_ of the level so it went wrong there. This offset thing will
	fix. Also set iter->stamp = 0 for invalid iters.
	(gconf_tree_model_iter_children), (gconf_tree_model_init): set
	offset

Sun Jan 13 23:57:06 2002  Kristian Rietveld  <kris@gtk.org>

	* src/gconf-message-dialog.c (gconf_message_dialog_should_show),
	(gconf_message_dialog_button_toggled): changed the logic behind
	the caveat dialog settings and made it work

2002-01-13  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-key-editor.c: (gconf_key_editor_set_value):
	* src/gconf-list-model.c: (gconf_list_model_set_root_path),
	(gconf_list_model_finalize), (gconf_list_model_class_init),
	(gconf_list_model_init):
	* src/gconf-message-dialog.c: (gconf_message_dialog_should_show):
	* src/gconf-message-dialog.h:
	* src/gconf-tree-model.c: (gconf_tree_model_iter_children),
	(gconf_tree_model_ref_node), (gconf_tree_model_unref_node),
	(gconf_tree_model_tree_model_init), (gconf_tree_model_init):
	* src/main.c: (main):
	Plug some memory leaks and add a caveat dialog.
	
2002-01-13  Anders Carlsson  <andersca@gnu.org>

	* src/Makefile.am:
	* src/gconf-editor-window.c:
	(gconf_editor_window_item_factory_translate_func),
	(gconf_editor_window_about_window),
	(gconf_editor_window_popup_error_dialog),
	(gconf_editor_popup_window_unset_key),
	(gconf_editor_popup_window_new_key),
	(gconf_editor_popup_window_edit_key),
	(list_view_button_press_event), (gconf_editor_window_init):
	* src/gconf-editor-window.h:
	* src/gconf-key-editor.c: (gconf_key_editor_init),
	(gconf_key_editor_new), (gconf_key_editor_set_value),
	(gconf_key_editor_set_key_path), (gconf_key_editor_set_key_name),
	(gconf_key_editor_get_full_key_path):
	* src/gconf-key-editor.h:
	* src/gconf-list-model.c: (gconf_list_model_notify_func):
	* src/main.c: (main):
	Added support for editing keys, adding new keys, and unsetting keys.
	
2002-01-13  Anders Carlsson  <andersca@gnu.org>

	* configure.in:
	* data/Makefile.am:
	* data/gconf-editor.desktop.in:
	Add .desktop file and intltool support.
	
2002-01-12  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added "no" to ALL_LINGUAS.
	
2002-01-10  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-application.c: Only include gtkmain.h

	* src/gconf-list-model.c (gconf_list_model_get_value): 
	Don't switch on NULL value.

Thu Jan 10 11:30:00 2002  Owen Taylor  <otaylor@redhat.com>

	* data/Makefile.am (SUBDIRS): Add missing Makefile.am.

2002-01-10  Anders Carlsson  <andersca@gnu.org>

	* Makefile.am:
	* configure.in:
	* data/icons/Makefile.am:
	* data/icons/about-logo.png:
	* data/icons/entry-blank.png:
	* data/icons/entry-bool.png:
	* data/icons/entry-list.png:
	* data/icons/entry-number.png:
	* data/icons/entry-schema.png:
	* data/icons/entry-string.png:
	* data/icons/folder-closed.png:
	* data/icons/folder-open.png:
	* data/icons/stock-about-16.png:
	* src/Makefile.am:
	* src/dir-closed.png:
	* src/dir-open.png:
	* src/file.png:
	* src/gconf-cell-renderer.c: (gconf_cell_renderer_set_property):
	* src/gconf-editor-window.c: (gconf_editor_window_about_window):
	* src/gconf-list-model.c: (gconf_list_model_get_value),
	(gconf_list_model_class_init):
	* src/gconf-marshal.c: (gconf_marshal_VOID__STRING_BOXED):
	* src/gconf-marshal.h:
	* src/gconf-stock-icons.c: (create_icon_set_from_filename),
	(gconf_stock_icons_register):
	* src/gconf-stock-icons.h:
	* src/gconf-tree-model.c: (gconf_tree_model_get_value),
	(gconf_tree_model_class_init):
	* src/main.c: (main):
	Lots of changes. add about stock icon, check in the marshallers and rebuild
	them by hand instead. Add different icons for different gconf types. 
	
2002-01-10  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-editor-window.c (gconf_editor_window_about_window): Split
	the translatable strings out of the markup string.
	(gconf_editor_window_about_window): Split out the Copyright string too.

Wed Jan  9 15:05:35 2002  Owen Taylor  <otaylor@redhat.com>

	* src/gconf-cell-renderer.c (gconf_cell_renderer_set_property):
	A few further fixups.

Wed Jan  9 14:57:30 2002  Owen Taylor  <otaylor@redhat.com>

	* src/gconf-cell-renderer.c (gconf_cell_renderer_set_property): 
	Set the mode here.

	* src/gconf-editor-window.c (list_view_button_press_event): 
	Remove the completely unworkable "set cell renderer
	mode in the button press handler code".

	* src/gconf-editor-window.c: Use gtk_tree_model_get() to simplify
	a couple of places.

Wed Jan  9 12:37:21 2002  Owen Taylor  <otaylor@redhat.com>

	* src/gconf-cell-renderer.c: There is no guarantee at
	all that the properties of the cell renderer will be
	pointing to the right cell when ::editing-done occurs.
	Save cellvalue->value in object data separately.

Wed Jan  9 12:21:22 2002  Owen Taylor  <otaylor@redhat.com>

	* src/gconf-tree-model.c (gconf_tree_model_get_iter): 
	fix 'model = (GConfTreeModel *)model'

	* src/gconf-key-editor.c: Include gtkmenuitem.h, remove
	unused variables.

	* src/gconf-editor-application.c: Include <gtk/gtk.h>,
	since we need gtk_main_quit().

	* configure.in: Add magic for setting -Wall for GCC;
	remove AC_ISC_POSIX, which isn't what you think it is...

Wed Jan  9 11:51:01 2002  Owen Taylor  <otaylor@redhat.com>

	* src/gconf-editor-window.c: Remove libgnome includes
	so it compiles again.

2002-01-08  Josh Barrow  <drleary@mac.com>

	* src/gconf-editor-window.c: (gconf_editor_window_about_window):
	Make the code just a tiny bit cleaner

2002-01-08  Josh Barrow  <drleary@mac.com>

	* configure.in:
	* src/gconf-editor-window.c: (gconf_editor_window_about_window):
	Removed the dependency on libgnomeui just for an about box.

2002-01-05  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "az" to ALL_LINGUAS.

2002-01-05  Anders Carlsson  <andersca@gnu.org>

	* src/gconf-key-editor.c: Some minor tweaks, add
	a value label for all types.

	* src/gconf-message-dialog.h: Add.

	* src/gconf-message-dialog.c: Add.

2002-01-05  Havoc Pennington  <hp@pobox.com>

	* src/gconf-key-editor.c: get it mildly closer to being useful

	* src/gconf-cell-renderer.c (gconf_cell_renderer_get_size): handle
	schemas
	(gconf_cell_renderer_render): handle schemas

2001-12-28  Josh Barrow  <drleary@mac.com>

	* src/Makefile.am:
	* src/gconf-cell-renderer.c: (gconf_cell_renderer_class_init):
	* src/gconf-key-editor.c: (gconf_key_editor_create_option_menu),
	(gconf_key_editor_init):
	Make to compile with G_DISABLE_DEPRECATED and GTK_DISABLE_DEPRECATED.

2001-12-28  Josh Barrow  <drleary@mac.com>

	* .cvsignore:
	* src/.cvsignore:
	Make it not gripe when updating.

2001-12-19  Anders Carlsson  <andersca@gnu.org>

	* gconf-editor-window.c: i18n stuff.

	* Makefile.am (SUBDIRS): Add po

	* configure.in: Add i18n support.

2001-12-14  Josh Barrow  <drleary@mac.com>

	* configure.in: Added dependency to libgnomeui-2.0
	* src/gconf-editor-window.c: (gconf_editor_window_about_window):
	Added an about box.

2001-12-10  Anders Carlsson  <andersca@gnu.org>

	* Initial checkin.