summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: d52eed18c463b864427209940466b0f15a9f1a77 (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
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
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2001-05-31  Marius Andreiana  <mandreiana@yahoo.com>

	* capplets/screensaver-properties/callbacks.c,
	capplets/screensaver-properties/callbacks.h,
	capplets/screensaver-properties/screensaver-properties-capplet.c:
	added Preview button for all screensavers
	* capplets/theme-switcher/gui.c: theme selector capplet sorts 
	themes case-insensitively now (bug #13539)
	
2001-04-22  Jason Leach  <jasonleach@usa.net>

	* configure.in: Correct a typo.

2001-03-28  Dan Mueth  <dan@eazel.com>

	Fixing every capplet in control-center, since none of them
	actually used the ghelp URL handler as they should - instead
	they were pulling up help as a normal URL ie. in Netscape.
	Now they should load in the ghelp handler.
	It is cute how almost every one has a different help callback 
	function name, although the contents are pretty much identical.

	* capplets/background-properties/property-background.c:
	(background_help):
	* capplets/bell-properties/bell-properties.c: (bell_help):
	* capplets/file-types/file-types-capplet.c: (help_callback),
	(init_mime_capplet):
	* capplets/gnome-edit-properties/gnome-edit-properties.c:
	(edit_help):
	* capplets/keyboard-properties/keyboard-properties.c:
	(keyboard_help):
	* capplets/mouse-properties/mouse-properties.c: (mouse_help):
	* capplets/screensaver-properties/callbacks.c: (help_callback):
	* capplets/session-properties/session-properties.c: (help):
	* capplets/sound-properties/sound-properties.c: (ui_do_help):
	* capplets/theme-switcher/gui.c: (click_help):
	* capplets/ui-properties/ui-properties.c: (help):
	* capplets/url-properties/url-properties.c: (url_capplet_help):
	* capplets/wm-properties/wm-properties-capplet.c: (help_callback):

2001-03-27  Dan Mueth  <dan@eazel.com>

	Fixed screenshot links.

	* doc/C/control-center.sgml:

2001-03-27  Dan Mueth  <dan@eazel.com>

	We moved a few files around to make things work properly with
	the help system, including the OMF/SK stuff.  I have also 
	done some more work with SK integration.

	* Makefile.am:
	* doc/C/Makefile.am:
	* doc/C/control-center-C.omf:
	* doc/C/figs/bg-capplet.png:
	* doc/C/figs/gccalf.png:
	* doc/C/figs/gccappdef.png:
	* doc/C/figs/gccdialog.png:
	* doc/C/figs/gccedit.png:
	* doc/C/figs/gcchints.png:
	* doc/C/figs/gccmdi.png:
	* doc/C/figs/gccmime.png:
	* doc/C/figs/gccsession-props.png:
	* doc/C/figs/gccsessopt.png:
	* doc/C/figs/gccsound1.png:
	* doc/C/figs/gccsound2.png:
	* doc/C/figs/gccstartup.png:
	* doc/C/figs/gccurl.png:
	* doc/C/figs/glob_pref_anim.png:
	* doc/C/figs/keyboard-capplet.png:
	* doc/C/figs/mouse-capplet.png:
	* doc/C/figs/screensave-capplet.png:
	* doc/C/figs/theme-select.png:
	* doc/C/figs/wm-add.png:
	* doc/C/figs/wm-main.png:
	* doc/C/gnomecc-C.omf:
	* doc/C/gnomecc.sgml:
	* omf-install/Makefile.am:

2001-03-26  Darin Adler  <darin@eazel.com>

	* omf-install/.cvsignore: Oops, missed something.

2001-03-23  Darin Adler  <darin@eazel.com>

	* omf-install/.cvsignore: One other little thing to ignore.

2001-03-23  Darin Adler  <darin@eazel.com>

	* doc/C/Makefile.am: Fix typo to fix build.

	* .cvsignore: Ignore some generated files.
	* doc/C/.cvsignore: Ignore some generated files.

	* capplets/sound-properties/sound-properties.desktop: Remove this
	generated file from cvs. I think someone put some translations
	here instead of putting them in the po file and then checked it in.

2001-03-22 John Fleck <jfleck@swcp.com>

	* adding omf/ScrollKeeper support, updating appropriate makefiles,
	fixing bug in gnomecc.sgml
	add omf-install/Makefile.am, sgmldocs.make
	updated doc/C/Makefile.am, configure.in, gnomecc.sgml

2001-03-12  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* capplets/screensaver-properties/screensaver-desktops/*.desktop.in:
	  manually fixed some errors still there
	* configure.in: synched ALL_LINGUAS to show the list of available
	  languages

2001-03-11  Martin Norbäck  <d95mback@dtek.chalmers.se>

	* capplets/screensaver-properties/screensaver-desktops/Coral.desktop.in,
	capplets/screensaver-properties/screensaver-desktops/Epicycle.desktop.in:
	changed three descriptions which was in Bulgarian or something...

2001-03-11  Martin Norbäck  <d95mback@dtek.chalmers.se>

	* capplets/screensaver-properties/screensaver-desktops/*.desktop.in
	  capplets/screensaver-properties/screensaver-desktops/Makefile.am:
	fixed the recently introduced xml-i18n-tools problem.
	Hopefully all keywords are marked properly and all translations
	properly added to respective po files.

2001-03-10  Maciej Stachowiak  <mjs@eazel.com>

	* configure.in: Update to 1.3.90

2001-03-09  Christophe Merlet  <redfox@eikonex.org>

	* capplets/screensaver-properties/screensaver-desktops/Coral.desktop.in,
	capplets/screensaver-properties/screensaver-desktops/Coral.desktop.in:
	Removed \r escape sequence.

2001-03-09  Maciej Stachowiak  <mjs@eazel.com>

	* po/POTFILES.in: Remove .desktop.in files for .desktop files that
	are not installed or distributed.

2001-03-09  Maciej Stachowiak  <mjs@eazel.com>

	* capplets/gnome-edit-properties/Makefile.am,
	capplets/keyboard-properties/Makefile.am,
	capplets/mouse-properties/Makefile.am,
	capplets/sound-properties/Makefile.am,
	capplets/theme-switcher/Makefile.am,
	capplets/url-properties/Makefile.am: Fix distcheck lossage.

2001-03-09  Maciej Stachowiak  <mjs@eazel.com>

	xml-i18n-toolized everything. Bye bye .desktop and .directory
	files, hello .desktop.in and .directory.in files. Updated
	Makefile.am's as needed and POTFILES.in, as well as all po files.

	* *.desktop --> *.desktop.in
	* *.directory --> *.directory.in
	
	* All Makefile.am: Fix to generate .directory from .directory.in
	and .desktop from .desktop.in.
	
	* po/POTFILES.in: Added all the new .in files.

	* po/*.po: Translations pulled from .desktop files should be added.
	
2001-03-08  Christophe Merlet  <redfox@eikonex.org>

	* capplets/*/*.desktop: Updated and added French translations..

2001-03-07  Maciej Stachowiak  <mjs@eazel.com>

	* control-center.spec.in: Don't list stuff twice.

2001-03-07  Maciej Stachowiak  <mjs@eazel.com>

	* Makefile.am: Add xml-i18n-tools stuff to EXTRA_DIST.

2001-03-07  Maciej Stachowiak  <mjs@eazel.com>

	* po/POTFILES.in: Fix again.

2001-03-07  Maciej Stachowiak  <mjs@eazel.com>

	* po/POTFILES.in: Fix.

2001-03-07  Maciej Stachowiak  <mjs@eazel.com>

	* configure.in: Fix gnome-vfs version check to make tinderbox
	happy.

2001-03-07  Maciej Stachowiak  <mjs@eazel.com>

	Part of the fix for bugzilla.eazel.com bug 588 (Remove old "MIME
	types" capplet from control center)

	* autogen.sh: xml-i18n-toolize
	* configure.in: Check for gnome-vfs, generate Makefiles for capplet/file-types
	* control-center.spec.in: Depend on gnome-vfs, newer ORBit.

	* capplets/Makefile.am: Add file-types capplet to build, remove
	mime-type capplet.
	
	* capplets/file-types/Makefile.am,
	capplets/file-types/file-types-capplet-dialogs.c,
	capplets/file-types/file-types-capplet.c,
	capplets/file-types/file-types-icon-entry.c,
	capplets/file-types/file-types-capplet-dialogs.h,
	capplets/file-types/file-types-capplet.h,
	capplets/file-types/file-types-icon-entry.h: New MIME capplet
	moved here from gnome-vfs.

	* capplets/mime-type/*: removed.

	* po/POTFILES.in: Removed old mime-type capplet files, added
	file-types capplet files.

2001-02-22  Gene Z. Ragan  <gzr@eazel.com>

	reviewed by: Jacob Berkman <jacob@ximian.com>
	
	Added a new interface so that capplets that do direct manipulation
	of parameters can work in the control center environment.  Without
	this interface, the control-center assumes that changes made
	are lost when the control-center is closed.  The control center
	also enables the Try and Revert button which do not apply
	to an immediate change capplet that has no rollback state.
	
	* idl/control-center.idl:
	Add new changes_are_imediate interface

	* control-center/capplet-widget-libs.c: (do_quit),
	(capplet_corba_gtk_main_quit),
	(capplet_corba_changes_are_immediate), (capplet_widget_corba_init):
	New interface implementation.
	
	* control-center/capplet-widget-libs.h:
	* control-center/capplet-widget.c:
	* control-center/capplet-widget.h:
	(capplet_widget_init),
	(capplet_widget_changes_are_immediate):
	New interface implementation.
	
	* control-center/corba-glue.c: (server_state_changed),
	(server_changes_are_immediate):
	New interface implementation.
	
2001-02-05  Simos Xenitellis  <simos@hellug.gr>

	* */*/*.desktop, */*/*.directory: Added Greek
	translations.

2001-1-16  Mike Engber  <engber@eazel.com> 

	* capplets/background-properties/render-background.c: We were
	leaking x-server memory. The test before the call to XKillClient,
	nitems == 4, always failed. It should have been nitems == 1. Also,
	we now free the ptr returned by XGetWindowProperty whenever it's
	not NULL - previously we were never freeing it because of the
	aforementioned problem, but in general, it needs to always be
	freed. Also, we now examine the return value from XGetWindowProperty
	before using its results.

Wed Jan 03 04:15:04 2001  George Lebl <jirka@5z.com>

	* capplets/background-properties/render-background.c: Do what the
	  comment says and create a new display connection.  Otherwise all
	  resources get leaked to the root, and not just the root pixmap
	  as intended.  Imlib pixmap cache should make leaking all resources
	  even a more memorable experience.

2000-11-23  Stanislav Brabec  <utx@penguin.cz> 

	* */*/*.desktop, */*/*.directory: Remove trailing dot in english
	strings containing menu name or tooltip (discussed in gnome-i18n
	list). Updated cs.

2000-11-21  Bradford Hovinen  <hovinen@helixcode.com>

	Courtesy of Flavio Bruno Leitner <flavio@conectiva.com>:
	* capplets/desktop-links/*.desktop:
	* capplets/screensaver-properties/screensaver-properties.desktop:
	* capplets/screensaver-properties/screensaver-desktops/screensaver-properties.desktop:
	Add Brazilian Portugese translations to desktop files

2000-11-08  Eskil Heyn Olsen  <eskil@eazel.com>

	* capplets/background-properties/app-background.c:
	* capplets/gnome-edit-properties/gnome-edit-properties.c:
	* capplets/keyboard-properties/keyboard-properties.c:
	* capplets/mime-type/mime-type-capplet.c:
	* capplets/mouse-properties/mouse-properties.c:
	* capplets/screensaver-properties/screensaver-properties-capplet.c:
	* capplets/session-properties/session-properties.c:
	* capplets/sound-properties/sound-properties.c:
	* capplets/theme-switcher/main.c:
	* capplets/ui-properties/ui-properties.c:
	* capplets/url-properties/url-properties.c:
	* capplets/wm-properties/wm-properties-capplet.c:
	#include <locale.h> for setlocale

2000-11-08  Robert Brady  <robert@suse.co.uk>

	* capplets/screensaver-properties/screensaver-desktops: *.desktop
	Added some Bulgarian translations from Dilian Palauzov 
	<dido@bulgaria.com>

2000-11-04  Bradford Hovinen  <hovinen@helixcode.com>

	* capplets/screensaver-properties/parser.c (write_field):
	Include break statement after default label to keep Digital Unix
	cc happy

2000-11-02  Yukihiro Nakai  <nakai@gnome.gr.jp>

	* configure.in: Add Slovak(sk) to ALL_LINGUAS.

2000-10-21  Bradford Hovinen  <hovinen@helixcode.com>

	* capplets/background-properties/render-background.c
	(set_root_pixmap): Delete ESETROOT_PMAP_ID and _XROOTPMAP_ID
	properties when pixmap is NULL, rather than changing to integer 0

2000-10-20  Christian Marillat  <marillat@debian.org>
 
 	* capplets/*: Add setlocale() call for all capplets.

2000-10-14  Bradford Hovinen  <hovinen@helixcode.com>

	* capplets/background-properties/render-background.c 
	(set_root_pixmap): Set ESETROOT_PMAP_ID and _XROOTPMAP_ID to
	integer 0 if the pixmap passed was NULL

2000-10-06  Bradford Hovinen  <hovinen@helixcode.com>

	* capplets/background-properties/property-background.c
	(fill_monitor): Set the root pixmap to NULL when optimizing for
 	the no wallpaper case

	* capplets/mime-type/mime-type-capplet.c (help_callback): Remove
 	reference to GNOME User's Guide, replace with Control Center
 	Documentation

	From Mike Engber <engber@eazel.com>:
	(background_try):
	(background_cancel):
	(background_revert):
	(background_ok): Write settings before applying
	(fill_monitor): Set last argument on make_background to FALSE if
	there is no image

2000-09-11  Bradford Hovinen  <hovinen@helixcode.com>

	* configure.in: Bump version to 1.2.2

Sun Aug 13 19:55:20 2000  Owen Taylor  <otaylor@redhat.com>

	* capplets/background-properties/render-background.[ch]:
	Fix problems with color matching for solid colors.

Mon Aug  7 14:11:16 2000  Owen Taylor  <otaylor@redhat.com>

	* capplets/background-properties/render-background.c: Fix
	problems with backgrounds bigger than the screen.

2000-08-11  Bradford Hovinen  <hovinen@helixcode.com>

	* capplets/mime-type/mime-info.c (write_mime_foreach): Check if
	context is NULL before using it

Tue Aug  8 10:11:40 2000  Bradford Hovinen  <hovinen@helixcode.com>

	* capplets/keyboard-properties/keyboard-properties.c (keyboard_read):
	(keyboard_apply): Make sure XFree86 keyboard extension is present
	before using it to read and apply settings

Sat Aug  5 16:24:33 2000  Owen Taylor  <otaylor@redhat.com>

	* configure.in capplets/theme-selector/lister.c: Fix portability
	problems with use of getline on non-glibc with a simple
	portable version.

2000-08-04  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added "sl" to ALL_LINGUAS.
	
2000-08-01  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: version upped in preperation for release.
	
	* capplets/background-properties: Patch from Owen Taylor to add
	embossing-logo support to backgrounds.  It's pretty neat.

	* control-center/callbacks.c: Use the right help file
	
	* doc/C/*: Update the docs.  Now the dist actually installs the
	HTML files instead of the sgml files.

	* capplets/theme-selector/*: Massize cleanup of ugly code. (TM)

2000-07-20  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/callbacks.c: fix bug where
	changing screens with 'No Screensaver' selected caused things to
	crash.
	
2000-07-11  Robin * Slomkowski <rslomkow@eazel.com>

	* control-center.spec.in: temporary hack to make rpms

2000-06-16  Karl Eichwalder  <ke@suse.de>

	* capplets/gnome-edit-properties/gnome-edit-properties.desktop:
	Improve `de'.

2000-06-08  Fatih Demir	<kabalak@gmx.net>

	* capplets/*/*.desktop & capplets/*/*.directory :
		Added the Turkish entries.

2000-05-25  Jonathan Blandford  <jrb@redhat.com>

	* capplets/background-properties/property-background.c
	(make_root_pixmap): added patch from miguel to fix on Solaris.

2000-05-22  Jacob Berkman  <jacob@helixcode.com>

	* capplets/theme-switcher/main.c (main): 

	* capplets/theme-switcher/gui.c (install_theme_callback): 

	* capplets/sound-properties/sound-properties.c (main): 

	* capplets/screensaver-properties/screensaver-properties-capplet.c (main): 

	* capplets/mime-type/mime-type-capplet.c (main): 

	* capplets/background-properties/app-background.c (main): set the
	window icon

	* configure.in: check for new gnome-libs

2000-05-20  Kjartan Maraas  <kmaraas@online.no>

	* capplets/mime-type/edit-window.c: Added #include <config.h>
	and initialized a string in an array to make it work.
	
2000-05-20  Kjartan Maraas  <kmaraas@online.no>

	* capplets/mime-type/new-mime-window.c: Moved #include <config.h>
	to the top to make the translations work.
	
2000-05-18  Szabolcs BAN <shooby@gnome.hu>

	* po/hu.po, capplets/*/*.desktop: Added/updated Hungarian
	  translations.

2000-05-15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in,po/tr.po: Added Turkish po file from HEAD

2000-05-14  Andreas Hyden  <a.hyden@cyberpoint.se>

	* capplets/desktop-links/Documents.directory,
	* capplets/desktop-links/Session.directory:
	  Added Danish translation from Kenneth.
	
2000-05-13  James M. Cape  <jcape@jcinteractive.com>

	* capplets/sound-properties/sound-properties.c: Changed double IN
	border around the CList to a single IN border.

2000-05-13  Karl Eichwalder  <ke@suse.de>

	* capplets/desktop-links/Appearances.directory: Sort alphabetically.

2000-05-11  Andreas Hyden  <a.hyden@cyberpoint.se>

	* capplets/desktop-links/Documets.directory: Updated Swedish translation.

2000-05-11  Andreas Hyden  <a.hyden@cyberpoint.se>

	* capplets/desktop-links/Documents.directory: Added Swedish translation.
	* capplets/desktop-links/Session.directory: Added Swedish translation.

2000-05-05  Jacob Berkman  <jacob@helixcode.com>

	* capplets/background-properties/property-background.c (set_enabled): 
	(background_apply): 
	(background_write): 
	(background_read): 
	(background_setup): replace some broken and stupid code with something
	that works and is a bit more intelligent

2000-05-04  Yukihiro Nakai <nakai@gnome.gr.jp>

	* capplets/desktop-links/Documents.directory: Add 'ja'.

2000-05-03  Yukihiro Nakai <nakai@gnome.gr.jp>

	* capplets/desktop-links/Sessoin.directory: Add 'ja'.

2000-04-16  Karl EICHWALDER  <ke@suse.de>

	* capplets/desktop-links/Desktop.directory: Revive entries from
	revision 1.26.

2000-04-15  Karl EICHWALDER  <ke@suse.de>

	* capplets/desktop-links/Gnome.directory,
	capplets/desktop-links/Desktop.directory,
	capplets/desktop-links/Peripherals.directory (Comment): Improve `de'.
	* capplets/desktop-links/Session.directory,
	capplets/desktop-links/Documents.directory: Add `de'.

2000-04-11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in (ALL_LINGUAS): merged with HEAD languages

2000-04-11  Jesus Bravo Alvarez  <jba@pobox.com>

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

	* *.desktop: Added Galician entries to some of these files
                     from Rubén López <ryu@mundivia.es>

2000-03-30  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: 1.0.53 released.

2000-03-30  Jacob Berkman  <jacob@helixcode.com>

	* configure.in: remove bell-properties' Makefile

2000-03-29  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: move to version 1.0.52

	* capplets/background-properties/property-background.c
	(color_setup): add _() where appropriate.

	* capplets/keyboard-properties/keyboard-properties.c: Merge bell
	properties in with keyboard properties.

	* capplets/theme-switcher/gui.c (make_main): moved things around a
	little.

	* capplets/background-properties/property-background.c: UI clean
	up.  Based on loosley on code by <justin@helixcode.com>, but greatly
	rewritten.

2000-03-23  Jacob Berkman  <jacob@helixcode.com>

	* capplets/desktop-links/Multimedia.directory: use the
	multimedia icon

	* capplets/desktop-links/Makefile.am: add a Session directory

2000-03-09  Peter Hawkins  <peterhawkins@ozemail.com.au>

	* capplets/wm-properties/wm-properties-capplet.c (cancel_callback):
	preliminary fix to stop capplet from killing window manager if there are
	no window managers in its list on a cancel.

1999-11-01  Jonathan Blandford  <jrb@redhat.com>

	* capplets/wm-properties/wm-properties-capplet.c (restart): patch
	from Dan Winship <danw@MIT.EDU> to fix "non-constant initializer"
	warning.

1999-10-20  Martin Norbäck  <norpan@bigfoot.com>

	* capplets/screensaver-properties/screensaver-desktops/*.desktop:
	added some translations (many left to do)

1999-10-05  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: 1.0.51 released.

1999-09-30  Jonathan Blandford  <jrb@redhat.com>

	* capplets/wm-properties/wm-properties-capplet.c
	(show_restart_info): forgot to I18N this.

	* capplets/bell-properties/bell-properties.c (bell_setup): removed
	some of the most bogus code I've seen in a while.

1999-09-29  Jonathan Blandford  <jrb@redhat.com>

	* capplets/wm-properties/wm-properties-capplet.c
	(show_restart_info): Give people the option to save right away.

1999-09-28  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: 1.0.50

	* capplets/wm-properties/wm-properties-capplet.c (select_row): now
	we set the sensitivity of the edit-button correctly.

1999-09-28  Kjartan Maraas  <kmaraas@online.no>

	* configure.in: Added "ro" to ALL_LINGUAS.
	
1999-09-24  Rodrigo Stulzer Lopes <rodrigo@conectiva.com.br>

	* configure.in: added Brazilian Portuguese (pt_BR) translations
	* *.desktop:    added Brazilian Portuguese (pt_BR) translations

1999-09-21  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* .cvsignore: ignore my_control_center_idl

1999-09-20  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: 1.0.40 released...

	* capplets/screensaver-properties/callbacks.c (destroy_callback):
	remember to setenv () when we fork for the preview stage.

1999-09-20  Anders Carlsson  <anders.carlsson@tordata.se>

	* capplets/sound-properties/sound-properties.c: Removed "Category"
	  column from CTree and added an icon to the "Play" button.

1999-09-20  Richard Hult  <rhult@hem2.passagen.se>

	* capplets/*/*.desktop: Updated Swedish desktop entries.
	
1999-09-17  Lauris Kaplinski  <lauris@ariman.ee>

	* *.desktop Added Estonian tranlations.

1999-09-17  Jonathan Blandford  <jrb@redhat.com>

	* capplets/theme-switcher/gui.c (update_theme_entries): fix
	revert-bug where hitting cancel right away caused the font to
	change.

1999-09-09  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/parser.c
	(get_screensaver_widget): Missed a NULL at the end of a
	g_strconcat.  I wonder how this worked before.  Thanks to Morten
	Welinder <terra@diku.dk> for pointing this out.

1999-08-31  Iain Holmes  <iain@webtribe.net>

	* capplets/mime-type/mime-data.c: A change is now updated in the main
	clist.

	* capplets/mime-type/edit-window.c: Ability to edit the extensions for
	a mime-type.

1999-09-07    <jrb@redhat.com>

	* capplets/mime-type/mime-type-capplet.c: Patch added from Iain
	Holmes <iain@webtribe.net> to add the ability to edit mime-type
	extensions.

1999-09-03  Zbigniew Chyla  <chyla@alice.ci.pwr.wroc.pl>

        * *.desktop: Added Polish translations.

1999-09-02  Elliot Lee  <sopwith@redhat.com>
	* capplets/*/*.c, control-center/{callbacks.c,capplet-widget.c}:
	  If help isn't found, display an error message.
	
1999-09-01  Elliot Lee  <sopwith@redhat.com>
	* capplets/gnome-edit-properties/gnome-edit-properties.c:
	When reverting, store the executable name, not the viewed name.

1999-08-29  Karl Eichwalder  <ke@suse.de>

	* capplets/theme-switcher/gui.c (make_main): Add gettext marks
	again.

1999-08-29  Karl Eichwalder  <ke@suse.de>

	* capplets/mime-type/mime-data.c: Add some missing dots in mesage
	strings.

1999-08-28  Karl Eichwalder  <ke@suse.de>

	* capplets/theme-switcher/gui.c (make_main): Remove gettext marks.

1999-08-27  Elliot Lee  <sopwith@redhat.com>

	* control-center/capplet-widget-libs.c: If we're in a nest of main
 	loops (e.g. modal dialogs or something), do bad hacks to make sure
 	capplets exit properly.

        /* This gross hack is here because just doing gtk_main_quit()
           won't exit a modal dialog that has popped up in a capplet,
           but at the same time just doing exit() won't let some
           capplets (e.g. wm-properties) do their preference saving in
           the post-gtk_main() part of main() -ECL */

           Also cleanup the symbol names a little & make stuff static when possible.

1999-08-21  Pablo Saratxaga <srtxg@chanae.alphanet.ch>

	* applets/screensaver-properties/screensaver-desktops/*.desktop
	added catalan language descriptions from
	Ivan Vilata i Balaguer <al011097@alumail.uji.es>

1999-08-17  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: 1.0.6 Released.

1999-08-16  Kjartan Maraas  <kmaraas@online.no>

	* *.desktop: The control-center now speaks Norwegian fluently.
	
1999-08-16  Jonathan Blandford  <jrb@redhat.com>

	* Patch from Chyla Zbigniew <chyla@alice.ci.pwr.wroc.pl> to
	gettextize everything.  Sorry translators...

1999-08-13  Changwoo RYU  <cwryu@adam.kaist.ac.kr>

	* capplets/wm-properties/wm-desktops/*.desktop: Inserted
	Korean-translated strings.

1999-08-09  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>

	* capplets/mime-type/edit-window.c (initialize_main_win_vals): For
	easier i18n, used g_strdup_printf() instead of g_strconcat().

1999-08-04    <jrb@redhat.com>

	* capplets/theme-switcher/demo.c (demo_main): move the new menubar.

1999-08-03 Elliot Lee <sopwith@redhat.com>
	* capplets/screensaver-properties/callbacks.c:
	  Simplify the execution of the screensaver demo thingies, and add
	  /usr/X11R6/lib/xscreensaver to the PATH just before exec so we catch
	  the Red Hat Linux-installed ones.

1999-07-14  Jonathan Blandford  <jrb@redhat.com>

	* capplets/mime-type/edit-window.c (initialize_main_win_vals):
	Patch from Fabrice.Bellet@imag.fr for i18n and portability.

1999-06-22    <jrb@redhat.com>

	* capplets/theme-switcher/lister.c (print_standard_stuff): made
	"~/" be gnome_util_user_home instead.

1999-06-16    <jrb@redhat.com>

	* capplets/theme-switcher/demo.c (demo_main): patch from Akira
	Higuchi (a-higuti@math.sci.hokudai.ac.jp) to handle I18N in the
	preview window.

1999-06-15  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* */*.desktop: Added Portuguese translations.

1999-06-15    <jrb@redhat.com>

	* capplets/screensaver-properties/parser.c (parse_key): make ANSI
	C Compliant.

	* capplets/background-properties/property-background.c
	(background_apply): ditto

	* capplets/background-properties/property-background.c
	(color_setup): don't add it twice.

1999-06-14    <rwb197@ecs.soton.ac.uk>

	* capplets/wm-properties/wm-desktops/Makefile.am, 
	capplets/wm-properties/wm-desktops/Scwm.desktop :
	added Scwm window manager (bug #811)

1999-06-14    <jrb@redhat.com>

	* capplets/screensaver-properties/callbacks.c (revert_callback):
	fix problem with default screensaver locking the screen
	inappropriately.

	* capplets/screensaver-properties/screensaver-properties-capplet.c
	(main): ditto.

1999-06-08    <jrb@redhat.com>

	*capplets/gnome-edit-properties/gnome-edit-properties.c (struct
	_EditorDescription): fix the fact that gnomecc thinks that the
	capplet has changed, even when it hasn't.
	
	capplets/screensaver-properties/screensaver-desktops/Forest.desktop (Flag): typo fix.

1999-06-03  James Henstridge  <james@daa.com.au>

	* capplets/screensaver-properties/screensaver-properties-capplet.c:
	When setting the dpms settings for the X server, use
	gnome_config_get_int to retrieve the user setting rather than
	gnome_config_get_string.  Before, it was adding together two
	pointers, multiplying the value by 60 and casting it as an int :)

1999-05-04  Tuomas Kuosmanen  <tigert@gimp.org>

	* capplets/bell-properties/bell-properties.desktop: Icon for keyboard
	bell menu..

	* capplets/keyboard-properties/keyboard-properties.desktop: Icon for 
	keyboard properties menu..

1999-05-02  Tuomas Kuosmanen  <tigert@gimp.org>

	* capplets/wm-properties/wm-properties.desktop
	* capplets/theme-switcher/theme-selector.desktop 
	* capplets/background-properties/background-properties.desktop
	* capplets/screensaver-properties/screensaver-properties.desktop:
	Added icons for the .desktop files (to show up in panel menus and 
	desktop if dragged there)

1999-04-16  Matthias Warkus  <mawa@iname.com>

	* capplets/desktop-links/*.directory: Updated German translations.

1999-04-14    <jrb@redhat.com>

	* capplets/screensaver-properties/screensaver-properties-capplet.c
	(main): if "No Screensaver" selected, don't show it.

1999-04-14  Matthias Warkus  <mawa@iname.com>

	* capplets/*/*.desktop: Completed [de] translations.

1999-04-13  Jonathan Blandford  <jrb@redhat.com>

	* capplets/mime-type/mime-data.c (write_mime_foreach): many many
	changes.  Now you can really add a mime-type.
	
1999-04-12  Mark Crichton  <crichton@gimp.org>

	* capplets/mime-type/mime-type.desktop:
	Added missing (??) [fi] to Finnish name translation

1999-04-09  Jonathan Blandford  <jrb@redhat.com>

	* capplets/wm-properties/wm-properties-capplet.c (wm_setup):
	Prettified the capplet a little.

1999-04-10  Alex Roberts  <bse@dial.pipex.com>

	* capplets/screensaver-properties/screensaver-desktops/: Added 
	  Gl screensavers:
	  	Atlantis, Pipes, Bubble3d, Lament, Rubik, Moebius,
	  	Sproingies, Superquadratics, Gears, Morph3d, Cage,
	  	Stairs, GLPlanet.
	  (These are the ones in the current xscreensaver-gl deb package)
	
	* capplets/screensaver-properties/callbacks.c: Commented out
	  HAVE_REDHAT_XSCREENSAVER_RPM (i forget who told me about that,
	  someone in #Gnome..)
	  	
1999-04-03  Ettore Perazzoli  <ettore@comm2000.it>

	* capplets/wm-properties/wm-properties-capplet.c
	(restart_label_update): Made i18n-aware.
	(update_gui): Likewise.
	(restart_failure): Likewise.
	(create_dialog): Likewise.
	(check_dialog): Likewise.
	(edit_dialog): Likewise.
	(delete): Likewise.
	(main): Likewise.

	* capplets/screensaver-properties/callbacks.c
	(handle_list_change): Replace the `... settings' hack with a more
	i18n-friendly one.

	* capplets/background-properties/property-background.c
	(fill_monitor): Made i18n-aware.

	* capplets/e-conf/e-conf.c (main): Initialize i18n stuff.
	(add_kb): Gettextize action text.
	(update_current_kb): Likewise.
	(add_actions): Likewise.
	(__setup_pane_13): Gettextize titles.
	(e_create_icon_option): Gettextize tooltips.

	* capplets/wm-properties/wm-properties-capplet.c (create_dialog):
	Made i18n-aware.
	(check_dialog): Likewise.
	(edit_dialog): Likewise.
	(add_dialog): Likewise.
	(delete): Likewise.
	(wm_setup): Likewise.
	(main): Likewise.
	(restart_label_update): Likewise.
	(update_gui): Likewise.
	(restart_failure): Likewise.

1999-04-01  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/parser.c (set_color): Patch by
	Adrian Hosey <ahosey@burningchrome.com> to allow selecting color.
	Used by Maze.desktop now, and possibly more later.

	* capplets/background-properties/property-background.c
	(browse_wallpapers): added preview when browsing.

	* configure.in: upped the version to 1.0.5

	* capplets/screensaver-properties/parser.c
	(init_screensaver_data): Fixes the Default setting problem.

	* capplets/screensaver-properties/callbacks.c (create_list):
	little bug that caused big problems.

	* capplets/screensaver-properties/screensaver-desktops/Makefile.am
	(ssdata_DATA): added new xscreensaver-3.08 screen hacks.

1999-03-31  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/callbacks.c (create_list): 
	add try-exec like functionality to the screensaver list.  This can
	be made more sophisticated in the future.

	* capplets/theme-switcher/gui.c,lister.c,da.h: Now you can set the
	font!

1999-03-27  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* capplets/screensaver-properties/parser.c (get_entry): free tem
	using free(), it's allocated with strdup.

1999-03-26  Jonathan Blandford  <jrb@redhat.com>

	* capplets/mime-type/mime-type-capplet.c (main): oops -- should be
	mime-type-capplet, not mouse-capplet.  Thanks to Jacob Berkman
	<jberkman@andrew.cmu.edu> for pointing this out

1999-03-22  Jonathan Blandford  <jrb@redhat.com>

	* capplets/theme-switcher/gui.c (click_entry): bug fix.  Now we
	can try again after a revert.

1999-03-26  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>

	* capplets/gnome-edit-properties/gnome-edit-properties.c
	(entry_changed) renamed to combo_changed.
	(edit_setup): connect combo_changed() to both entry's activate
	and list's selection_changed signals.
	(edit_read): g_strdup text from entry. otherwise it is changed
	as the entry changes. g_free() it at appropriate places.	

1999-03-23  Martin Baulig  <martin@home-of-linux.org>

	* capplets/wm-properties/wm-list.c (wm_list_init): First look
	at `default.wm/Default/WM' before `$(datadir)/default.wm' for
 	the default WM so the gnome-wm script can write the chosen WM
	there.

1999-03-22  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/: removed print statements.

	* configure.in: 1.0.4 packaged for dist.

Sun Mar 21 01:33:55 CST 1999 Frank Belew <frb@umr.edu>
	* capplets/gnome-edit-properties/gnome-edit-properties.c:
	  added Nedit to the list

Tue Mar 16 17:54:04 1999 Timur Bakeyev <mc@bat.ru>

	* capplets/wm-properties/wm-list.c: Add missed #include <sys/types.h>

1999-03-15  Jonathan Blandford  <jrb@redhat.com>

	* capplets/mime-type/: No more warnings.

	* capplets/mime-type/mime-info.c (write_initial_keys): Now we
	explicitly remove then recreate the file, so that we can guarantee
	that the mime-type gets reread.

1999-03-14  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/callbacks.c (screensaver_load):
	We want to turn dpms off by default.

	* capplets/mime-type: Okay.  I think this is
	useable.  Putting it up for generic circulation.

Fri Mar 12 12:06:18 1999  Owen Taylor  <otaylor@redhat.com>

	* capplets/wm-properties/wm-exec.c (start_do): Decrease
	time for starting from 20 seconds to 10 seconds.

	* capplets/wm-properties/wm-properties-capplet.c (add_dialog): 
	Track selected row properly on adds and deletes.

	* capplets/wm-properties/wm-properties-capplet.c: Fix
	bug where wm-properties capplet wouldn't exit upon
	succesful completion.

Fri Mar 12 10:53:10 1999  Owen Taylor  <otaylor@redhat.com>

	* capplets/theme-switcher/main.c (main): Wait for
	our child to exit before quitting. The prevents
	us from pulling the socket window out from under
	our child.

	* capplets/theme-switcher/demo.c (demo_main): Clean
	up some warnings about types in formats.

	* capplets/theme-switcher/demo.c (demo_main): Exit
	cleanly if read from parent fails - don't drop
	a core.

Fri Mar 12 02:21:55 1999  Owen Taylor  <otaylor@redhat.com>

	* capplets/theme-switcher/gui.c (browse_dialog_close):
	Add an error dialog if installing a theme fails.

	* capplets/theme-switcher/install.c (install_theme): Add
	a return value indicating success or failure.

	* capplets/theme-switcher/install.c (install_theme): 
	Fixed reversed arguments for installing ungipped tarballs

Fri Mar 12 01:12:15 1999  Owen Taylor  <otaylor@redhat.com>

	[ Patch from Patrik Nordebo <isildur@a39.ryd.student.liu.se> ]

	* capplets/theme-switcher/install.c (install_theme): Removed
	useless call to wait(). Install themes in .themes,
	not .gtk/themes.

Fri Mar 12 01:06:53 1999  Owen Taylor  <otaylor@redhat.com>

	* capplets/theme-switcher/lister.c (edit_file_to_use): Fixed
	reversed lines that were causing initial creation
	not to work properly.

	* capplets/theme-switcher/demo.c (send_reread): You
	can't fsync() a pipe...

	* capplets/theme-switcher/gui.c: Don't select list
	items before they are added to the list ... removed
	hack that sort of worked around this.
	
	* capplets/theme-switcher/gui.c (make_main): Major
	un-rasterization. (Sort of a shame, this was some
	of the funniest code I've ever seen.)

	* capplets/theme-switcher/gui.c (install_theme_callback):
	Removed non-functional transient-for code.

	* capplets/theme-switcher/demo.c (demo_data_in): Removed
	brutal, unreliable kill -9 in favor of noticing when
	the IPC pipe closes.

	* capplets/theme-switcher/demo.c (demo_main): Solved
	problem where dup2() was going astray by not using it.

	* capplets/theme-switcher/gui.c (update_theme_entries): Fix
	cut-and-paste typo.

1999-03-10  Jonathan Blandford  <jrb@redhat.com>

	* capplets/Makefile.am (always_built_SUBDIRS): mime-type capplet.
	New capplet added.

1999-03-10  Chris Lahey  <clahey@umich.edu>

	* capplets/gnome-edit-properties/gnome-edit-properties.c: Updated
	this to do proper loading with the old value.  It also has a "Run
	In Terminal" button now.

1993-03-09  Owen Taylor  <otaylor@redhat.com>

	* capplets/background-properties/property-background.c:
	Fixed code for setting root window properties so it:

	 - Doesn't call gdk_property_get() with the arguments in 
	   the wrong order.
	 - Doesn't leak its pixmaps 
	 - Doesn't leak anything else. (I.e., use a separate
	   connection, instead of calling XSetCloseDownMode
	   on GDK_DISPLAY())
	 - Doesn't make a messy, unsucessful attempt at committing suicide
	 - Handles tiled pixmaps properly.

1999-03-08  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>

	* capplets/gnome-edit-properties/gnome-edit-properties.c (main):
	set the combo to the value read.
	
1999-03-02  Martin Baulig  <martin@home-of-linux.org>

	* capplets/wm-properties/wm-list.c (wm_list_init): Read the
	default WM from $(datadir)/default.wm rather than using the
	first one from the list.

1999-02-28  Martin Baulig  <martin@home-of-linux.org>

	* capplets/background-properties/app-background.c: Added some
	`--background-image' command line argument hack to set the
	background image.

1999-03-01  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>

	* capplets/sound-properties/sound-properties.c
	(sound_properties_create): Made the N_()'ed strings be translated
	really.

	* capplets/sound-properties/sound-properties.c (main): Inserted
	bindtextdomain() and textdomain().

	* capplets/bell-properties/bell-properties.c (bell_setup): Marked
	a translatable string with _().

	* capplets/*/{*.desktop, *.directory}: Added/Updated Korean
	translation.

1999-02-27 Shooby Ban <bansz@szif.hu>

	* capplets/background-properties/property-background.c:
	an i18n fix, no more...

1999-02-27  bertrand <Bertrand.Guiheneuf@inria.fr>

	* capplets/desktop-links/Makefile.am:
	comment out the panel data install entries to respect
	new panel organisation. ".directory" are now installed
	correctly. 

	* capplets/Makefile.am (always_built_SUBDIRS): uncomment 
	desktop-link. This was causing gnomecc to crash :(
	
1999-02-25  Owen Taylor  <otaylor@redhat.com>

	* capplets/wm-properties/wm-desktops/IceWM.desktop (TryExec): Add
	a tryexec.

1999-02-25  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: Up we go, to 1.0 <-:

	* capplets/screensaver-properties/screensaver-desktops/*.desktop:
	Many changes by Rosanna...

1999-02-24  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/screensaver-dialog.c
	(make_dialog): line wrap the stupid thing.

1999-02-24  Owen Taylor  <otaylor@redhat.com>

	* capplets/wm-properties: Added window manager 
	switching capplet. Please test. (a lot).

1999-02-23  Jonathan Blandford  <jrb@redhat.com>

	*
	capplets/screensaver-properties/screensaver-desktops/Makefile.am:
	install in the right place.

1999-02-24  bertrand <Bertrand.Guiheneuf@inria.fr>

	* updated fr translations

1999-02-23  Jonathan Blandford  <jrb@redhat.com>

	* capplets/Makefile.am (always_built_SUBDIRS): remove e-conf

Mon Feb 22 22:23:34 1999  Owen Taylor  <otaylor@redhat.com>

	* capplets/theme-switcher/lister.c: Use g_get_home_dir()
	 instead of getenv ("HOME")

	* capplets/theme-switcher/demo.c (demo_main): Strip
	 out ~/.gtkrc from the default file set so we don't
	 get a merge of the current theme and the new one.

	* capplets/theme-switcher/lister.c (use_theme): Modify
	 .gtkrc instead of .gnome/gtkrc.

1999-02-23  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* capplets/session-properties/session-properties.desktop,
	  capplets/gnome-edit-properties/gnome-edit-properties.desktop,
	  capplets/ui-properties/application.desktop, 
	  capplets/desktop-links/UIOptions.directory, 
	  capplets/desktop-links/Peripherals.directory, 
	  capplets/desktop-links/Gnome.directory: Added/Updated  Portuguese
	  translations.

1999-02-22  Elliot Lee  <sopwith@redhat.com>

	* capplets/sound-properties/*.c: Use a slightly smarter/faster
	algorithm for getting the connection to esd.

1999-02-22  Jonathan Blandford  <jrb@redhat.com>

	* capplets/background-properties/property-background.c: patch
	submitted by Franklin Belew <frb@umr.edu> to handle
	eterm/gnome-term transparency. DOES NOT WORK CORRECTLY WITH TILED
	BACKGROUNDS.  

	* capplets/*/Makefile.am (install-data-local): install
	desktop entries to the panel, so that the panel can deal with the
	control-center.

	* capplets/desktop-links/Gnome.directory (Type): Make more
	compatible with the panel.

1999-02-23  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>

	* capplets/desktop-links/{Desktop,Peripherals,UIOptions}.desktop:
	Added/Updated Korean translations.

1999-02-22  Jonathan Blandford  <jrb@redhat.com>

	* capplets/background-properties/app-background.c (main): changed
	session_args[2] -> session_args[3] to allow for THREE items in it.
	* capplets/screensaver-properties/screensaver-properties-capplet.c
	(main):  ditto.
	* capplets/bell-properties/bell-properties.c (main): ditto
	* capplets/keyboard-properties/keyboard-properties.c (main):
	ditto.
	* capplets/sound-properties/sound-properties.c (main): ditto.

1999-02-21  Jonathan Blandford  <jrb@redhat.com>

	* capplets/background-properties/property-background.c:
	removed spurious print statements

1999-02-21  Michael Fulbright <drmike@redhat.com>
	* Made control-center.spec a generated file, updated spec file
	
1999-02-19  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/callbacks.c
	(dialog_destroy_callback): it will now handle drawing previews
	better.  Still a bit broken, though... ):
	(dialog_callback): okay, now it's fixed.

	* capplets/background-properties/property-background.c
	(background_revert): cancel didn't do anything.  Now it does.

1999-02-18  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/callbacks.[ch]: now we show and
	hide our dialog correctly.

1999-02-17  Jonathan Blandford  <jrb@redhat.com>

	*capplets/background-properties/property-background.c
	(color_setup): many changes.  Looks a lot cleaner now.
	capplets/screensaver-properties/screensaver-desktops/Rocks.desktop
	(Demo): Make a minor change to make it less sea-sick inducing

	*capplets/screensaver-properties/screensaver-desktops/Bouboule.desktop (ExtendedComment):
	Get rid of the bogus default-flags val of root.

1999-02-17  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>

	* capplets/keyboard-properties/keyboard-properties.c (main): Added
	missing bindtextdomain() and textdomain().

1999-02-16  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/screensaver-properties-capplet.c
	(main): I think sm has the right behaviour now.

	* capplets/screensaver-properties/callbacks.c (revert_callback):
	oops... now it has the right behaviour.  *fingers really crossed*

	* capplets/screensaver-properties/screensaver-properties-capplet.c
	(main): A lot of changes.  I *think* it has the right behaviour
	now.  If it doesn't, please let me know.  Also, there's now a
	Random screensaver added.  

1999-02-16  Felix Bellaby  <felix@pooh.u-net.com>

	* capplets/session-properties: New capplet based on Tom's app.
	* capplets/Makefile.am: Added session-properties subdir.
	* po/POTFILES.in: Added session-properties.c.
	* configure.in: Added AC_OUTPUT and AC_CONDITIONAL for SM.

1999-02-15  Elliot Lee  <sopwith@bogus.circ.us.eu.org>

	* capplets/sound-properties/sound-properties.c: Fix much
	brokenness. Should allow per-user sound settings now.

1999-02-15  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* capplets/gnome-edit-properties/gnome-edit-properties.c
	(possible_editors): Add gmc/Cooledit editor.

1999-02-08  Elliot Lee  <sopwith@redhat.com>

	* capplets/background-properties/properties-background.c:
	  Change default background color to #005060 (from icewm).

Mon Feb  8 00:42:56 1999  Frank Belew  <frb@umr.edu>
	* capplets/background-properties/properties-background.c: add
	  prototypes for printState, copyState and backgroun_ok.
	  add 4 new gushorts to remove warnings from gnome_color_picker

Fri Feb 05 17:29:03 1999  George Lebl  <jirka@5z.com>

	* capplets/gnome-edit-properties/gnome-edit-properties.c: add
	  gvim to the list of editors

1999-02-06  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>

	* capplets/*/*.desktop, capplets/*/*.directory,
	control-center/gnomecc.desktop: Added Korean translations.

1999-02-02  Elliot Lee <sopwith@redhat.com>
	* capplets/sound-properties/sound-properties.c:
	Starts esd again.

1999-02-01  The Rasterman <raster@redhat.com>
	* configure.in, control-center.spec: upped to 0.99.5

1999-02-01  Chris Lahey  <clahey@umich.edu>

	* capplets/gnome-edit-properties/gnome-edit-properties.desktop,
	capplets/gnome-edit-properties/gnome-edit-properties.c,
	capplets/gnome-edit-properties/Makefile.am,
	capplets/gnome-edit-properties/.cvsignore: Added
	gnome-edit-properties/ directory.  This adds a capplet to set
	which editor you wish to be invoked when you run the gnome-edit
	application.

	* capplets/desktop-links/Environment.directory: Added this file.
	This adds another category of capplet to the control-center.

	* capplets/desktop-links/Makefile.am (ccenterdir): Added
	installation of Environment.directory.

	* capplets/Makefile.am (always_built_SUBDIRS): Added gnome-edit-properties.

	* configure.in: Added capplets/gnome-edit-properties/Makefile.

1999-02-01  Elliot Lee  <sopwith@redhat.com>

	* Revert session management changes until further discussion.

1999-02-01  Felix Bellaby <felix@pooh.u-net.com>

	* capplets/mouse-properties/mouse-properties.c (main):
	Only restart one instance of the program to apply the settings.
	* capplets/bell-properties/bell-properties.c (main): ditto
	* capplets/keyboard-properties/keyboard-properties.c (main): ditto
	* capplets/background-properties/app-background.c (main): ditto
	* capplets/screensaver-properties/screensaver-properties-capplet.c (main): ditto
	(get_saver_frame): create setup_button before referencing it.
	* capplets/sound-properties/sound-properties.c (main): ditto,
	let gnome-session start up the new session aware esd.

1999-01-12  The Rasterman  <raster@redhat.com>

	modify makefiles and configure to detect X11 imlbi separately and 
	build using it.

1999-01-11  Jonathan Blandford  <jrb@redhat.com>

	* capplets/theme-switcher/gui.c (make_main): changing the default
	state of the Auto-Preview button.

1999-01-06  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/callbacks.c: fix for the Red Hat
	xscreensaver problem.  just do a #define
	HAVE_REDHAT_XSCREENSAVER_RPM at the head of callbacks.c and all
	will work.

1998-12-30  Jeff Garzik  <jgarzik@pobox.com>

       * capplets/screensaver-properties/callbacks.c,
       capplets/screensaver-properties/parser.c,
       capplets/sound-properties/sound-properties.c:
       s/g_copy_strings/g_strconcat/

1998-12-16  Jonathan Blandford  <jrb@redhat.com>

	* capplets/sound-properties/sound-properties.c
	(sound_properties_create): now the file_selection_dialog starts up 
	in the right path.

1998-12-15  Jonathan Blandford  <jrb@redhat.com>

	* capplets/screensaver-properties/screensaver-properties-capplet.c
	(main): added new style session_initialization

	* capplets/background-properties/app-background.c (main): added
	new style initialization.

	* capplets/background-properties/Makefile.am: removed old-style initialization.

1998-12-14  Richard Hestilow  <hestgray@ionet.net>

        * capplets/ui-properties: Modified to be a multi-capplet.
        No more ugly notebook within notebook! :-)
        Removed ui-properties.desktop, added application.desktop,
        dialogs.desktop, and mdi.desktop with the appropriate name translations
        that were in po. Also added ui-properties.directory.


Mon Dec 14 15:39:33 1998  Owen Taylor  <otaylor@redhat.com>

	* capplets/ui-properties/ui-properties.c (ui_setup): Change
	"Application" to "Applications" for consistency
	with "Dialogs" and grammatical correctness.

1998-12-11  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* capplets/desktop-links/Workspace.directory,
	capplets/desktop-links/Multimedia.directory: Added Portuguese translation. 

Fri Dec 11 10:39:07 1998  Owen Taylor  <otaylor@redhat.com>

	* capplets/ui-properties/ui-properties.c: Prettification.
	The spacing probably still needs more tweaks.

1998-12-10  Andrew T. Veliath  <andrewtv@usa.net>

	* capplets/ui-properties/ui-properties.c (ui_setup): Updated for
	changes in GnomePreferences.

1998-12-08  Michael Lausch  <mla@gams.at>

	* configure.in Remove the --with-fvwm2 configure.in option, the
	fvwm2 applet is now selfcontained. Instead build the applet if the 
	requested window manager is fvwm2.

1998-12-07  James Henstridge  <james@daa.com.au>
	* capplets/url-properties: a new applet to configure the behaviour of
	the gnome_url_show function in libgnome.

1998-12-06  Tuomas Kuosmanen  <tigert@gimp.org>

	* pixmaps/Makefile.am (EXTRA_DIST): Added some new tiles for panel:
	tile-moon-[up,down].png - a grayish tile
	tile-sand-[up,down].png - a brownish tile
	tile-coral-[up,down].png - a blueish tile (try this 
	with http://tigert.gimp.org/files/gtkrc-files/gtkrc.ocean)

1998-12-02  Raja R Harinath  <harinath@cs.umn.edu>

	* capplets/sound-properties/sound-properties.c (main): 
	Add a closing brace.

1998-12-03  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>

	Use gettext 0.10.35
	* configure.in (AC_OUTPUT): Removed `sed POTFILES...'.
	* acinclude.m4: Removed gettext macros.

1998-12-02  Martin Baulig  <martin@home-of-linux.org>

	* Makefile.am (always_built_SUBDIRS): Removed `desktop-properties' -
	we have capplets for all of them now.

1998-12-02  Martin Baulig  <martin@home-of-linux.org>

	* capplets/ui-properties: Added "Look&Feel" properties capplet.

	* capplets/bell-properties: Added bell properties capplet.

Sun Nov 29 18:20:54 EST 1998 Gregory McLean <gregm@comstar.net>

	* configure.in : Added applets/gticker/Makefile to the makefiles to
	produce.

1998-11-29  Jeff Garzik  <jgarzik@pobox.com>

	* applets/gkb/gkb.c, applets/netwatch/netwatch.c:
	Added required app id arg to applet_widget_new.

Tue Nov 24 00:25:53 1998  Owen Taylor  <otaylor@redhat.com>

	* capplets/theme-switcher/da.h: Removed include of
	gtk-socket.h, which now is in GTK+.

1998-11-23  Andrew T. Veliath  <andrewtv@usa.net>

	* capplets/screensaver-properties/screensaver-properties-capplet.c: Use
	gtk_scrolled_window_add_with_viewport instead of gtk_container_add
	(gtk changes).

1998-11-21  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* capplets/screensaver-properties/callbacks.c: Include <config.h>.

	* capplets/theme-switcher/gui.c: Include <config.h>. Mark strings
	for translation.

	* capplets/sound-properties/sound-properties.c:  Mark strings for
	translation.
	(main): Initialize gettext.
	
	* capplets/theme-switcher/main.c (main): Include <config.h> at the
	top of the file.
	(main): Initialize gettext.

	* capplets/screensaver-properties/screensaver-properties-capplet.c: 
	Include <config.h> at the top of the file.
	(main): Initialize gettext.

	* capplets/keyboard-properties/keyboard-properties.c:Include
	<config.h> at the top of the file.
	(main): Initialize gettext.

1998-11-12  Andrew T. Veliath  <andrewtv@usa.net>

	* acconfig.h: Remove HAVE_ORBIT, HAVE_MICO_ORB_RUN.  HAVE_ORBIT is
	now implicit.
	
	* Makefile.am: Remove ORBIT_INSTALLED AM_CONDITIONAL.

	* configure.in: The ORBit AM_CONDITIONAL is now in
	gnome-orbit-check.m4 as HAVE_ORBIT.

1998-11-06  Raja R Harinath  <harinath@cs.umn.edu>

	* capplets/theme-switcher/main.c (confdefs.h): `confdefs.h isn't a
	nice name for a header file.  Since no other file uses it, just
	remove it.
	(THEME_SWITCHER_VERSION): New define.  Is what `VERSION' was used
	for.
	(main): Use new name for `VERSION'.  
	* capplets/theme-switcher/confdefs.h: Delete.  
	* capplets/theme-switcher/config.h: Delete.
	
Fri Nov  6 17:15:00 1998  Owen Taylor  <otaylor@redhat.com>

	* capplets/theme-switcher/main.c: include confdefs.h
	to get VERSION.

	* capplets/theme-switcher/demo.c (demo_main): Put the
	CList in a scrolled window.

	* Makefile.am: Build theme-switcher-capplet by default,
	now that themes are in GTK+ head.

1998-11-04  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (have_libesd): Actually define the HAVE_LIBESD
	conditional. 

1998-10-30    <jrb@redhat.com>

	* capplets/screensaver-properties/callbacks.c (launch_miniview):  Thou
	shall not exec (NULL)...
	(launch_miniview): thou shalt also not check in things before you save
	the changes... (:

1998-10-28 The Rasterman <raster@redhat.com>
	
	* applets/esd-manager: added this.. going to work on it...

1998-10-26  Raja R Harinath  <harinath@cs.umn.edu>

	* capplets/screensaver-properties/screensaver-properties-capplet.c 
	(main): This is not a void function.

1998-10-20  Tom Tromey  <tromey@cygnus.com>

	* configure.in (ALL_LINGUAS): Added `da'.

1998-10-20  Andrew Veliath  <andrewtv@usa.net>

	* configure.in: Update ORBit checks to use new
	gnome-orbit-checks.m4.  acconfig.h: Add HAVE_ORBIT.
	
Sun Oct 18 22:02:28 1998  Owen Taylor  <otaylor@gtk.org>

	* capplets/background-properties/property-background.c
	(img_dnd_drop): Matching braces help.

Sun Oct 18 19:18:21 1998  Owen Taylor  <otaylor@gtk.org>

	* background-properties/property-background.c: Use
	the new DND API.

1998-10-14  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* */*.desktop: Added Portuguese translations.

	* */*.directory: Likewise

1998-09-29  The Rasterman  <raster@redhat.com>
	* configure.in: added e-conf capplet and gnome-pager applet
	
1998-09-29  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (applets_libgtop): 
	More warnings if `libgtop' isn't found. 

Mon Sep 28 12:31:00 1998  John Ellis  <johne@bellatlantic.net>

	* configure.in: Add applets/slashapp/Makefile

1998-09-27  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in: Warn if some of the applets will not be built.

1998-09-24  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* applets/asclock/asclock_applet.desktop: Likewise.

	* applets/battery/battery_applet.desktop: Likewise.

	* capplets/theme-switcher/theme-selector.desktop: Add Portuguese
	translation.

	* capplets/screensaver-properties/screensaver-desktops/screensaver-properties.desktop: 
	Likewise.
	
	* capplets/keyboard-properties/keyboard-properties.desktop:
	Likewise.

1998-09-23  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* capplets/screensaver-properties/Makefile.am
	(screensaver_properties_capplet_SOURCES): Add missing headers to
	the list of sources.

1998-09-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* configure.in (FVWM_PAGER): quoted $FVWM_PAGER in test ! -z
	"$FVWM_PAGER"

1998-09-23  Michael Lausch  <mla@gams.at>

	* configure.in (FVWM_PAGER): Added various tests for the
	fvwm-pager applet. 

1998-09-23  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: 
	* Makefile.am: Add the idl directory.  WHY DID NO ONE ADD THIS
	WHEN IT WAS CREATED?

1998-09-22  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped version number to 0.30.  The panting chimpanzee 
	is upon us.

Thu Sep 17 14:20:05 1998  John Ellis  <johne@bellatlantic.net>

	* configure.in, Makefile.am: Removed conditional build of gmenu since
	gtk+-1.1 is now a requirement.

1998-09-11  Alexandre Muniz  <munizao@cyberhighway.net>
	* configure.in (AC_OUTPUT): Added applets/charpick

1998-09-06  Raja R Harinath  <harinath@debian>

	* capplets/Makefile.am (DIST_SUBDIRS): Remove unneeded variable.

1998-09-06  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (GNOME_COMPILE_WARNINGS): New check.

Fri Sep 04 00:07:08 1998  George Lebl  <jirka@5z.com>

	* configure.in,Makefile.am,po/POTFILES.in: removed support for
	  mico and related sources

Wed Sep 02 23:18:00 1998  George Lebl  <jirka@5z.com>

	* pixmaps/Makefile.am: install tiles into a separate directory,
	  we will want to browse this with an icon browser and we only
	  want tiles to show up

1998-08-27  Christopher Blizzard  <blizzard@appliedtheory.com>

	* configure.in: Add checks for seeing if libghttp is installed.

1998-08-23  Martin Baulig  <martin@home-of-linux.org>

	* configure.in (GNOME_FILEUTILS_CHECKS): Removed. This check
	is no longer necessary since we now use libgtop for the
	mountlist and fsusage stuff in the diskusage applet.
	* acconfig.h: Removed mountlist stuff.

	* configure.in (GNOME_INIT_LIBGTOP): New check.
	* acconfig.h: Added libgtop stuff.

1998-08-20  Raja R Harinath  <harinath@cs.umn.edu>

	* core-docs/Makefile.am (gnome-intro/gnome-intro.html): 
	Make rule even more friendlier to a build without `DocBook'.

Thu Aug 20 00:32:24 1998  Tom Tromey  <tromey@cygnus.com>

	* configure.in: Removed all smproxy code.
	Don't mention non-existent directory.

1998-08-19  Raja R Harinath  <harinath@cs.umn.edu>

	* Makefile.am (SUBDIRS): Actually compile `control-center' if
	it is enabled.
	(always_built_SUBDIRS): Reinstate `smproxy'.

1998-08-19  Martin Baulig  <martin@home-of-linux.org>

	* Makefile.am: Conditionally compiling `control-center' if
	we have ORBit.

	* Makefile.am: Using $(always_built_SUBDIRS),
	$(sometimes_built_SUBDIRS) and correct $(DIST_SUBDIRS).

1998-08-17  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped the version number to 0.28.

1998-08-02  Raja R Harinath  <harinath@cs.umn.edu>

	* core-docs/Makefile.am (EXTRA_DIST): Add `gnome-intro.html'.
	(INTRO_EXTRA_DIST): Merge with EXTRA_DIST.

	* configure.in (PROGRAM_GMENU):
	Use AM_CONDITIONAL rather than AC_SUBST. 
	(PROGRAMS_PANEL_{CDPLAYER,MIXER,MODEMLIGHTS}): Likewise.
	(AC_OUTPUT): Remove `applets/netwatch/Makefile'.

	* Makefile.am (gmenu): New var.
	(SUBDIRS): Use $(gmenu) instead of @PROGRAM_GMENU@.
	
1998-08-01  Raja R Harinath  <harinath@cs.umn.edu>

	* core-docs/Makefile.am (install-data-local): Use INSTALL_DATA in
	a for loop, don't install all at once.
	(GNOME_INTRO_HTML_FILES): Remove $(srcdir) from names of files.
	(GNOME_INTRO_PICTURES): Likewise.
	(INTRO_EXTRA_DIST): Likewise.
	(GNOME_INTRO_GIFS): Likewise.
	(EXTRA_DIST): Likewise.

1998-07-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in (ALL_LINGUAS): Added Japanese translation.

1998-07-28  Mark Galassi  <rosalia@cygnus.com>

	* core-docs/gnome-intro/*.html: regenerated the HTML using the
	latest DocBook tools; some filenames have changed, and 

1998-07-23  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* config.guess, config.sub: Remove auto-generated files.

Tue Jul 21 18:29:16 1998  Tom Tromey  <tromey@cygnus.com>

	* acconfig.h (WINDOW_MANAGER): Removed.
	* configure.in: Don't define WINDOW_MANAGER, AC_SUBST it.

Sun Jul 19 03:31:08 1998  John Ellis  <johne@bellatlantic.net>

	* configure.in: variable PROGRAM_GMENU with a check for
	gtk/gtkctree.h which is in the devel GTK.
	* Makefile.am: added above variable in the subdirs section, now
	gmenu is built/installed by default if the devel GTK is found.

1998-07-19  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (SMPROXY_DEFS): Use `STD_DEFINES' rather than
	`STD_CPP_DEFINES'. 
	(ORB_LIBS): To replace MICO_LIBS.
	(ORBIT_LIBS,MICO_LIBS): Don't subst.
	(ORBIT_CONFIG): Don't use `if [ .. ];', use `if test ..;'.
	
1998-07-18  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (SMPROXY_DEFS): New check, based on AC_PATH_X11.
	Needed to get defines used in a X11 build tree.

Thu Jul 16 18:03:37 1998  Tom Tromey  <tromey@cygnus.com>

	* Makefile.am (SUBDIRS): Added smproxy.
	* configure.in: Create smproxy/Makefile.

1998-07-13  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (mico_prefix): Stop searching as soon as a
	`mico-ld' is found.  From Michael Lausch <mla@gams.co.at>.

1998-07-08  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Added applets/fifteen/Makefile to the list.

1998-07-08  Owen Taylor  <otaylor@fresnel.labs.redhat.com>

	* configure.in: Fix shell syntax bug in case when MICO
	is not found.

1998-06-26  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* configure.in (ALL_LINGUAS): Added Portuguese translation.

Sat Jun 13 01:11:16 1998  Tom Tromey  <tromey@cygnus.com>

	* core-docs/Makefile.am (gnome-intro/book01.html): Ignore mkdir
	failures.

Fri Jun 12 22:56:58 1998  Tom Tromey  <tromey@cygnus.com>

	* configure.in: Look for mico-setup.sh in $mico_prefix/doc.  Also,
	handle MICO 2.0.3 (still!).

1998-06-11  John Ellis  <johne@bellatlantic.net>

	* configure.in: added gmenu/Makefile

1998-06-11  John Ellis  <johne@bellatlantic.net>

	* gmenu directory: Checked in a gmenu, the GNOME menu editor,
	still needs a Makefile.am file though.

Wed Jun 10 11:34:52 1998  Owen Taylor  <otaylor@gtk.org>

	* configure.in: Make panel link micocoss library as well

Wed Jun 10 11:34:52 1998  Owen Taylor  <otaylor@gtk.org>

	* configure.in acconfig.h: Check for installed MICO
	  version, and the libs it requires by using mico-ld 
	  and mico-setup.sh.

	  Add a HAVE_MICO_ORB_RUN macro to signal that we need
	  to call orb->run(), as we do for mico-2.0.6 and later

Tue Jun  9 23:37:43 EDT 1998 Gregory McLean <gregm@comstar.net>

	* .cvsignore updates.


1998-06-09  Jim Pick  <jim@jimpick.com>

	* Added debian packaging dir.

1998-06-07  Stuart Parmenter  <pavlov@innerx.net>

	* help-browser/window.c: changed accel stuff around so that it works
	with gtk1.1

1998-06-05  Mark Galassi  <rosalia@cygnus.com>

	* core-docs/Makefile.am: fixed it so that "make dist" will
	generate a reasonable distribution.  Many files were not listed in
	the EXTRAS, but I think they now are.

1998-05-30  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (FALSE): Automake conditional that always fails.
	This is used in some subdir Makefile.am tricks.

1998-05-26  John Ellis  <johne@bellatlantic.net>

	* configure.in: added PROGRAMS_PANEL_MODEMLIGHTS, apparently
	net/ppp_defs.h does not exist on solaris.

1998-05-22  Martin Baulig  <baulig@merkur.uni-trier.de>

	* configure.in: added GNOME_FILEUTILS_CHECKS

	* acconfig.h (AFS, MOUNTED_FREAD, MOUNTED_FREAD_FSTYP,
	MOUNTED_GETFSSTAT, MOUNTED_GETMNT, MOUNTED_GETMNTENT1,
	MOUNTED_GETMNTENT2, MOUNTED_GETMNTINFO, MOUNTED_LISTMNTENT,
	MOUNTED_VMOUNT, STAT_STATFS3_OSF1, STAT_READ_FILSYS,
	STAT_STATFS2_BSIZE, STAT_STATFS2_FSIZE, STAT_STATFS2_FS_DATA,
	STAT_STATFS4, STAT_STATVFS, STATFS_TRUNCATES_BLOCK_COUNTS):
	New macros.
	
1998-05-13  Christopher Blizzard  <blizzard@appliedtheory.com>

	* configure.in: added applets/bussign/Makefile to the list of
 	Makefiles.

1998-05-05  Mark Galassi  <rosalia@cygnus.com>

	* core-docs/gnome-intro.sgml: added a bit more to the panel;
	that's it for the Red Hat 5.1 release, I guess.

	* core-docs/Makefile.am (install-data-local): fixed little bug in
	installing help files.

	* core-docs/gnome-intro.sgml: completed the GNOME intro; there are
	many omissions, but it seems OK.  Now I have to proofread it a bit
	and add a mention of panel applets.  I also added all the
	generated HTML files for people who do not have the docbook tools
	installed (this sucks).

	* core-docs/Makefile.am: put core-docs under automake with some
	quickly hacked-up rules for the RH-5.1 release.  I will clean it
	up later; this seems to work and install gnome-intro in a way such
	that the help browser picks it up.

	* Makefile.am (SUBDIRS): added core-docs

Sun May  3 22:43:59 1998  Tom Tromey  <tromey@cygnus.com>

	* acconfig.h (HAVE_FORKPTY): New macro.
	* configure.in: Include UTIL_LIB check from gnome-libs.

1998-05-03  Mark Galassi  <rosalia@cygnus.com>

	* core-docs/gnome-intro.sgml: added the beginnings of an
	overall gnome-intro manual.

Mon Apr 27 20:42:24 EDT 1998 Gregory McLean <gregm@comstar.net>

	* panel/menu.c : changed a couple of <icon>.xpm to <icon.png> as
	  the xpm files for _thoose_ icons wern't there.

Sun Apr 26 10:55:18 EDT 1998 Gregory McLean <gregm@comstar.net>
	
	* Its too early in the morning!
	* applets/netwatch/netwatch-old.c: added to the repo.
	* applets/netwatch/netwatch_applet.desktop: desktop file
	* applets/netwatch/.cvsignore: updated.

Sun Apr 26 01:05:51 1998  Tom Tromey  <tromey@cygnus.com>

	* acconfig.h (WINDOW_MANAGER): New macro.
	* configure.in: Added --with-window-manager option.

	* configure.in: Unconditionally look for crypt.h.

Sun Apr 26 10:55:18 EDT 1998 Gregory McLean <gregm@comstar.net>

	* configure.in: changed the AC_PROG_LEX -> AM_PROG_LEX
	  though I couldn't find any lex files that this is needed
	  for. IIRC automake 1.2 supports this macro also.

Sun Apr 19 09:38:36 EDT 1998 Gregory McLean <gregm@comstar.net>

        * applets/*/.cvsignore: updated to ignore generated files.

Tue Mar 17 23:26:47 1998  George Lebl  <jirka@5z.com>

	* configure.in: updated teh Makefiles being created

	* Makefile.am: build in applets

	* applets/Makefile.am: build clock

Sat Mar 14 20:21:31 1998  George Lebl  <jirka@5z.com>

	* gnome-panel.idl, launcher-lib.(cc|h): added a Launcher
	  interface, but didn't do anything with it yet.

Fri Mar 13 13:44:40 1998  George Lebl  <jirka@5z.com>

	* panel.c,clock.c: fixed some FIXME's and added some 
	  sanity checks

1998-03-13  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>

	* configure.in (ALL_LINGUAS): Added German translation.

1998-03-13  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (RES_LIBS): New check for `inet_aton'.

Tue Mar 10 22:33:39 1998  Tom Tromey  <tromey@cygnus.com>

	* stamp.h.in: Removed.
	* configure.in: Don't create stamp.h.

Sun Mar  8 21:41:18 1998  Tom Tromey  <tromey@cygnus.com>

	* version.h.in: Removed.
	* configure.in: Don't create version.h.

Wed Mar  4 01:18:19 1998  Tom Tromey  <tromey@cygnus.com>

	* acconfig.h (HAVE_PROGRAM_INVOCATION_SHORT_NAME,
	HAVE_PROGRAM_INVOCATION_NAME): Added.

1998-03-04  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (AC_OUTPUT): Add `panel/libapplet/Makefile'.

Mon Mar  2 15:30:00 1998  Tom Tromey  <tromey@cygnus.com>

	* configure.in: Removed check for SMlib.h; now comes from
	gnome-x-checks.m4.

1998-02-26  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in: Make the check for SMlib.h work better with the
	checks that happen in macros/gnome-x-checks.m4.

Thu Feb 26 12:37:07 1998  Tom Tromey  <tromey@cygnus.com>

	* configure.in: Check for X11/SM/SMlib.h.

1998-02-25  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (AC_OUTPUT): Remove duplicated entry for
	`panel/batmon/Makefile'. 

Sat Feb 14 01:31:21 1998  Tom Tromey  <tromey@cygnus.com>

	* Makefile.am (macros/macros.dep): Use tab in rule, not space.

	* configure.in: Run AC_LINK_FILES for gettext.

1998-02-14  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (GNOME_X_CHECKS): Add new check.
	(AC_OUTPUT): Also generate `macros/Makefile'.

	* Makefile.am (macros/macros.dep): Maintainer rule to
	auto-regenerate aclocal.m4.
	(SUBDIRS): Add `macros'.

	* help-browser/gnome-helpwin.c (gnome_helpwin_load): Replace
	`snprintf' with `g_snprintf'.

1998-02-13  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (AC_OUTPUT): Generate `macros/Makefile'.

	* autogen.sh: Use `macros/autogen.sh'.