File: ChangeLog

package info (click to toggle)
gnome-mime-data 2.18.0-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 5,348 kB
  • ctags: 17
  • sloc: sh: 3,401; perl: 407; makefile: 33
file content (2113 lines) | stat: -rw-r--r-- 60,110 bytes parent folder | download | duplicates (3)
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
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2007-04-03  Bastien Nocera  <hadess@hadess.net>

	* Makefile.am: install the pkgconfig file in $(datadir)
	so the package can be noarch
	* configure.in: release 2.18.0

2006-12-14  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Commit forgotten version bump.

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

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

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

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

2005-03-26  Tor Lillqvist  <tml@novell.com>

	* gnome-mime-data-zip.in: New file, used to build a distribution
	of gnome-mime-data for Win32.

	No, I don't know whether it will ultimately make much sense having
	a gnome-mime-data package for Win32. This is just for completeness
	as many GNOME libraries depend on gnome-mime-data, and as for now
	it's easiest to have gnome-mime-data installed when building
	them. But very likely the users of gnome-mime-data will eventually
	have code to use more native Win32 mechanisms for the function
	that gnome-mime-data has on a Unix system.

	* configure.in
	* Makefile.am: Expand and dist it.

2005-02-08  Christian Rose  <menthos@menthos.com>

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

2004-12-13  Dwayne Bailey  <dwayne@translate.org.za>

	* configure.in: Added "zu" to ALL_LINGUAS

2004-11-15  Dwayne Bailey  <dwayne@translate.org.za>

	* configure.in: Added "nso" to ALL_LINGUAS

2004-10-26  Frederic Crozat  <fcrozat@mandrakesoft.com>

	* gnome-mime-data-2.0.pc.in:
	Let config.status do substitution for exec_prefix, libdir and
	includedir.

2004-10-25  Kjartan Maraas  <kmaraas@gnome.org>

	* gnome-vfs.applications: Remove trailing whitespace
	* gnome-vfs.keys.in: Remove non-existant icon for
	Matroska Video format.

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

	* Makefile.am: remove intltool stuff on distclean.  Remove
	gnome-vfs.keys on clean.

	* configure.in: modernise makefile a bit.

	* autogen.sh (REQUIRED_AUTOMAKE_VERSION): require Automake >= 1.7.

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

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

2004-08-16  Gurban M. Tewekgeli  <gmtavakkoli@yahoo.com>

	* po/tk.po: Added Turkmen translation.
	* configure.in: Add "tk" to ALL_LINGUAS

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

	* configure.in: Added nb to ALL_LINGUAS.

2004-06-24  Frederic Crozat  <fcrozat@mandrakesoft.com>

	* gnome-vfs.applications: fix gvim command and name (were 
	swapped).

2004-05-29  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in:
	* gnome-vfs.mime: add text/x-lua for Lua scripts (Closes: #131484)

2004-05-29  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: Translate mime descriptions for Real Player,
	patch adapted from Takao Fujiwara <Takao.Fujiwara@Sun.COM>
	(Closes: #138615)

2004-05-04  Jody Goldberg <jody@gnome.org>

	* gnome-vfs.applications : back out all the aliases and new mime
	  types.  gnome-mime is not setup to handle aliases nicely and has not
	  branched, so there is still a string freeze.

2004-05-03  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: recognise python scripts from their headers
	(Closes: #132062)

2004-04-28  Jody Goldberg <jody@gnome.org>

	* gnome-vfs.applications : update to clarify that gnumeric supports
	  gnome-vfs

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

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

2004-03-31  Christian Rose  <menthos@menthos.com>

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

2004-03-30  Adam Weinberger  <adamw@gnome.org>

	* configure.in: Added en_CA to ALL_LINGUAS.

2004-03-22  Marco Pesenti Gritti  <marco@gnome.org>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	XBEL type is now application/x-xbel, like in
	shared-mime-info

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

	* configure.in: Added en_GB (British) to ALL_LINGUAS

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

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

2004-03-01 Dinesh Nadarajah <dinesh_list@sbcglobal.net>

        * ta.po: Started Tamil Translation

2004-03-02  Glynn Foster  <glynn.foster@sun.com>

	* gnome-vfs.applications: Remove the -p option from
	gnome-sound-recorder since it's not supported anymore.

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

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

2004-02-25  Danilo Šegan  <dsegan@gmx.net>

	* configure.in: Added sr@ije to ALL_LINGUAS.

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

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

2004-02-05  Alexander Larsson  <alexl@redhat.com>

	* gnome-vfs.keys.in:
	Use nautilus-media oafid, not old music view one

2004-01-06  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: fix detection of Mr Project/Planner files
	(Closes: #130662)

2004-01-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: add an icon for the Matroska videos

2003-12-30  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: change the label of Matroska video file to
	Matroska video (thanks Menthos) (Closes: #130178)

2003-12-27  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: add Matroska support as application/x-matroska

2003-12-26  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in:
	* gnome-vfs.mime: added Verilog source files as text/x-verilog-src
	(Closes: #130021)

2003-12-22  Bastien Nocera  <hadess@hadess.net>

	* configure.in: update to 2.4.1

2003-12-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: add more aliases for .zip files (Closes: #129510)

2003-12-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: application/x-flac is now audio/x-flac,
	image/svg is now image/svg+xml (Closes: #127667, #86748)

2003-12-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: better heuristics to detect RIFF CDXA video
	types (Closes: #129780)

2003-12-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: matching on "<title" brings too many false
	positive (HTML vs. XML) (Closes: #111234)

2003-12-09  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in:
	* gnome-vfs.mime: run check-mime.pl, run check-mime.pl,
	whip self, whip self, add bittorrent mime-type

2003-12-09  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: add DjVu support as image/x.djvu

2003-12-02  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: add support for application/x-gchempaint and
	application/x-gcrystal (Closes: #126293)

2003-12-01  Bastien Nocera  <hadess@hadess.net>

	* man/Makefile.am: don't install the man page, it's outdated

2003-12-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: make .cpio.gz have precendence over .gz
	(Closes: #126470)

2003-12-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: use Documents/TeX for TeX files, and
	Documents/Published Materials for DVI files (Closes: #119894)

2003-12-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.applications: use "gimp-remote" in place of "gimp"
	to allow the use of an existing instance (Closes: #99272)

2003-12-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: add Objective-C support (patch from PUYDT Julien
	<julien.puydt@laposte.net>) (Closes: #126473)

2003-12-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in:
	* gnome-vfs.mime: rename video/vivo to video/vnd.vivo, remove
	xanim and xmps as handlers for video files, mark a few strings
	for translation (Closes: #94214)

2003-11-20  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in: added support for video/dv as per RFC 3189

2003-11-20  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in:
	* gnome-vfs.mime: added audio/x-ms-wax (Windows Audio Playlist)
	mime-type

2003-11-17  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: .m4a for MPEG-4 audio

2003-11-17  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in: added MPEG-4 audio detection and mime-type
	(audio/x-m4a)

2003-11-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: added type audio/x-ms-asf (seems to be used
	for audio-only ASF streams)

2003-10-27  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: added Cinelerra editing sheets magic
	(Closes: #125489)

2003-10-12  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: added image/pjpeg as a possible JPEG mime-type
	(Closes: #124409), translate the bitorrent and javascript entries
	now that the string freeze is over

2003-10-12  Christophe Fergeau  <teuf@gnome.org>

	* gnome-vfs-mime-magic: made ID3 sniffing more selective (closes
	  #124335) 

2003-10-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in: added BitTorrent mime-types and magic

2003-09-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: added application/x-zip-compressed, the Outlook
	engineers ("I are one!") can't read either (Closes: #122947)

2003-09-15  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: added "pm" as a possible extension for text/x-perl
	(Closes: #121509)

2003-09-13  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: detect FLAC files with ID3 headers as FLAC
	* gnome-vfs.keys.in: add image/jpg, the MacOS X Mailer engineers can't
	read properly (Closes: #122184)

2003-09-10  Bastien Nocera  <hadess@hadess.net>

	* configure.in: pump up to 2.4.0
	* gnome-vfs.keys.in: make x-directory/smb-share use a component
	as the default handler (fixes smb browsing)

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

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

2003-08-30  Laurent Dhima  <laurenti@alblinux.net>

	* configure.in: Added "sq" to ALL_LINGUAS.
	
2003-08-29  Bastien Nocera  <hadess@hadess.net>

	* check-mime.pl: add default_application_id as an expected key
	* gnome-vfs.keys.in: revert some change from the previous commit
	to not remove Marco's changes

2003-08-29  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in: fix a bunch of warnings from check-mime.pl,
	add eog and the image view as a handler for image/x-ico mime-types

2003-08-25  Marco Pesenti Gritti  <marco@gnome.org>

	* gnome-vfs.keys.in:

	Make epiphany default handler for text/html.

2003-08-20  Luis Villa <louie@ximian.com>

	* gnome-vfs.applications: add epiphany, based on galeon entry

2003-08-18  Luis Villa <louie@ximian.com>

	* gnome-vfs.mime: add 'mrproject' extension for mrproject files
	* gnome-vfs.keys.in: make epiphany and galeon preferred over
	mozilla where appropriate
	* gnome-vfs.keys.in: fix tabbing of x-javascript entry. Left lack
	of translation because of string freeze.

2003-08-13  Christian Neumair  <chris@gnome-de.org>

	* gnome-vfs.applications: Use AbiWord 2.0 executable.
	* gnome-vfs.keys.in: Make Wine the default application for MS DOS
	executables.

2003-08-07  Bastien Nocera  <hadess@hadess.net>

	* .cvsignore: upd
	* configure.in: 2.3.1 is out

2003-07-28  Mark McLoughlin  <mark@skynet.ie>

	* gnome-vfs.keys.in: make the default action for pdf to use
	the gpdf embedded viewer.

2003-07-22  Bastien Nocera  <hadess@hadess.net>

	* AUTHORS: spell my name properly
	* gnome-vfs.applications: added a vim application, changed the default
	command for gvim and vim to set the current directory to the directory
	the file is in (Closes: #114792)
	* gnome-vfs.keys.in: added vim as an option before plain vi

2003-07-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: Patch from Hidetoshi Tajima
	<hidetoshi.tajima@sun.com> to avoid duplicate Audio and Images entries
	in gnome-file-types-properties (Closes: #113938)

2003-07-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: added application/x-bzip2 mimetype (blame
	Sourceforge) (Closes: #117087), removed guitar as a possible handler,
	it's dead

2003-07-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: added blend and BLEND as possible suffixes for
	Blender files (Closes: #118024)

2003-07-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: Fix Real and Blender mime-types to go through
	check-mime.pl

2003-07-15  Frederic Crozat  <fcrozat@mandrakesoft.com>

	* gnome-vfs.keys.in: use gpdf if available.

2003-07-12  Joël Brich <joel.brich@laposte.net>

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

2003-07-09  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: .mp3 files are now audio/mpeg

2003-07-02  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.mime: only .ram files are playlists, not the others,
	added rv as a possible extension of Real Media stuff, removed
	http:// as a possible magic for Real Networks file, too many
	false positives

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

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:
	Add support for Blender files
	
2003-06-17  Bastien Nocera  <hadess@hadess.net>

	* .cvsignore: cleanup
	* check-mime.pl: don't warn on now expected startup_notify entry
	* gnome-vfs.keys.in: added MagicPoint presentations
	* gnome-vfs.mime: added as well

2003-06-11  Alexander Larsson  <alexl@redhat.com>

	* gnome-vfs.keys.in:
	Add EOG collection to short list

	* gnome-vfs.mime:
	Add .lo to object file extensions

2003-06-11  Jon Svendsen  <jon-sven@frisurf.no>

	* gnome-vfs.applications: Add startup_notify=true for applications
	with stable releases supporting freedesktop.org startup notification

2003-06-05  Samúel Jón Gunnarsson  <sammi@techattack.nu>

	* configure.in: Added "is" into ALL_LINGUAS

2003-06-03  Seth Nickell  <snickell@stanford.edu>

	* check-mime.pl:
	* gnome-vfs.applications:

	Update to use the "use_gnomevfs" flag, which should
	be set on any applications that support GnomeVFS so
	Nautilus et al will know that they support "all" URIs.

2003-06-02  Seth Nickell  <snickell@stanford.edu>

	* AUTHORS:

	Make Bastien do the work.
	
2003-05-26  Kenneth Rohde Christiansen  <kenneth@gnu.org>

	* configure.in: Added 'li' to ALL_LINGUAS

2003-05-25  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in:
	* gnome-vfs.mime: s/wmx/wvx/ (I think I'm dyslexic)

2003-05-25  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in:
	* gnome-vfs.mime: added a name nice for "video/x-ms-wmx" files

2003-05-23  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: add the application/x-smb-printer mime-type
	for the new SMB method

2003-05-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: remove false positives detection with help
	from Justin Frankel from Nullsoft

2003-05-20  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: it's video/x-nsv, not video/x-nsf

2003-05-20  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: added video/x-nsf mime-type from Nullsoft, fixed
	placement of the samba share directory

2003-05-19  Christian Neumair  <chris@gnome-de.org>

	* gnome-vfs.keys.in: Reduced number of translatable strings by 1 by
	assimilating two similar strings.

2003-05-13  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: added a description for x-directory/smb-share

2003-05-11  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: another small magic bit for asx playlists
	(forgot about lowercase...)

2003-05-06  Danilo Å egan  <dsegan@gmx.net>

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

2003-05-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in: Added entry for epiphany bookmarks file

2002-05-28  Ricardo Fernández Pascual  <ric@users.sourceforge.net>

	* gnome-vfs-mime-magic
	* gnome-vfs.keys.in
	* gnome-vfs.mime: Added entries for xbel, netscape and mozilla 
	bookmarks formats. (Modified by Bastien Nocera <hadess@hadess.net>,
	we should use x- prefixes for non IANA mime-types)

2003-05-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: added "ltx" extension for LaTeX files (patch by
	Ross Burton <r.burton@180sw.com>) (Closes: #107197)

2003-05-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:
	* icons/Makefile.am:
	* icons/gnome-application-ogg.png:
	* icons/gnome-application-x-ogg.png: move application/x-ogg to
	application/ogg, but leave the description and handlers intact
	(Closes: #105838)

2003-05-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: added TTC extension for True Type fonts
	(Closes: #99947)

2003-05-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: added Applix "Presents" presentations
	(Closes: #78362)

2003-05-05  Telsa Gwynne  <hobbit@aloss.ukuu.org.uk>
                                                                                
        * configure.in: Added cy to ALL_LINGUAS
        * po/cy.po: Added

2003-05-04  Taneem Ahmed  <taneem@eyetap.org>

	* configure.in: Added "bn" in ALL_LINGUAS

2003-05-02  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: move down the ranking the tests to recognise
	XML files, and move the xml-derived formats above it. This fixes
	detection of uncompressed Dia, Gnumeric and Abiword documents
	(Closes: #110958)

2003-04-26  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: add magic for some MPEG program streams

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

	* configure.in: Added "ar" "cs" to ALL_LINGUAS.

2003-04-16  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: added more magic for ASF and ASX files, and
	for MP3s with padded headers (ie. broken)

2003-04-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: more Real video mime magic

2003-04-04  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: SMIL playlists could be recognised as HTML,
	moved tests up the rank

2003-04-04  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: added more magic for Real playlists files and 
	SMIL playlists

2003-04-02  Paolo Maggi  <paolo.maggi@polito.it>

	* gnome-vfs-mime-magic: added a simple rule to recognise xml files

	* gnome-vfs.keys.in: added desription for text/x-po (gettext 
	  translation)

	* gnome-vfs.mime: text/x-patch and text/x-po

2003-04-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: added Corel Draw magic, mime-type and description

2003-03-29  Andrew Sobala  <aes@gnome.org>

	* gnome-vfs.keys.in: add descriptions for application/x-gnome-theme
	and application/x-gnome-theme-installed, from themus, as HEAD is no
	longer string-frozen.

2003-03-29  Christian Schaller <uraeus@gnome.org>
	* Added pascal, asembler, yacc and ape mimetypes
	* Removed icons dir from build
	* Updated SPEC file to include latest changes
	* Set version to 2.3
	* make a gnome 2.2 branch
	* Merge Red Hat's patches 

2003-03-29  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: fix up the usage of Caps in the descriptions
	* gnome-vfs.mime: tabs not spaces

2003-03-27  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: added application/x-ipod-firmware that
	recognises the iPod Firmware files

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

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

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

	* configure.in: Added "ml" to ALL_LINGUAS

2003-03-04  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: more magic for ASF reference files (->asx)

2003-02-28  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: added magic for Philips MPEG-4 files

2003-02-22  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: detect ASF videos by content

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

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

2003-02-18  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: detect realaudio playlist files properly

2003-02-10  Mohammad DAMT  <mdamt@bisnisweb.com>

	* po/id.po: Added Indonesian translation
	* configure.in: Added "id" to ALL_LINGUAS

2003-02-02  Andrew Sobala  <aes@gnome.org>

	* gnome-vfs.keys.in: reverting the string-freeze breaking change

2003-02-02  Andrew Sobala  <aes@gnome.org>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
          add x-gnome-theme and x-gnome-theme-installed

2003-02-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: added iso as a possible extension for ISO images

2003-02-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: added svgz as a possible extension for SVG files
	(reported by Christian Schaller, following additions to librsvg)

2003-02-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: CDXA RIFF data is MPEG video (Closes: #104930)

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

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

2003-01-17  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: added pps suffix for PowerPoint files

2003-01-09  Alex Duggan  <aldug@gnome.org>

	* AUTHORS: added Seth Nickell to AUTHORS file,
	fixes #100790

2002-01-07  Naba Kumar  <naba@gnome.org>

	* configure.in: Added hi (hindi) in ALL_LINGUAS
	
2003-01-02  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.mime:

	Add entry for application/x-palm-database

2002-12-13  Frederic Crozat  <fcrozat@mandrakesoft.com>

	* gnome-vfs-mime-magic: added OpenType font detection and 
	some missing Type1 font magic
	* gnome-vfs.keys.in: added application/x-font-otf

2002-12-05  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: added ISO image detection
	* gnome-vfs.keys.in: added desc for application/x-iso-image

2002-11-10  Alexander Kirillov  <kirillov@math.sunysb.edu>

	* icons/gnome-application-x-dvi.png: new file, copied from
	Ximian-South theme (fixes bug 94945)
	* icons/Makefile.am: added   gnome-application-x-dvi.png
	

2002-11-08  Thomas Vander Stichele <thomas at apestaart dot org>

        * gnome-vfs-mime-magic:
        * gnome-vfs.applications:
        * gnome-vfs.keys.in:
        * gnome-vfs.mime: added flac (lossless audio compression)

2002-11-06  Christophe Fergeau <teuf@users.sourceforge.net>

	* gnome-vfs-mime-magic: added gzip 

2002-11-04  Alexander Kirillov <kirillov@math.sunysb.edu>

	* gnome-vfs.keys.in: added an icon for text/x-tex (same one as 
	  application/x-tex)

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

	* configure.in: Added Belarusian to ALL_LINGUAS

2002-10-31  Thomas Vander Stichele <thomas at apestaart dot org>

        * icons/: added flac icon from jimmac

2002-10-25  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.mime: asx isn't asf

2002-10-25  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in:
	* gnome-vfs.mime: add Microsoft ASX playlist format's mimetype

2002-10-21  Seth Nickell  <snickell@stanford.edu>

	* icons/gnome-audio-prs.sid.png:

	Icon from Linus Walleij
	
2002-10-06  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in: fix all the warnings from check-mime.pl
	* gnome-vfs.mime: added TODO as text/x-readme

2002-09-30  Marco Pesenti Gritti  <marco@it.gnome.org>

	* gnome-vfs.keys.in: Add audio/mpeg entry and rename audio/x-mpeg
	* gnome-vfs.mime: Add audio/mpeg for mp1 extension
	* gnome-vfs.applications: Use audio/mpeg

2002-09-04  Alex Graveley  <alex@ximian.com>

	* gnome-vfs.applications: Add -p to gnome-sound-recorder command
	so sound files are played on startup.  Fixes bug #90959.

2002-08-20  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Add entry for shoutcast playlist (audio/x-scpls)
	
2002-08-18  James Willcox  <jwillcox@cs.indiana.edu>

	* gnome-vfs.applications:  gedit expects URIs, not local paths

2002-08-17  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: added gimp as a possible application for g3fax,
	pcx, targa and xwd images
	* check-mime.pl: s/category/_category/ so the script doesn't print
	boatloads of useless warnings about Jody's change

2002-08-07  Jody Goldberg <jody@gnome.org>

	* gnome-vfs.keys.in : now that 2.0.1 is locked we can mark the
	  categories as translatable.

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

	* gnome-vfs-mime-magic: re-order so check-mime passes.

	* gnome-vfs.keys.in: ditto.

2002-08-04  Bastien Nocera  <hadess@hadess.net>

	* CVS_COMMITS: added
	* gnome-vfs-mime-magic: added magic for Apple's new .mp4 files

2002-08-02  Thomas Meeks  <thomas@imaginator.com>

	* gnome-vfs-mime-magic: Added image/x-dcm, x-sun-raster, x-sgi,
	x-pcx, x-dib, x-fits, x-fpx, x-icb, x-dpx

	* gnome-vfs.keys.in: Added appropiate file descriptions and viewers

	* gnome-vfs.mime: Added above extensions also added miff, gray,
	palm, and pict

2002-07-12  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in: Added MacBinaryII file types
	fix warning about the position of the vfolder-desktop mime-type in
	gnome-vfs.keys.in

2002-07-02  Peteris Krisjanis <pecisk@inbox.lv>

	* configure.in: (ALL_LINGUAS) added Latvian (lv) support.

2002-06-29  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.mime:

	Change extension for C++ headers from "hp" to "hpp".

2002-06-28  Damon Chaplin  <damon@ximian.com>

	* gnome-vfs.keys.in: changed default action for text/html to
	application. We're doing this as nautilus 2.0 doesn't have a decent
	html component and it currently displays it as ascii text (bad!).
	Unfortunately this change will also affect nautilus 1.4 users, who
	may prefer the mozilla component. They'll have to change their default
	view themselves. Fixes bug #81615. 

2002-06-26  Jakub Steiner <jimmac@ximian.com>

	* icons/Makefile.am: added i-web and i-network
	* icons/i-network.png: 
	* icons/i-web.png: hadess' request

2002-06-26  Bastien Nocera  <hadess@hadess.net>

	* icons/Makefile.am: added 2 files from ximian-south by jimmac
	* icons/i-ftp.png: added
	* icons/i-nfs.png: updated
	* icons/i-smb.png: added

2002-06-19  Jakub Steiner <jimmac@ximian.com>

	* icons/gnome-application-vnd.sun.xml.calc.png:
	* icons/gnome-application-vnd.sun.xml.impress.png:
	* icons/gnome-application-vnd.sun.xml.writer.png: update labels

2002-06-19  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:

	Nasty hack to allow XMMS and FreeAmp to only handle
	MP3 files over http: (not playlists).

	Patch from Ben Liblit.

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

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

2002-06-12  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:

	Change binary name to gnome-sound-recorder
	
2002-06-12  Jakub Steiner <jimmac@ximian.com>

	* icons/gnome-application-x-abiword.png: forgot to update this
	  one too

2002-06-12  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Release 2.0.0.

2002-06-11  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.keys.in:

	Don't use ogg123 for OGG files, prefer xmms & freeamp.

2002-06-06  Rajeev Karale <rajeev.karale@wipro.com>

	* icons/Makefile.am : Bigfix #84350. Fix for document-icons not 
	  getting installed properly. 

2002-06-03  Jody Goldberg <jody@gnome.org>

	* gnome-vfs.keys.in : Doh! the category should be 'Images' not 'Image'

2002-05-31  Alex Graveley  <alex@ximian.com>

	* gnome-vfs.mime: Add image/x-emf, image/x-pcx, image/x-photo-cd,
	image/x-pict mimetypes.

	* gnome-vfs.applications: Add openoffice application, add new
	mimetypes as supported by staroffice.

	* gnome-vfs.keys.in: Add openoffice as a supported application
	wherever staroffice is used.  Add staroffice/openoffice
	application handlers for added mime types.

2002-05-31  Jakub Steiner <jimmac@ximian.com>

	* icons/i-dvd.png: we can't use the DVD logo I was told. 
	* icons/gnome-text-abiword.png: don't use the app icon for abi
     files
	* icons/gnome-text-x-lyx.png: LyX files

Thu May 30 09:32:41 2002  George Lebl <jirka@5z.com>

	* gnome-vfs.keys.in: add x-directory/vfolder-desktop

2002-05-29  Jody Goldberg <jody@gnome.org>

	* gnome-vfs.keys.in : Add more categories.

2002-05-24  Alex Graveley  <alex@ximian.com>

	* gnome-vfs-mime-magic: Move audio/x-wav matchers above
	audio/x-riff, as wav files start with RIFF, and were being wrongly
	identified as audio/x-riff.

2002-05-23  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.mime:

	Add cls and sty extensions to TeX type (x-tex). Probably should be
	split into LaTex types post string freeze.
	
2002-05-20  Jaka Mocnik  <jaka@gnu.org>

	* gnome-vfs.keys.in: added GGV control component iids for
	application/postscript mime type. made component the default
	action type.

2002-05-20  Bastien Nocera  <hadess@hadess.net>

	* icons/Makefile.am:
	* icons/i-dvd.png: added a crummy home-made icon for DVDs

2002-05-18  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added "mk" to ALL_LINGUAS.
	
2002-05-16  Bastien Nocera  <hadess@hadess.net>

	* icons/Makefile.am:
	* icons/i-cdrom-audio.png: add a dodgy home-made icon for Audio CDs

2002-05-13  Jacob Berkman  <jacob@ximian.com>

	* gnome-vfs-mime-magic: read more byts for svgs, as some have a
	comment before the <!DOCTYPE> tag which broke scalable gorilla

2002-05-06  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs.keys.in: added gnome-audio-x-it.png as the icon for
	audio/x-it
	* icons/Makefile.am:
	* icons/gnome-audio-x-it.png: updated

2002-05-01  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: added magic for Impulse Tracker modules

2002-05-01  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added Basque (eu) and Vietnamese (vi) to ALL_LINGUAS

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

	* check-mime.pl:

	Update to handle component keyword change.

	_ALWAYS_ run this script before checking in please.

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Add several new types, change icon names.
	
	* icons/Makefile.am:
	* icons/gnome-application-pdf.png:
	* icons/gnome-application-pgp-encrypted.png:
	* icons/gnome-application-pgp-keys.png:
	* icons/gnome-application-x-applix-spreadsheet.png:
	* icons/gnome-application-x-applix-word.png:
	* icons/gnome-application-x-c-header.png:
	* icons/gnome-application-x-c-source.png:
	* icons/gnome-application-x-cc-source.png:
	* icons/gnome-application-x-deb.png:
	* icons/gnome-application-x-gnome-app-info.png:
	* icons/gnome-application-x-jar.png:
	* icons/gnome-application-x-java-byte-code.png:
	* icons/gnome-application-x-java-source.png:
	* icons/gnome-application-x-mrproject.png:
	* icons/gnome-application-x-php.png:
	* icons/gnome-application-x-python-bytecode.png:
	* icons/gnome-application-x-rpm.png:
	* icons/gnome-image-pbm.png:
	* icons/gnome-image-psd.png:
	* icons/gnome-image-xwd.png:
	* icons/gnome-pack-deb.png:
	* icons/gnome-pack-rpm.png:
	* icons/gnome-text-css.png:
	* icons/gnome-text-x-c++.png:
	* icons/gnome-text-x-c-header.png:
	* icons/gnome-text-x-c.png:
	* icons/gnome-text-x-csh.png:
	* icons/gnome-text-x-install.png:
	* icons/gnome-text-x-java.png:
	* icons/gnome-text-x-python.png:
	* icons/gnome-text-x-sh.png:
	* icons/gnome-video-quicktime.png:
	* icons/gnome-video-x-ms-asf.png:
	* icons/gnome-video-x-msvideo.png:

	Update icons, and add some new ones from Tuomas.
	
2002-04-23  Jody Goldberg <jody@gnome.org>

	* configure.in : post release version bump.

2002-04-23  Jody Goldberg <jody@gnome.org>

	* Release 1.0.7

2002-04-23  Jody Goldberg <jody@gnome.org>

	* configure.in : bump version.

2002-04-23  Jody Goldberg <jody@gnome.org>

	* gnome-vfs.keys.in : gnumeric is now usable as a component

2002-04-21  Anders Carlsson  <andersca@gnu.org>

	* gnome-vfs.keys.in:
	Doh, it's "video", not "vidoe".
	
	* icons/Makefile.am:
	Add trailing slash.
	
2002-04-21  Anders Carlsson  <andersca@gnu.org>

	* gnome-vfs.keys.in:
	Fix the component id mess, we now use 
	"short_list_component_iids" for gnome-vfs 2
	and "short_list_component_iids_<userlevel>" for
	gnome-vfs 1. Also add Haskell and WMV definitions.
	
	* gnome-vfs.mime:
	Add haskell and WMV extensions.
	
	* icons/Makefile.am:
	* icons/gnome-text-x-haskell.png:
	* icons/gnome-text-x-literate-haskell.png:
	* icons/gnome-video-x-ms-wmv.png:
	Add Haskell and WMV icons.
	
2002-04-18  Michael Meeks  <michael@ximian.com>

	* gnome-vfs.keys.in: update all the OAFIIDs
	to the new nautilus versions, needs a new
	nautilus to play well.

2002-03-28  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Bump version number to 1.0.6

2002-03-19  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:
	* gnome-vfs.mime:

	Add Wine for windows executables.

	Fix regexp for anim files.
	
2002-03-16  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Up the version number to 1.0.5.
	
	* gnome-vfs-mime-magic:

	Add magic for detecting libraries and core files, from
	Havard Wigtil (sorry, the character didn't want to stick
	in the file correctly :-)
	
	* gnome-vfs.keys.in:

	Better descriptions for .m3u files and for RealMedia
	files.
	
2002-03-16  Wang Jian  <lark@linux.net.cn>

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

2002-03-05  Seth Nickell  <snickell@stanford.edu>

	* configure.in:
	* icons/Makefile.am:
	* icons/gnome-text-plain.png:

	Delete icon because Nautilus wants to have text previews.
	
2002-03-03  Bastien Nocera  <hadess@hadess.net>

	* icons/Makefile.am: install the icons mentioned underneath there

2002-02-27  Bastien Nocera  <hadess@hadess.net>

	reviewed by: Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime: added ROM filetypes,
	gtktalog, zsh, binhex and stuffit. Added file-roller as the default
	program for archives.
	* icons/gnome-application-x-dc-rom.png:
	* icons/gnome-application-x-gameboy-rom.png:
	* icons/gnome-application-x-genesis-rom.png:
	* icons/gnome-application-x-gtktalog.png:
	* icons/gnome-application-x-msx-rom.png:
	* icons/gnome-application-x-n64-rom.png:
	* icons/gnome-application-x-nes-rom.png:
	* icons/gnome-application-x-sms-rom.png:
	* icons/gnome-application-x-stuffit.png:
	* icons/gnome-text-x-patch.png:
	* icons/gnome-text-x-perl.png:
	* icons/gnome-text-x-zsh.png:
	* icons/gnome-text-xml.png: added some (!) icons
	by jimmac

2002-02-25  Hasbullah Bin Pit <sebol@ikhlas.com>

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

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

	* icons/Makefile.am:
	* icons/gnome-application-vnd.stardivision.calc.png:
	* icons/gnome-application-vnd.stardivision.impress.png:
	* icons/gnome-application-vnd.stardivision.writer.png:
	* icons/gnome-application-vnd.sun.xml.calc.png:
	* icons/gnome-application-vnd.sun.xml.impress.png:
	* icons/gnome-application-vnd.sun.xml.writer.png:
	* icons/gnome-application-x-staroffice-words.png:

	Add icons for the most common of these document types.
	
2002-02-21  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Add a huge hoarde of StarOffice and OpenOffice document types
	as specified by: 
	http://framework.openoffice.org/documentation/mimetypes/mimetypes.html
	
2002-02-21  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:

	Temporarily disable "zip" magic. Its more important to
	detect StarOffice files in the release than the occasional
	zip file without an extension.

2002-02-18  Bastien Nocera  <hadess@hadess.net>

	* gnome-vfs-mime-magic: added mpeg transport stream from
	movieshaker files, as video/mpeg

2002-02-14  Tõivo Leedjärv  <leedjarv@interest.ee>

	* configure.in: Added et to ALL_LINGUAS.

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

	* configure.in:

	Release 1.0.3.

2002-02-11  Gregory Leblanc  <gleblanc@linuxweasel.com>

	* gnome-mime-data.spec.in: Fixed to make actually work.

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

	* gnome-vfs-mime-magic:
	* gnome-vfs.mime:
	* icons/Makefile.am:
	* icons/gnome-application-x-abiword.png:

	Change abiword's default type to be appliction/x-abiword.
	This is advised by DV, and seems better to me too
	(the AbiWord people don't seem to have a preference). Its
	also what KDE currently uses.
	
2002-02-08  Darin Adler  <darin@bentspoon.com>

	* check-mime.pl: Add new keywords so the check doesn't fail.

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

	* gnome-vfs-mime-magic:

	Add magic for the "new" AbiWord format.

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

	* icons/Makefile.am:
	* icons/gnome-text-abiword.png:

	Add an AbiWord icon. Should be replaced with an icon
	that is "in theme" though.
	
2002-02-06  Larry Ewing  <lewing@ximian.com>

	* gnome-vfs.applications: use gimp-remote --new rather than just
	gimp so that calls don't start multiple gimp instances.

2002-02-01  Michael Meeks  <michael@ximian.com>

	* gnome-vfs.keys.in: replace EOG with image-viewer.

2002-01-31  Bradford Hovinen  <hovinen@ximian.com>

	* gnome-vfs.keys.in: Added category, use_category_default fields

2002-01-30  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Bump version number to 1.0.2.
	
2002-01-30  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.keys.in:

	Update "GNOME application launcher" to
	"application launcher", since KDE uses .desktop files
	too.

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

	* icons/gnome-application-x-gnome-app-info.png: 
	Update icon.

2002-01-27  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:

	Remove magic for "detecting" C source code, because it
	often misfires and I can't think of a situation where
	source code isn't properly identified by extension
	anyway.

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

	* configure.in (AC_OUTPUT):
	* Makefile.am (SUBDIRS): move man page from gnome-vfs here

2002-01-21  Seth Nickell  <snickell@stanford.edu>

	* icons/gnome-application-x-gnumeric.png:
	* icons/gnome-video-mpeg.png:

	Updated icons.

2002-01-21  Seth Nickell  <snickell@stanford.edu>

	* check-mime.pl:

	Update to look for icons in ./icons.
	
	* gnome-vfs.keys.in:

	Change a few weird icon_filename entries.
	
	* icons/Makefile.am:
	* icons/gnome-application-x-generic-spreadsheet.png:
	* icons/gnome-application-x-gnumeric.png:
	* icons/i-cdrom-192.png:
	* icons/i-fifo.png:
	* icons/i-harddisk-72.png:
	* icons/i-manual.png:
	* icons/i-music-12.png:
	* icons/i-music-24.png:
	* icons/i-music-36.png:
	* icons/i-nfs.png:
	* icons/i-sock.png:
	* icons/i-spreadsheet.png:

	Move more icons out of Nautilus.

2002-01-21  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:
	* configure.in:
	* gnome-vfs.keys.in:
	* icons/.cvsignore:
	* icons/Makefile.am:
	* icons/gnome-application-encapsulated_postscript.png:
	* icons/gnome-application-msword.png:
	* icons/gnome-application-pdf.png:
	* icons/gnome-application-pgp.png:
	* icons/gnome-application-postscript.png:
	* icons/gnome-application-qif.png:
	* icons/gnome-application-rtf.png:
	* icons/gnome-application-smil.png:
	* icons/gnome-application-vnd.lotus-1-2-3.png:
	* icons/gnome-application-vnd.ms-excel.png:
	* icons/gnome-application-vnd.ms-powerpoint.png:
	* icons/gnome-application-vnd.rn-realmedia.png:
	* icons/gnome-application-x-arj.png:
	* icons/gnome-application-x-backup.png:
	* icons/gnome-application-x-blender.png:
	* icons/gnome-application-x-bzip.png:
	* icons/gnome-application-x-c-header.png:
	* icons/gnome-application-x-c-source.png:
	* icons/gnome-application-x-cc-source.png:
	* icons/gnome-application-x-compress.png:
	* icons/gnome-application-x-dia-diagram.png:
	* icons/gnome-application-x-e-theme.png:
	* icons/gnome-application-x-font-sunos-news.png:
	* icons/gnome-application-x-generic-spreadsheet.png:
	* icons/gnome-application-x-gnome-app-info.png:
	* icons/gnome-application-x-gzip.png:
	* icons/gnome-application-x-jar.png:
	* icons/gnome-application-x-java-source.png:
	* icons/gnome-application-x-kde-app-info.png:
	* icons/gnome-application-x-killustrator.png:
	* icons/gnome-application-x-kpresenter.png:
	* icons/gnome-application-x-kspread.png:
	* icons/gnome-application-x-kword.png:
	* icons/gnome-application-x-ogg.png:
	* icons/gnome-application-x-php.png:
	* icons/gnome-application-x-reject.png:
	* icons/gnome-application-x-scheme-source.png:
	* icons/gnome-application-x-sql.png:
	* icons/gnome-application-x-staroffice-presentation.png:
	* icons/gnome-application-x-staroffice-words.png:
	* icons/gnome-audio-ac3.png:
	* icons/gnome-audio-basic.png:
	* icons/gnome-audio-midi.png:
	* icons/gnome-audio-mpeg.png:
	* icons/gnome-audio-ulaw.png:
	* icons/gnome-audio-x-aiff.png:
	* icons/gnome-audio-x-bmx.png:
	* icons/gnome-audio-x-mod.png:
	* icons/gnome-audio-x-pn-realaudio.png:
	* icons/gnome-audio-x-s3m.png:
	* icons/gnome-audio-x-stm.png:
	* icons/gnome-audio-x-voc.png:
	* icons/gnome-audio-x-wav.png:
	* icons/gnome-audio-x-xi.png:
	* icons/gnome-audio-x-xm.png:
	* icons/gnome-audio.png:
	* icons/gnome-compressed.png:
	* icons/gnome-font-afm.png:
	* icons/gnome-font-bdf.png:
	* icons/gnome-font-linux-psf.png:
	* icons/gnome-font-ttf.png:
	* icons/gnome-font-x-pcf.png:
	* icons/gnome-http-url.png:
	* icons/gnome-image-bmp.png:
	* icons/gnome-image-generic.png:
	* icons/gnome-image-gif.png:
	* icons/gnome-image-ief.png:
	* icons/gnome-image-jpeg.png:
	* icons/gnome-image-pbm.png:
	* icons/gnome-image-pgm.png:
	* icons/gnome-image-png.png:
	* icons/gnome-image-pnm.png:
	* icons/gnome-image-ppm.png:
	* icons/gnome-image-psd.png:
	* icons/gnome-image-ras.png:
	* icons/gnome-image-rgb.png:
	* icons/gnome-image-svg.png:
	* icons/gnome-image-tga.png:
	* icons/gnome-image-tiff.png:
	* icons/gnome-image-x-3ds.png:
	* icons/gnome-image-x-applix-graphic.png:
	* icons/gnome-image-x-lwo.png:
	* icons/gnome-image-x-lws.png:
	* icons/gnome-image-x-xfig.png:
	* icons/gnome-image-xbm.png:
	* icons/gnome-image-xcf.png:
	* icons/gnome-image-xpm.png:
	* icons/gnome-image-xwd.png:
	* icons/gnome-library.png:
	* icons/gnome-objectfile.png:
	* icons/gnome-pack-deb.png:
	* icons/gnome-pack-rpm.png:
	* icons/gnome-package.png:
	* icons/gnome-tex.png:
	* icons/gnome-text-html.png:
	* icons/gnome-text-plain.png:
	* icons/gnome-text-x-authors.png:
	* icons/gnome-text-x-c.png:
	* icons/gnome-text-x-copying.png:
	* icons/gnome-text-x-credits.png:
	* icons/gnome-text-x-install.png:
	* icons/gnome-text-x-makefile.png:
	* icons/gnome-text-x-readme.png:
	* icons/gnome-text-x-sql.png:
	* icons/gnome-textfile.png:
	* icons/gnome-video-mpeg.png:
	* icons/gnome-video-quicktime.png:
	* icons/gnome-video-x-ms-asf.png:
	* icons/gnome-video-x-msvideo.png:
	* icons/gnome-x-font-afm.png:
	* icons/gnome-x-troff-man.png:
	* icons/i-blockdev.png:
	* icons/i-cdrom.png:
	* icons/i-chardev.png:
	* icons/i-core.png:
	* icons/i-executable.png:
	* icons/i-floppy.png:
	* icons/i-harddisk.png:
	* icons/i-music.png:
	* icons/i-printer.png:
	* icons/i-regular-72.png:
	* icons/i-regular-96.png:
	* icons/i-regular.png:
	* icons/i-regular.xml:
	* icons/i-zipdisk.png:

	Move document icons into gnome-mime-data out of Nautilus.
	Use Tigert/Jimmac's new document icons.
	
2001-12-18  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Add magic for detecting mbox files.	
	
Sun Dec  2 15:58:54 2001  Owen Taylor  <otaylor@redhat.com>

	* configure.in: Use AM_GLIB_GNU_GETTEXT; saves po/ChangeLog
	conflicts and needing an intl directory.

==========1.0.1============

2001-12-01  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Bump version to 1.0.1.

	
2001-12-01  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:

	Add dpkg for installing Debian packages
	
2001-12-01  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Add PSID data type.
	
2001-12-01  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.keys.in:
	Add GIMP entries to compressed GIMP files.	
	
2001-11-18  Carlos Perelló Marín <carlos@gnome-db.org>

	* configure.in (ALL_LINGUAS): Added pt

2001-11-12  jacob berkman  <jacob@ximian.com>

	* configure.in: use the gnome 2 gettext macro, as the gnu one
	can't be made to be happy

2001-11-11  jacob berkman  <jacob@ximian.com>

	* configure.in: remove all the gnome stuff, since we don't need
	any gnome things

	* Makefile.am: use intltool

2001-11-09  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:

	Remove @INTLTOOL_KEYS_RULE@ since we are using XML_I18N_TOOLS
	stuff instead for compatibility with GNOME1.
	Use XML_I18N_MERGE_KEYS_RULE instead.
	
	* configure.in:

	Finish making work on GNOME1. Should work on both GNOME1 and
	GNOME2 now.

2001-11-09  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Steps towards build on GNOME1 platform as well as GNOME2.

2001-11-05  Darin Adler  <darin@bentspoon.com>

	* configure.in: Remove some commented-out old stuff.

2001-11-02  jacob berkman  <jacob@ximian.com>

	* configure.in: glib's Makefile.in.in expects GETTEXT_PACKAGE to
	be set

	* Makefile.am (SUBDIRS): add po

	* gnome-mime-data.spec.in: include pkgconfig file

2001-11-02  Darin Adler  <darin@bentspoon.com>

	* .cvsignore: Ignore gnome-vfs.keys. Don't bother
	ignoring things that just aren't here.
	* gnome-vfs-mime-magic: Remove some spaces to make
	check-mime.pl happy.
	* gnome-vfs.keys.in: Remove file type extensions from
	all icon filenames for clarity. Remove all icon filenames
	that exactly match the MIME type. We only need an explicit
	mention of the filename if it's not "gnome-<type>", where
	"<type>" is the MIME type with the "/" replaced by "-".

2001-11-02  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Add LyX Document Processor and text/x-lyx
	
2001-11-02  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.keys.in:

	Make AbiWord the default application for Word files.

2001-11-02  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.keys.in:

	Make Gnumeric the default application for Excel files.

2001-11-01  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:

	Add check-mime.pl to EXTRA_DIST.
	
2001-11-01  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Change version number so people aren't confused...this should
	end up working with GNOME1.

2001-11-01  Seth Nickell  <snickell@stanford.edu>

	* autogen.sh:

	Give up and use GNOME2 macros...it works with GnomeVFS2
	now which is the most important part for now.

2001-11-01  Seth Nickell  <snickell@stanford.edu>

	* .cvsignore:

	Add a cvs ignore file.

=Initial checkin to a seperate module.=

2001-10-24  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:

	Remove really questionable mime magic for detecting C/C++ files
	based on comment characters. This incorrectly detected Java files,
	and I don't know of an instance where a C/C++ file didn't
	have an extension, so mime magic really isn't useful here.
	
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:

	Add x-dvi (already on the stable branch).
	
2001-10-24  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Add C headers as a seperate type (helps out gIDE).

2001-10-02  Darin Adler  <darin@bentspoon.com>

	* Makefile.am: Changed from xml-i18n-tools to intltool.

2001-09-21  Havoc Pennington  <hp@redhat.com>

	* Makefile.am (sysconf_DATA): revert rename of
	gnome-vfs-mime-magic

	* gnome-vfs-mime-magic: add a comment about the desktop entry
	stuff being somewhat wrong

2001-09-18  Havoc Pennington  <hp@redhat.com>

	* Makefile.am (gnome-vfs2-mime-magic): rename gnome-vfs-mime-magic

2001-08-22  Dan Winship  <danw@ximian.com>

	* gnome-vfs.mime: Map .ics to text/calendar

	* gnome-vfs-mime-magic: Add BEGIN:VCALENDAR so icalendar objects
	aren't identified as text/plain

2001-08-06  Darin Adler  <darin@bentspoon.com>

	* gnome-vfs.applications: Corrected name of AbiWord executable.
	According to Dom and ALex Larsson, it's AbiWord, not abiword.

Fri Jul 27 14:22:27 2001  Jonathan Blandford  <jrb@redhat.com>

	* gnome-vfs-mime-magic: Make it more precise

Fri Jul 27 11:41:16 2001  Jonathan Blandford  <jrb@redhat.com>

	* gnome-vfs-mime-magic: sniff out .desktop files.

2001-07-16  Darin Adler  <darin@bentspoon.com>

	* gnome-vfs.keys.in: Remove more ntl_web_browser entries.

2001-07-11  Darin Adler  <darin@bentspoon.com>

	* gnome-vfs.applications: Roll out Seth's change to not pass
	URIs to the Gimp at all, and make it use paths for file: URIs
	and still work for http URIs.

2001-06-26  Darin Adler  <darin@bentspoon.com>

	* gnome-vfs.keys.in: Remove ntl_web_browser entries.

2001-06-14  Aaron Brick  <aaron@lithic.org>

	* gnome-vfs.keys.in:

	reverted application of the patch below, which was apparently
	ill-advised. more mysteries remain.

2001-06-13  Aaron Brick  <aaron@lithic.org>

	* gnome-vfs.keys.in:
	
	applied patch from Timothy Alan Chandler <fusion@heavywater.net>
	which corrects icon path and filenames. many were missing extension
	".png", and many needed to be preceded with the directory
	"nautilus/". NB: we suspect a kludge is in place which made this
	work before; it should be eliminated, afaict.

2001-06-13  Aaron Brick  <aaron@lithic.org>

	* changed my contact address for missing types.

2001-06-06  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:

	Add http URI support to VideoLAN.

2001-06-06  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:

	Added plaympeg, a solid player if a little simple.
	
2001-06-06  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:

	Add VideoLAN to the application list as the preferred player
	for MPEG files (http://www.videolan.org).
	
2001-05-24  Dan Winship  <danw@ximian.com>

	* gnome-vfs-mime-magic: Add an entry for text/x-vcard so they
	don't get misidentified as text/plain

2001-05-14  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs-mime-magic:

	Add more flexible checks for script files to handle things like
	'#! /bin/sh'.
	
	* gnome-vfs.applications:

	Change GIMP to not allow URIs. This seems to malfunction on
	many copies of the GIMP in the file:// case.

2001-05-01  Seth Nickell  <snickell@stanford.edu>

	* data/mime/gnome-vfs-mime-magic:

	Add PHP support to the magic mime database.

2001-05-01  Darin Adler  <darin@eazel.com>

	* gnome-vfs.applications: Update entry for The Gimp so it
	knows that it can use http URLs.

2001-04-25  Darin Adler  <darin@eazel.com>

	* gnome-vfs.applications: Put in alphabetical order.

2001-04-23  John Sullivan  <sullivan@eazel.com>

	* gnome-vfs.keys.in: Added can_be_executable
	flag to text/x-python so they will work as Nautilus scripts.

2001-04-20  Seth Nickell  <snickell@stanford.edu>

	* gnome-vfs.keys.in:
	Fix bug #7216, jbuilder in the application database but
	not listed for files of type text/x-java.
	
2001-03-01  Aaron Brick  <aaron@eazel.com>

	* added application/x-rar to the list of guitar's supported types
	in addition to its ambiguous alter-ego, /x-rar-compressed.

2001-02-28  Darin Adler  <darin@eazel.com>

	reviewed by: Pavel Cisler <pavel@eazel.com>

	Fixed bug 7043, java files execute by default now.

	* gnome-vfs.keys.in: Removed the lines that make compiled java
	execute java by default. We can return to this issue later, along
	with the general issue of how to handle "execute-like" entries in
	this file. Most of the applications have "edit-like"
	behavior. Also removed the line that made the default for opening
	Java source code be the Java compiler. We don't invoke a C
	compiler when you open a C source file and we don't want to do it
	for Java either. Also removed an icon name that doesn't correspond
	to an actual icon.

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

	reviewed by: Pavel Cisler <pavel@eazel.com>
	
	Fixed bug 5570, bmp file sometimes appears as an mp3 file
	
	* gnome-vfs-mime-magic:
	* gnome-vfs.mime:
	Add image/bmp rule. There was already information
	about this mime type in .keys

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

	reviewed by: Pavel Cisler <pavel@eazel.com>
	
	Fixed bug 7148, Flash files identified as mp3
	
	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:
	Add application/x-shockwave-flash information.
	
2001-02-28  Rebecca Schulman  <rebecka@eazel.com>

	reviewed by: Aaron Brick <aaron@eazel.com>

	Fix bugzilla.eazel.com bug 7093

	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	Remove gnorpm from the list of applications,
	since it doesn't actually open rpm files when
	they are passed as arguments.

2001-02-27  John Sullivan  <sullivan@eazel.com>

	reviewed by: Darin Adler <darin@eazel.com>

	Fixed bug 7095 (wrong icon used for HTML files in
	bookmarks & icon views)

	* gnome-vfs.keys.in: Removed icon for text/html. Nautilus has its
	own logic for dealing with html files that gets broken by a
	hard-wired icon here.  Maybe we should change the logic in
	Nautilus someday, but this is the safe right-before-release
	change.

2001-02-26  Seth Nickell  <seth@eazel.com>

	reviewed by: Darin Adler <darin@eazel.com>

	* gnome-vfs-mime-magic:
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Fix bugs 7033-7038 and 7050. Also fix unreported bug found last night
	wherein DVI files are recognized as MP3 by adding magic-mime numbers
	for DVI.

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

	reviewed by: John Sullivan <sullivan@eazel.com>

	More fixes after adding more checks to check-mime.pl.

	* gnome-vfs.applications: Fixed a typo where it said
	"expect_uirs".
	* gnome-vfs.keys.in: Fixed a couple of places that said
	"default_action" instead of "default_action_type". Got
	rid of some duplicate icon_filename entries. Fixed a few
	places that said "icon-filename".
	* gnome-vfs.mime: Fixed a place that said "regex.2"
	instead of "regex,2". Got rid of some stray "icon_filename".

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

	reviewed by: Pavel Cisler <pavel@eazel.com>

	* gnome-vfs-mime-magic:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:
	Ran check-mime.pl and fixed some of the problems it reported,
	including a bad pattern for application/x-applix-spreadsheet,
	non-translated description for application/qif, and many
	entries that were not in sorted order. Wrote bug reports for
	other problems it detected.

2001-02-25  Seth Nickell  <seth@eazel.com>

	reviewed by: Maciej Stachowiak <mjs@eazel.com>

	* gnome-vfs-mime-magic:
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:

	Added four bazillion applications and MIME types so we
	support all the GNOME 1.4 and extras applications and KOffice
	and lots of other random various applications and types.

2001-02-16  Aaron Brick  <aaron@eazel.com>

	* added pico (jpico)

2001-02-07  Aaron Brick  <aaron@eazel.com>

	* combed mc.keys for missed types, adding:

		application/x-slp
		application/x-tex (a duplicate)

		and dismissing the rest.

	* added a comment to the RPM-detecting magic.

2001-01-31  Rebecca Schulman  <rebecka@eazel.com>

	* gnome-vfs.keys.in:
	Fixed a typo in this file that was making 
	the vault unviewable by anything except mozilla.

2001-01-31  Darin Adler  <darin@eazel.com>

	* gnome-vfs.applications: Made check-mime happy by using a tab,
	not spaces, on the realplay line.

2001-01-30  Kenneth Christiansen  <kenneth@gnu.org>

	* gnome-vfs.mime: add abiword abw files.

2001-01-26  Aaron Brick  <aaron@eazel.com>

	* renamed realplayer executable "realplay"
	* added duplicate realplayer type application/vnd.rn-realmedia

2001-01-24  Aaron Brick  <aaron@eazel.com>

	* renamed "acrobat" "acroread" per the executable's name
	* prioritized xpdf above gv/ggv because its PDF handling is superior

2001-01-22  Darin Adler  <darin@eazel.com>

	* gnome-vfs-mime-magic:
	* gnome-vfs.applications:
	* gnome-vfs.keys.in:
	* gnome-vfs.mime:
	Got rid of minor whitespace anomalies -- always use tabs to
	indent, don't put any tab on blank lines, no trailing
	whitespace allowed.

2001-01-22  Aaron Brick  <aaron@eazel.com>

	* removed references to obsolete application/x-abiword
	* added description for text/x-troff-mm
	* added underscore to a couple of plain "description=" lines

2001-01-22  Darin Adler  <darin@eazel.com>

	* gnome-vfs.keys.in: Rolled in one more change.

2001-01-22  Darin Adler  <darin@eazel.com>

	* gnome-vfs.keys.in: Re-apply many changes that were lost
	when Kenneth created this file. Apparently he made it from
	and old version of gnome-vfs.keys.

2001-01-22  John Sullivan  <sullivan@eazel.com>

	Fixed bug 5845 (web bookmarks change to generic document
	icon after visiting)

	* gnome-vfs.keys.in:

	Removed all the lines that specify "i-regular" for an
	icon filename. "i-regular" is the default anyway, so 
	specifying it will have no useful effect. In the case
	of bug 5845, it had a bad effect (prevented the special
	web icon from being used). Aaron had intended to make
	this change a while back.

	Note: this bug was marked PR3 so we might want to make this
	simple change on the branched gnome-vfs, if there is one.

2001-01-19  Darin Adler  <darin@eazel.com>

	* gnome-vfs.keys.in: Call it a StuffIt archive, not a
	StuffIt! archive. Also get rid of some strangely placed
	blank lines that might have caused some trouble.

2001-01-19  John Sullivan  <sullivan@eazel.com>

	* gnome-vfs.keys.in:
	Marked text/x-sh as can_be_executable. This was
	an oversight from my earlier first pass at marking
	the executable MIME types. It was driving poor Seth crazy.

2001-01-19  Darin Adler  <darin@eazel.com>

	* Makefile.am: Oops. Missed one.

2001-01-19  Darin Adler  <darin@eazel.com>

	* .cvsignore: Ignore the generated gnome-vfs.keys file.
	* Makefile.am: Fix make rules to put NULL first, use lower-case
	for variables (to match xml-i18n-tools/README recommendations),
	and not repeat the keys files twice in the EXTRA_DIST list. Also,
	remove commented-out obsolete rules.

2001-01-18  Kenneth Christiansen  <kenneth@gnu.org>

	* gnome-vfs.keys.in: Removed some more
	translations. DON'T TRANSLATE THIS FILE ANYMORE
	Get cvs xml-i18n-tools instead and translate
	the pot file localed in po/.

2001-01-18  Kenneth Christiansen  <kenneth@gnu.org>

	* Makefile.am: Added support for xml-i18n-tools to
	manage the keys.in file.
	* gnome-vfs.keys: Removed.
	* gnome-vfa.keys.in: Added.

2001-01-16  Christophe Merlet  <redfox@eikonex.org>

	* gnome-vfs.keys: Updated French strings.

2001-01-15  Aaron Brick  <aaron@eazel.com>

	* revised the english MIME descriptions according to the new rules.

	* added alternate abiword type application/x-abiword
	* standardized translation strategy for "README"
	* obsoleted application/x-class-file in favor of /x-java-byte-code
	* standardized nomenclature for references to troff macro sets
	* removed *.sa mapping to application/x-unix-archive
	* added file regex to map different kinds of ANIM animations

2000-12-28  Aaron Brick  <aaron@eazel.com>

	* renamed several MIME types to reflect their compressed nature.
	* removed the now-outdated translations of those types.

	* added file extension detection for "compressed" (.Z) files.

2000-12-26  Aaron Brick  <aaron@eazel.com>

	* xmms can support .wav files.

2000-11-21  Jarkko Ranta  <jjranta@cc.joensuu.fi>

	* Pauli Virtanen's gnome-vfs.keys Finnish update.

2000-11-11  Kjartan Maraas  <kmaraas@gnome.org>

	* gnome-vfs.keys: Added more Norwegian translations.
	
2000-10-29  Christian Rose  <menthos@menthos.com>

	* gnome-vfs.keys: Fixed Swedish translations.

2000-10-25  Kjartan Maraas  <kmaraas@gnome.org>

	* gnome-vfs.keys: Added more Norwegian translations.
	
2000-10-23  Christian Rose  <menthos@menthos.com>

	* gnome-vfs.keys: Added Swedish translations.