summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 21c52a5bfd760fb1819b2072c9adb5451f69578e (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
2007-08-28  Bastien Nocera  <hadess@hadess.net>

	* configure.ac: Check for xmllint

	* Makefile.am: run test-mime-data from xdgmime if we're running in CVS
	and have xdgmime checked out and built in the parent
	* tests/*: add loads of test data and a test list from Matthias Clasen
	<mclasen@redhat.com> (Closes: #5210)

	* freedesktop.org.xml.in:
	- Remove "Microsoft Word 6.0 Document" matchlet at offset 2080, it's a
	localised string (ie. says "Dokument" in German, etc.)
	- Add better matchlets from file(1) for word documents
	- Add magic for StarWriter (tentative) and for glade files
	- Up the priority of the EPS matchlet so that EPS files are not
	recognised as postscript files

2007-08-12  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add a mime-type for QTIF QuickTime image
	files

=== shared-mime-info 0.22 ===

2007-07-30  Bastien Nocera  <hadess@hadess.net>

	* NEWS: upd
	* Makefile.am: upd

2007-07-27  Bastien Nocera  <hadess@hadess.net>

	* configure.in: bump up the release version, need to do a release

2007-07-27  Frederic Crozat  <fcrozat@mandriva.com>

	* freedesktop.org.xml.in: Add audio/ogg, video/ogg as subclasses of
	application/ogg and add relevant extensions.

2007-07-26  Frederic Crozat  <fcrozat@mandriva.com>

	* freedesktop.org.xml.in: Add video/avi as alias for video/x-msvideo,
	some Windows mail clients still use it, #11729.

2007-07-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add the application/x-nintendo-ds-rom
	mime-type for Nintendo DS ROMs

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* Makefile.am: Install shared-mime-info.pc to $datadir/pkgconfig
	instead of $libdir/pkgconfig, #10698 (revert).

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

	* freedesktop.org.xml.in: Add the iRiver PLA playlist format,
	patch from Jonathan Matthew <jonathan@kaolin.wh9.net>
	(Closes: #11604)

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* update-mime-database.c: Use g_warning instead of g_error. Fixes
	#10959. Thanks to Sebastien Bacher <seb128@debian.org>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add JAD MIME type. Fixes #10869.
	Thanks to Ville Skyttä <ville.skytta@iki.fi>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add WMLScript MIME type. Fixes #10868.
	Thanks to Ville Skyttä <ville.skytta@iki.fi>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add winmail.dat glob to TNEF MIME type. Fixes
	#10867. Thanks to Ville Skyttä <ville.skytta@iki.fi>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Fix PostScript and XHTML acronyms. Fixes
	#10865. Thanks to Ville Skyttä <ville.skytta@iki.fi>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* configure.in: Require glib 2.3.2. Fixes #10398. Thanks to Martin
	Koller <m.koller@surfeu.at>, and Harri Porten <porten@kde.org>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* update-mime-database.c: Improve windows compatibility, close streams.
	Fixes #10689. Thanks to Christian Ehrlicher <ch.ehrlicher@gmx.de>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add Plucker MIME type. Fixes #10379. Thanks
	to Pino Toscano <toscano.pino@tiscali.it>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Also match uppercase "F" for fortran
	globs, fixes #10692. Thanks to Quintin Hill <quintinhill@gmx.net>

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Change top-level tag matching offset range
	of XML subtypes from "0:64" to "0:256". Fixes #10880. Thanks to
	Sebastian Dröge <slomo@circular-chaos.org>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add Erlang source code MIME type, fixes
	#10878. Thanks to Martin Ankerl <martin.ankerl@gmail.com>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add ".hxx" glob pattern for C++ header.
	Fixes #10872. Thanks to Jonathon Jongsma <jonathon.jongsma@gmail.com>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add SIS/SISX packages, #10871.
	* update-mime-database.c: Add x-epoc media type.
	Thanks to Ville Skyttä <ville.skytta@iki.fi>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* Makefile.am: Install shared-mime-info.pc to $libdir/pkgconfig
	instead of $datadir/pkgconfig, #10698. Thanks to Tilman Sauerbeck
	<tilman@code-monkey.de>.
	* autogen.sh: Don't run libtoolize, #10870. Thanks to Ville Skyttä
	<ville.skytta@iki.fi>.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add more WordPerfect globs, #10428. Thanks
	to Petr Mladek <pmladek@suse.cz>.
	Also replace "document" by "image" in EMF/WMF description.

2007-06-27  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Fix WMF description and add matchlet, add
	EMF MIME type. Fixes #11385 and 11388. Thanks to Shaun Oldale
	<soldale@gmail.com>.
	Also fix OpenOffice Calc template description.

2007-06-26  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add MP2 audio, add more aliases for 3GPP, fixes
	#10457. Thanks to Matt Keenan <matt.keenan@sun.com>.

2007-06-26  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Add OpenOffice MIME matchlets, fixes #11276.
	Thanks to Matt Keenan <matt.keenan@sun.com>.

2007-06-14  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Match "script" tag in HTML. Fixes #11259.
	Thanks to David Faure <faure@kde.org>.

2007-06-14  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Fix word order in powerpoint matchlet. Fixes
	#435. Thanks to David Faure <faure@kde.org>.

2007-06-01  Christian Neumair  <cneumair@gnome.org>

	* freedesktop.org.xml.in: Remove "application/x-netscape-bookmarks"
	definition, make "application/x-netscape-bookmarks" an alias for
	"application/x-mozilla-bookmarks". Also associate extensions "*.html"
	and "*.htm" with Mozilla bookmarks. Fixes #266.

=== shared-mime-info 0.21 ===

2007-04-18  Bastien Nocera  <hadess@hadess.net>

	* NEWS: upd
	* configure.in: 0.21

2007-04-13  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Correct the magic for RTSPtext metalinks
	(See http://bugzilla.gnome.org/show_bug.cgi?id=429383)

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add X11 cursor type (#10043).
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add DirectDraw surface type (#10083).
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add pattern and description for KSysV init
	type (#10040). Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add matchlets for OpenOffice.org types
	(#10100). Thanks to Pino Toscano <toscano.pino@tiscali.it> and Oliver
	Braun <Oliver.Braun@sun.com>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add a bunch of raw camera image types
	(#8170). Thanks to Udi Fuchs <udifuchs@gmail.com>, Stanislav Brabec
	<sbrabec@suse.cz> and Frederic Crozat <fcrozat@mandriva.com>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add PKCS#10 certification request type
	(#10076). Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Add "*.iso9660" glob for ISO 9660 files
	(#10130).  Thanks to Sebastian Dröge (slomo@circular-chaos.org).

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add PSF, miniPSF, PSFlib types, add
	gzippd PSF linux font type, properly subclass all gzipped types
	(#853). Thanks to Jo Valentine-Cooper <jvc@menagerie.tf>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add PAK archive type (#10030).
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add TNEF message MIME type (#10077).
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: make application/x-shared-library-la a
	subclass of text/plain (#10203). Thanks to Yevgen Muntyan
	<muntyan@tamu.edu>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* update-mime-database.1: remove ROX from "See Also" manpage section
	(#10131). Thanks to Sebastian Dröge <slomo@circular-chaos.org>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: fix RealVideo document MIME type (#10122).
	Thanks to Frederic Crozat <fcrozat@mandriva.com>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add XPS MIME type (#10027).
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: make application/m3u an alias for
	audio/x-mpegurl (#10061), and make audio/x-mpeg an alias for
	audio/mpeg.
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add comment for Adobe FrameMaker document
	(#10086), brand FrameMaker MIF document to Adobe.
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add comment for ARC archive (#10084).
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-03-08  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add comment for XMCD CD database (#10074).
	Thanks to Pino Toscano <toscano.pino@tiscali.it>.

2007-02-13  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add *.m2t as a pattern for MPEG 2 files
	(GNOME bug #406196)

=== shared-mime-info 0.20 ===

2007-02-06  Bastien Nocera  <hadess@hadess.net>

	* NEWS: upd
	* configure.in: version 0.20

2007-02-06  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Make dia a sub-class of application/xml,
	not the alias text/xml

2007-02-06  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Move *.pcf.Z to application/x-font-pcf
	as it's definitely not a Postscript font, add *.pcf.gz as well
	(Closes: #4398)

2007-02-06  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Petr Tomasek
	<tomasek@etf.cuni.cz> to add a mime-type for the T602 word
	processor documents (Closes: #1001)

2007-02-06  Bastien Nocera  <hadess@hadess.net>

	* Makefile.am: verbose mode in install mode by default
	* configure.in: up the glib requirements to 2.2
	* update-mime-database.1:
	* update-mime-database.c: (g_log_handler), (usage), (get_type),
	(load_source_file), (write_out_glob), (write_magic_children),
	(write_magic), (delete_old_types), (check_in_path_xdg_data),
	(write_map_entry), (write_parent_entry), (write_parent_list),
	(build_suffixes), (write_suffix_entries), (write_match),
	(write_cache), (main): Patch from Loïc Minier
	<lool+freedesktop@via.ecp.fr> to make the output of
	update-mime-database quiet by default (Closes: #7289)

2007-02-06  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add a mime-type for XUL, add *.xbl as
	an XML pattern, as XBL doesn't have its own mime-type (Closes: #3260)
	Change the compressed SVG mime-type to image/svg+xml-compressed

2007-02-06  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add the application/x-ica mime-type,
	patch from Jack Johnson <knapjack@gmail.com> (Closes: #3820)

2007-02-06  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: compressed SVG files aren't XML files,
	so .svgz files now use image/svg as their mime-type (Closes: #9873)

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

	* freedesktop.org.xml.in: Patch from Pino Toscano
	<toscano.pino@tiscali.it> to add a mime-type for XLIFF
	translation files (Closes: #6532)

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

	* freedesktop.org.xml.in: Patch from Pino Toscano
	<toscano.pino@tiscali.it> to add a mime-type for LDIF files
	(Closes: #6482)

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

	* freedesktop.org.xml.in: application/xslt+xml is reserved for
	XSLT 2.0 style-sheets, which we cannot detect because we don't
	read attributes, just namespaces. So remove *.xsl and *.xslt as
	application/xslt+xml globs, and add those to application/xml
	(the recommended mime-type for XSLT version 1.0)
	Leave application/xslt+xml present as a sub-class of application/xml
	to avoid breaking already existing program associations
	(Closes: #2928)

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

	* freedesktop.org.xml.in: Really fix my application/x-markaby
	mime-type addition, more crack (time to go home?), Patch from
	Young-Ho, Cha <ganadist@chollian.net> to add mime-types for
	Haansoft's Hangul word processor (Closes: #4230)

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

	* freedesktop.org.xml.in: Add mime-type including magic for ACE
	archives (Patch from Pino Toscano <toscano.pino@tiscali.it>)
	(Closes: #6473), Fix parsing from previous commit

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

	* freedesktop.org.xml.in: Add application/x-markaby mime-type for
	"Ruby markup"-fu (Closes: #6132)

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

	* freedesktop.org.xml.in: Remove the TGA mime magic as it was bogus, and
	the real Targa magic is at the end of the file, not at the beginning
	(Closes: #1268)

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

	* freedesktop.org.xml.in: Patch from Sebastian Dröge <slomo@ubuntu.com>
	to add the Wavpack mime-type (Closes: #6746)

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

	* freedesktop.org.xml.in: belong should be big32, I guess that patch
	was untested ;)

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

	* freedesktop.org.xml.in: Patch from Robert Dale <robdale@gmail.com>
	to add the application/x-dar mime-type (Closes: #6760)

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

	* freedesktop.org.xml.in: Add magic for the PGN mime-type,
	make it a text/plain sub-class, change the human-readable name
	to "PGN chess game notation" (Closes: #8286)

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

	* freedesktop.org.xml.in: Have the Go SGF records be a sub-class
	of text/plain to allow opening them with a text editor, add
	magic for version 3 and 4 of those files (Closes: #8058)

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

	* freedesktop.org.xml.in: Add magic to detect AutoCAD DXF files
	(Closes: #9472)

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

	* freedesktop.org.xml.in: Make mbox a sub-class of text/plain
	so that a text-editor can be used to open it (Closes: #9859)

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

	* freedesktop.org.xml.in: Patch from Frédéric Crozat
	<fcrozat@mandriva.com> to remove the StarOffice-provided
	application/vnd.palm mime-type, and add the globs and aliases
	to application/x-palm-database instead (Closes: #7406)

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

	* freedesktop.org.xml.in: Patch from Mario Carrión <mario@monouml.org>
	to add mime-types for OCL scripts (Closes: #7327)

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

	* freedesktop.org.xml.in: Patch from Sebastian Dröge <slomo@ubuntu.com>
	to not mis-detect Java files as C when they start with comments
	(Closes: #9407), same trick with CSS files (Closes: #9469)

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

	* freedesktop.org.xml.in: Add Lua scripts to the mime-types with help from
	Reuben Thomas (Closes: #8715)

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

	* freedesktop.org.xml.in: Patch from Adam Schreiber <sadam@clemson.edu>
	and Sebastian Dröge <slomo@ubuntu.com> to clean up PGP/GnuPG file
	types detection (Closes: #9401)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Make Dia's format a sub-class of text/xml
	as reported by Tom Parker <freedesktop@tevp.net> (Closes: #9241)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add a mime-type for WBMP images
	(Closes: #9186)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add gnm:Workbook as a possible magic
	for Gnumeric files, spotted by Jean Bréfort (Closes: #9424)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Wouter Bolsterlee
	<uws+freedesktop@xs4all.nl> to add *.rdfs and *.owl as suffixes for
	RDF files (Closes: #8389)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Matt Good <matt+fdo@matt-good.net>
	to add the eMusic download package mime-type and magic (Closes: #8105)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Andy Hedges
	<tmp1@hedges.net> to add more magic for the QuickTime files
	(Closes: #8936)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* po/POTFILES.skip: Patch from Torsten Schönfeld to add
	update-mime-database.c to the skipped files, as it was never
	translated anyway (Closes: #9565)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* Makefile.am:
	* shared-mime-info.pc.in: Patch from Ville Skyttä <ville.skytta@iki.fi>
	to move the shared-mime-info pkgconfig file to $(datadir), as it doesn't
	contain any arch-specific data (Closes: #9789)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* configure.in:
	* po/LINGUAS: Patch from Christian Persch to use po/LINGUAS
	to list the translated languages (Closes: #9619)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* update-mime-database.c: (open_or_die), (main): Patch from
	Yevgen Muntyan <muntyan@tamu.edu> to avoid abort()'ing when
	we can't open a specific file for writing (Closes: #9580)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* Makefile.am:
	* configure.in: Patch from Christian Persch to clean up the
	configure.in and Makefile.am files (Closes: #9618)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add application/x-bzip2 as an alias
	for bz2 archives, as used on Sourceforge, patch by Loïc Minier
	<lool+freedesktop@via.ecp.fr> (Closes: #9737)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Loïc Minier
	<lool+freedesktop@via.ecp.fr> to recognise Makefiles
	with shebang magic as well as name (Closes: #9738)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in:
	* po/az.po:
	* po/bg.po:
	* po/cs.po:
	* po/cy.po:
	* po/da.po:
	* po/de.po:
	* po/el.po:
	* po/eo.po:
	* po/es.po:
	* po/eu.po:
	* po/fi.po:
	* po/fr.po:
	* po/hu.po:
	* po/it.po:
	* po/ja.po:
	* po/ko.po:
	* po/lt.po:
	* po/ms.po:
	* po/nb.po:
	* po/nl.po:
	* po/nn.po:
	* po/pl.po:
	* po/pt.po:
	* po/pt_BR.po:
	* po/ru.po:
	* po/rw.po:
	* po/sq.po:
	* po/sr.po:
	* po/sv.po:
	* po/uk.po:
	* po/vi.po:
	* po/zh_CN.po:
	* po/zh_TW.po: s/CPIP/CPIO/ (Closes: #9814)
	Spotted by Goran Uddeborg <goeran@uddeborg.se>

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: lower the prio of the audio/x-matroska to 50,
	so that detection can happen based on suffix as well

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Ville Skyttä <ville.skytta@iki.fi>
	to use the preferred Matroska mime-types, add Matroska audio support
	(Closes: #9788)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Move *.ram to application/ram, patch
	from Daniel Yek <dyek@real.com> (Closes: #9750)

2007-02-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Make PGM, PBM and PPM sub-classes
	of PNM (RH #118847)

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

	* freedesktop.org.xml.in: Patch from Bill Alexander
	<billtrash@gmail.com> to add application/x-msexcel as an
	alias for Excel files (RH #197887)

2007-01-23  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add the audio/x-tta mime-type

2007-01-15  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add magic for NSC

2007-01-15  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Microsoft says that NSC (multicast playlists)
	are also of type "video/x-ms-asf":
	http://www.microsoft.com/windows/windowsmedia/howto/articles/webserver.aspx

2007-01-15  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: fix typo that broke the build

2007-01-15  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Paolo Borelli to add the
	text/x-rpm-spec mime-type for RPM .spec files (Closes: #9331)

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

	* freedesktop.org.xml.in: Add image/x-icns mime-type for MacOS X icons

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

	* freedesktop.org.xml.in: Add *.kar (Karaoke files) as a pattern for
	MIDI files, video/mp4v-es is a mime-type for MPEG-4 video,
	video/x-ms-wvx, video/x-ms-wax and video/x-ms-wmx added as aliases of ASX,
	Add vivo patterns and mime alias, add FLI mime aliases, add video/x-ms-wm
	as an alias of video/x-ms-asf

2006-12-15  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Add gzip/bz2 types for DVI, PDF and
	PostScript. Fixes #4658. Thanks to Bas Zoetekouw <bas@debian.org>

2006-12-11  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add application/pls as an alias for pls files

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

	* freedesktop.org.xml.in: Add the Google Video Pointer mime-types
	(alias'ed to text/google-video-pointer)

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

	* freedesktop.org.xml.in: add "video/flv" as an alias for FLV videos,
	as used by YouTube's HTTP server

2006-11-14  Christopher Aillon  <caillon@redhat.com>

	* freedesktop.org.xml.in: alias image/pdf to application/pdf

2006-10-11  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add RTSPtextRTSP-style movie references
	to the application/x-quicktime-media-link mime-type (see GNOME #302482)

2006-10-01  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add image/x-macpaint for
	"MacPaint Bitmap image"

2006-08-26  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add *.latex as a pattern for TeX documents
	(Closes: #6235)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add text/javascript as an alias to
	application/javascript, spotted by Ville Skyttä <ville.skytta@iki.fi>
	(Closes: #6616)

=== shared-mime-info 0.19 ===

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* NEWS: upd
	* configure.in: 0.19

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: patch from Stephane Chauveau
	<spam70@chauveau-central.net> and Eugenia Loli-Queru
	<eloli@hotmail.com> to add many raw image types from digital cameras
	(Closes: #4117)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add a mime-type for musepack, patch from
	Pino Toscano <toscano.pino@tiscali.it> (Closes: #6408)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add ECMAScript mime-type
	(application/ecmascript), patch by Ville Skyttä
	<ville.skytta@iki.fi> (Closes: #6616)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Use text/csv rather than
	text/x-comma-separated-values, patch by Ville Skyttä
	<ville.skytta@iki.fi> (Closes: #6616)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Use application/javascript rather than
	application/x-javascript, patch by Ville Skyttä <ville.skytta@iki.fi>
	(Closes: #6616)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* README: Add some reference links

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Pino Toscano
	<toscano.pino@tiscali.it> to add the application/sieve mime-type
	for Sieve scripts (Closes: #6572)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add text/x-ocaml as a mime-type for OCaml
	files (Closes: #7836)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add application/x-debian-package as an alias
	for application/x-deb, as used by Apache, spotted by Gustavo
	J. A. M. Carneiro <gjc@inescporto.pt> (Closes: #6303)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add *.dtx and *.ins as possible patterns
	for TeX files, spotted by Thomas Braun <braun@physik.fu-berlin.de>
	(Re: #6235)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Fix the magic offset for M4A files, spotted
	by thrope <freedesktop@robince.ftml.net> (Closes: #7718)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* Makefile.am: add "check" to the default target when compiling from
	CVS
	* freedesktop.org.xml.in: Change application/x-jar to the SUN-
	recommended application/x-java-archive, add an alias for the former,
	Add better conditional magic to tell zip files and .jars apart,
	Thanks to Joseph Kowalski <jek3@eng.sun.com> for his detailed report
	(Closes: #7852)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Wouter Bolsterlee
	<uws+freedesktop@xs4all.nl> with better magic for BZR generated
	patch files, and those starting with "---" (Closes: #7890)

2006-08-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Patch from Wouter Bolsterlee
	<uws+freedesktop@xs4all.nl> to add better magic for TeX files
	(Closes: #7891)

2006-08-24  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add audio/AMR and audio/AMR-WB as per
	RFC 3267, using the magic in section 8.1

2006-08-12  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: *.qtl files are
	QuickTime Media Links as per
	http://developer.apple.com/documentation/QuickTime/QT6WhatsNew/Chap1/chapter_1_section_53.html

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

	* freedesktop.org.xml.in: Move the Quicktime metalink magic
	to its own mime-type: application/x-quicktime-media-link

2006-07-14  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add application/x-snes-rom and
	application/x-gba-rom types for SNES and GBA Roms (Closes: #7511)

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

	* shared-mime-info.pc.in: patch from foser@gentoo.org to use
	the paths specified at build-time in the pkgconfig file
	(Closes: #6437)

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

	* freedesktop.org.xml.in: add description and acronym to the
	GDBM mime-type (Closes: #6353)

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

	* freedesktop.org.xml.in: add *.mo as a glob for
	application/x-gettext-translation (Closes: #6351)

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

	* freedesktop.org.xml.in: patch from Arthur Taylor <art@ified.ca> to
	add magic to most tracker files, and remove a duplicate *.xm glob
	(Closes: #6372)

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

	* freedesktop.org.xml.in: remove the magic for
	application/octet-stream, it's silly (Closes: #4843)

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

	* freedesktop.org.xml.in: patch from Matthias Clasen
	<mclasen@redhat.com> to match Type1 fonts higher than Postscript files
	(Closes: #4675)

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

	* freedesktop.org.xml.in: add magic for audio/ac3 (Closes: #6509)

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

	* freedesktop.org.xml.in: Add audio/x-ape mime-type for
	Monkey's audio (Closes: #6747)

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

	* Makefile.am: remove po/stamp-it on "make clean" (Closes: #6485)

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

	* freedesktop.org.xml.in: remove the wide *.dat glob from matching
	MPEG videos (Closes: #2788)

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

	* freedesktop.org.xml.in: add text/x-txt2tags to the mime-type
	so that we can whitelist it (not a Postscript!) (Closes: #2001),
	lower the priority of the application/mbox magic to avoid false
	positives

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

	* freedesktop.org.xml.in: add application/mbox for the MBOX mailboxes
	(Closes: #2052)

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

	* po/Makefile.in.in: Remove from CVS. Fixes #7255.
	Thanks to Christian Persch <chpe@gnome.org>.

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

	* fredesktop.org.xml.in: Add VHDL MIME type. Fixes #7329.
	Thanks to George Jenkins <gvj11@student.canterbury.ac.nz>.

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

	* freedesktop.org.xml.in: Add application/powerpoint and
	application/mspowerpoint as PPT alias. Fixes #7407.
	Thanks to Frederic Crozat <fcrozat@mandriva.com>.

=== shared-mime-info 0.18 ===

2006-07-03  Bastien Nocera  <hadess@hadess.net>

	* NEWS: upd
	* configure.in: 0.18

2006-06-19  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: *.mpga is also a pattern for MP3
	(Closes GNOME #345306)

2006-05-14  Bastien Nocera  <hadess@hadess.net>

	* .cvsignore: upd

2006-05-14  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add support for XSPF version 1 playlists
	(see http://www.xspf.org/specs/)

2006-05-14  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: patch from Stanislav Brabec <sbrabec@suse.cz>
	to clarify C, C++, C# and ObjC headers and sources (Closes: #6743)

2006-05-09  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: lower priority of "%" magic patterns to 10.

2006-04-19  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: .wax is a suffix for ASX playlists as well

2006-04-18  Bastien Nocera  <hadess@hadess.net>

	* configure.in: Remove "no" from ALL_LINGUAS

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

	* freedesktop.org.xml.in: Make audio/x-ms-asx's magic higher priority
	than HTML to avoid matching HTML on "<TITLE" present in an ASX file
	(Closes GNOME #338328 and #338515)

2006-04-14  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: .asx files are of audio/x-ms-asx, not ASF
	files

2006-04-05  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Remove "application/pdf" subclassing
	information. Thanks to Sebastien Bacher and Bastien Nocera.

2006-04-05  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Rename "text/rss" to
	"application/rss+xml", make "text/rss" an alias, make it a subclass of
	"application/xml".  Thanks to Sebastien Bacher.

2006-04-05  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Make "application/postscript",
	a subclass of "text/plain". Thanks to Sebastian Heutling,
	Tristan Wibberley and Sebastien Bacher.

	Add missing sub-classing information to a few dozen other
	MIME types, including "application/rtf", "application/pdf",
	ODF and OOo MIME types.

	* Makefile.am:
	* test-subclassing.c:
	Add simple XML parser that checks for presence of "sub-class-of"
	nodes in freedesktop.org.xml and outputs MIME types that don't
	provide the flag.

2006-03-18  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Add "lt" (Lithuanian) to ALL_LINGUAS.

2006-03-15  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add a mime-type for WMA (Closes: #2178),
	and make it and WMV sub-classes of ASF (Closes: #2051), patches from
	Stanislav Brabec <sbrabec@suse.cz>

2006-03-15  Bastien Nocera  <hadess@hadess.net>

	* configure.in: also install the Danish translation, patch from 
	Stanislav Brabec <sbrabec@suse.cz> (Closes: #2051)

2006-03-15  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add *.qtl glob for Quicktime Links files
	(from http://developer.apple.com/documentation/QuickTime/QT6WhatsNew/Chap1/chapter_1_section_53.html)

=== shared-mime-info 0.17 ===
2006-03-14  Bastien Nocera  <hadess@hadess.net>

	* .cvsignore: upd
	* configure.in: 0.17
	* NEWS: upd

2006-03-13  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add Quicktime Media Link magic to
	video/quicktime

2006-03-13  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add "application/x-srt" for .srt subtitle
	files, and make them a subclass of text/plain

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

	* freedesktop.org.xml.in: make "x-directory/normal" an alias for
	"inode/directory".

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

	* freedesktop.org.xml.in: make "application/x-cue" a subclass of
	"text/plain". Fixes GNOME #334008. Thanks to Stefan Jol.

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

	* freedesktop.org.xml.in: make "text/rdf" a subclass of
	"application/xml" instead of "text/plain". Fixes GNOME #331468.
	Thanks to Luca Ferretti.

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

	* freedesktop.org.xml.in: make "application/x-abiword" a subclass of
	"application/xml". Fixes GNOME #333158/Launchpad #33301.
	Thanks to Lionel Dricot and Sebastien Bacher.

2006-03-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: also add the .divx suffix to AVI

2006-03-02  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add video/vnd.divx as an alias for AVI files
	(as used on the divx.com website)

2006-02-21  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add "application/x-gnuplot". Fixes #5455.
	Thanks to Triastan Miller.

2006-02-21  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: fix "application/x-tex-gf" and
	"application/x-tex-pk" globs. Fixes #5373. Thanks to Jens Herden.

2006-02-21  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: remove "makefile*" glob from
	"text/x-makefile". Fixes #3256. Thanks to Björn Lindqvist.

2006-02-21  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: merge ICB and TGA into TGA MIME type, add
	some more extensions. Fixes #1276. Thanks to Filip Van Raemdonck.

2006-02-21  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add "application/x-planperfect" MIME type.
	Fixes #3148.

2006-02-20  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Add "vi" (Vietnamese) to LINGUAS.

2006-02-19  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: also add "%" glob pattern to "text/x-tex".
	Still requires xdgmime fixes to not conflict with matlab:
	http://bugzilla.gnome.org/show_bug.cgi?id=331719

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

	* freedesktop.org.xml.in: fixed the typo that made it uninstallable

2006-02-04  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Remove "sub-class" association with
	text/plain for mime-types that it doesn't make sense to open in a
	text editor, see for details:
	http://lists.freedesktop.org/archives/xdg/2005-June/007032.html

2006-02-04  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add *.nfo as a pattern for README files

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

	* freedesktop.org.xml.in: add image/pjpeg as an alias for image/jpeg

2006-01-26  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: don't expect a trailing space when looking
	for the SMIL magic (GNOME bug #328720)

2006-01-09  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add Flash Video support, with the
	Macromedia recommended mime-type (flv-application/octet-stream)
	being an alias

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

	* freedesktop.org.xml.in: Add video/dv detection

2005-01-03  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Add Objective-C, C and C header magic
	patterns, add matlab MIME type and magic patterns. Fixes #3971.

2005-12-31  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Add XML-style comment magic pattern to XML
	MIME type.

2005-12-25  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Make "audio/3gpp" an alias for "video/3gpp".
	Fixes #5419. Thanks to Thiago Macieira and GML.

2005-12-19  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Add CBR/CBZ MIME types "application/x-cbr"
	and "application/x-cbz". Fixes #3122. Thanks to Paul Coates, Nickolay
	V. Shmyrev and Olivier Le Thanh Duong.

2005-12-19  Matthias Clasen  <mclasen@redhat.com>

	* update-mime-database.c (write_magic_cache): Reset the match data
	offset when starting to write out match datas, pointed out by
	Alex Larsson.

2005-12-17  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: search a bit further in ASF playlists
	(GNOME bug #323683)

2005-12-16  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Add ChangeLog MIME type "text/x-changelog".
	Fixes #5355. Thanks to Björn Lindqvist and Paolo Borelli.

2005-12-02  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Modify Ogg-related MIME types to match the
	XML naming pattern. Thanks to Peter Bowen.

2005-12-01  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Add Ogg-related MIME types:
	"audio/x-vorbis", "audio/x-oggflac", "audio/x-speex", "video/x-theora"
	and "video/x-ogm". Make them subtypes of "application/ogg".
	Fixes #1002.

2005-12-01  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Make "application/x-mozilla-bookmarks"
	subtype of "text/html". Fixes #3169. Thanks to Reinout van Schouwen.

2005-12-01  Matthias Clasen  <mclasen@redhat.com>

	* shared-mime-info-spec.xml: Add acronym and expanded-acronym
	elements, add recommendations for handling duplicate globs.
	Specify how duplicate globs are stored in mime.cache.

	* update-mime-database.c (process_freedesktop_node): Allow 
	identical globs.
	(insert_suffix): Store duplicate globs in the suffix tree
	by using '\0' as a key.

2005-12-01  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Rename "text/xml" to "application/xml", make
	the former an alias. Improve SVG, TIFF and JNG comments.
	Thanks to Eric van der Vlist.

2005-11-16  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Rename "application/x-troff" to
	"text/troff", make the latter an alias, also add "text/x-troff" alias.
	Fixes #5072. Thanks to Tristan Miller.

2005-11-14  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: Add Mup MIME type ("text/x-mup"). Fixes
	#2531. Thanks to Abel Cheung.

2005-11-01  Bastien Nocera  <hadess@hadess.net>

	* README: Fix the URLs to point to the right specs, pointed out
	by Tommi Vainikainen <thv@iki.fi> (Closes: #4041)

2005-11-01  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Add *.svgz as a glob for SVG files, from
	Luca Ferretti <elle.uca@libero.it> (Closes: #4836)
	* config.h.in: removed, it is a generated file

2005-10-30  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: split SQLite MIME type into two. Thanks to
	Jarosław Staniek. Fixes #3178.

2005-10-30  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: make "application/x-lyx" subclass of
	"text/plain" and add "text/x-lyx" as alias. Thanks to Filip Van
	Raemdonck and Abel Cheung. Fixes #1269.

2005-10-30  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: make "application/x-font-type1" subclass of
	"application/postscript". Thanks to Stephane Loeuillet. Fixes #1161.

2005-10-30  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: change dBASE comment, add aliases.
	Thanks to J.H.M Dassen. Fixes #3147.

2005-10-30  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add Lotus 1-2-3 aliases. Thanks to J.H.M
	Dassen. Fixes #3144.

2005-10-30  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add dia magic pattern. Thanks to J.H.M
	Dassen. Fixes #3142.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add a bunch of Real formats, remove real
	audio glob since it breaks metafiles. Thanks to Ryan Gammon. Fixes
	#2342.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add "*.kino" glob pattern, and magic
	patterns to "application/smil". Thanks to J.H.M Dassen. Fixes #3141.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* .cvsignore: add freedesktop.org.xml.
	* freedesktop.org.xml: remove from CVS, since it is auto-generated on
	make dist.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add "application/x-m4" MIME type. Thanks to
	Macro Pesenti Gritti. Fixes #2049.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add a bunch of aliases for
	"application/vnd.ms-access", change its description. Thanks to
	Jarosław Staniek. Fixes #3179.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add "application/x-go-sgf" MIME type. Thanks
	to Peter Lundqvist. Fixes #592.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add "application/x-sqlite" MIME type. Thanks
	to Jarosław Staniek. Fixes #3178.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: improve docbook, JNLP and GEDCOM description.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: don't mark <acronym/> and
	<expanded-acronym/> for translation.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: make "application/mathematica" subclass of
	"text/plain". Thanks to Shaun McCance. Fixes #4345.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: fix corel draw magic string, add aliases.
	Thanks to Stewart Jeacocke. Fixes #3136.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* update-mime-database.c: (process_freedesktop_node):
	process <acronym/> and <expanded-acronym/>.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add "GNUmakefile" pattern to
	"text/x-makefile". Fixes #4334.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add comment to "application/x-sc", by J.H.M.
	Dassen. Fixes #3146.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: register "application/x-mathematica" as
	alias for "application/mathematica". Fixes #4403.

2005-10-29  Christian Neumair  <chris@gnome-de.org>

	* freedesktop.org.xml.in: add <acronym/> and <expanded-acronym/> tags.
	Use shorter text for many <comment/> tags.

2005-10-22  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add m4v as a possible extension for video
	MPEG4, and add video/x-m4v as an alias for video/mp4

2005-10-22  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add text/gedcom as an alias for
	application/x-gedcom

2005-05-31  Antonio Xu <antonio.xu@sun.com>

	Reviewed by: Bastien Nocera <hadess@hadess.net>
 
	* freedesktop.org.xml.in: add one more pattern "Return-path" for
	message/rfc822

2005-09-11  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml: add audio/mpegurl as an alias to
	audio/x-mpegurl

2005-08-26  Christopher Aillon  <caillon@redhat.com>

	* freedesktop.org.xml.in: text/css subclasses text/plain

2005-08-10  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: increase priority of the docbook magic
	for it to take precedence over suffixes

2005-08-09  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: Make the application/mathematica comment
	translatable, patch from Christopher James Lahey <clahey@novell.com>
	and Luis Villa <luis.villa@gmail.com> for docbook support

2005-07-25  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml: add video/3gpp with associated magic
	(from: http://www.faqs.org/rfcs/rfc3839.html)

2005-07-24  Thomas Leonard  <tal@ecs.soton.ac.uk>

	* freedesktop.org.xml: sync
	* freedesktop.org.xml.in: made application/x-awk and x-shellscript
	both subclass application/x-executable

2005-07-13  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml: sync
	* freedesktop.org.xml.in: add magic data to recognise asf reference
	files (with the same mime-type as asf video files, go MS)

2005-05-30  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add the "application/x-shorten" mime-type
	to represent Shorten lossless audio files

2005-04-17  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: change audio/x-m4a mime-type to audio/mp4,
	add audio/x-m4a as an alias, add video/mp4 detection
	(from: http://www.ietf.org/internet-drafts/draft-lim-mpeg4-mime-03.txt)

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

	* freedesktop.org.xml.in: add application/x-gedcom as a mime-type
	for GEDCOM family history files

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml:
	* freedesktop.org.xml.in: improved mathematica magic, fixes #2660

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: added magic for mathematica notebooks
	* freedesktop.org.xml:
	* po/Makefile.in.in: updated autogenerated files

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* .cvsignore:
	* freedesktop.org.xml.in: use application/xslt+xml for xslt
	stylesheets, maybe it will need to be changed to text/xml or
	application/xml, I'm unsure about what's best, this is bug #2928

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* .cvsignore: minor update, fixes #2091, patch by Loic Minier

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: added magic pattern and glob pattern for
	ruby files, patch by Ilmari Heikkinen, fixes #2154

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: added mime type for 7-zip

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

	* freedesktop.org.xml: sync with freedesktop.org.xml.in content
	* freedesktop.org.xml.in: add ".RMF" as a  magic for RealMedia
	files, also add the rmvb suffix for "Real Media Variable Bitrate" files

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: added application/vnd.ms-access, patch from
	Ed Catmur, fixes bug #2619

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: added more extensions for fortran programs,
	patch by John Spray, fixes #2623

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: marked image/x-eps as a subclass of 
	  PostScript files, fix part of bug #2686

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: added *.hpp glob to C++ headers, fixes #2923

2005-04-16  Christophe Fergeau  <teuf@gnome.org>

	* update-mime-database.c: (my_xmlGetNsProp), (get_type),
	(match_node), (get_priority), (add_namespace),
	(process_freedesktop_node), (has_lang), (remove_old), (load_type),
	(load_source_file), (atomic_update), (match_offset),
	(match_value_and_mask), (match_word_size), (build_matches),
	(add_ns), (add_alias), (write_header), (write_magic_cache):
	fix signedness warnings in gcc, maybe it would be better to just
	disable that warning

2005-04-15  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Added "zh_TW" (traditional Chinese) to ALL_LINGUAS.

2005-04-14  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml: sync with freedesktop.org.xml.in content
	* freedesktop.org.xml.in: added application/x-cue as the CD image
	cuesheet mime-type

2005-04-14  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Added "rw" (Kinyarwanda) to ALL_LINGUAS.

Fri Apr  8 23:34:27 2005  Jonathan Blandford  <jrb@redhat.com>

	* update-mime-database.c: Patch from Matthias Clasen
	<mclasen@redhat.com> to adjust one offset after adding the
	namespace table.  Produced cache now works.

2005-04-07  Bastien Nocera  <hadess@hadess.net>

	* Makefile.am: work-around for old versions of automake

Fri Apr  1 14:33:54 2005  Jonathan Blandford  <jrb@redhat.com>

	* shared-mime-info-spec.xml:
	* update-mime-database.c: Patch from Matthias Clasen
	<mclasen@redhat.com> to make the MIME Cache contain an mmappable
	binary format.

=== shared-mime-info 0.16 ===
Tue Mar 22 14:33:31 2005  Jonathan Blandford  <jrb@redhat.com>

	* NEWS:
	* freedesktop.org.xml:
	* configure.in: Release 0.16
	
2005-03-20  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Added "ru" (Russian) to ALL_LINGUAS.

2005-03-19  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml: sync with freedesktop.org.xml.in content
	* freedesktop.org.xml.in: added StuffIt archives

Thu Mar 10 11:55:21 2005  Jonathan Blandford  <jrb@redhat.com>

	* freedesktop.org.xml: sync with freedesktop.org.xml.in content
	* freedesktop.org.xml.in: Add OpenDocumentText formats.

2005-01-21  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Added "nb" (Norwegian (bokmål)) to ALL_LINGUAS.

2005-01-16  Christophe Fergeau  <teuf@gnome.org>

	* configure.in: added it to ALL_LINGUAS

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

	* freedesktop.org.xml.in: added many sub-class-of definitions, patch
	by David Faure <faure@kde.org>, fixes #619.

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

	* freedesktop.org.xml: sync with freedesktop.org.xml.in content
	* freedesktop.org.xml.in: fixed malformed XML doc

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

	* freedesktop.org.xml.in: Cleanup for "text executable" types
	(shellscripts and other scripts). Patch from David Faure
	(faure@kde.org), fixes #618.

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

	* freedesktop.org.xml.in: fix vCard and vCalendar mime types and glob
	patterns

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

	* freedesktop.org.xml.in: added mime entry for D source files, fixes
	#676

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

	* freedesktop.org.xml.in: added audio/wav and audio/vnd.wave aliases
	for wav files, fixes #1885

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

	* freedesktop.org.xml.in: text/xml+html is a subclass of text/xml, not
	text/plain

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

	* freedesktop.org.xml.in: use application/msword as the main type
	for MS/Word files

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

	* freedesktop.org.xml.in: fix entry about DICOM, fixes bug #1310,
	patch from Artur Frysiak <wiget@pld-linux.org>

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

	* freedesktop.org.xml.in: added audio/x-m4a, fixes #584

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

	* freedesktop.org.xml.in: move a few definitions to get an
	alphabetically ordered file.

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

	* freedesktop.org.xml.in: change application/x-python to
	text/x-python, fixes #208, please complain if you think this is wrong.

2004-12-09  Christophe Fergeau  <teuf@gnome.org>

	* po/Makefile.in.in: sync with upstream changes

2004-12-09  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml:
	* freedesktop.org.xml.in: back out DTD change which wasn't expected in
	the first place.

2004-12-08  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml:
	* freedesktop.org.xml.in: added application/x-zip-compressed as an 
	alias to application/zip.

2004-12-08  Christophe Fergeau  <teuf@gnome.org>

	* Makefile.am: don't override CFLAGS, fixes #2033

2004-12-08  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml:
	* freedesktop.org.xml.in: change main mp3 mime type to audio/mpeg,
	add audio/x-mp3 as an alias for this mime type.

2004-12-02  Dan Winship  <danw@novell.com>

	* Makefile.am (CLEANFILES, DISTCLEANFILES): Fix. intltool stuff
	shouldn't be in CLEANFILES, or "make clean; make" will fail
	(#1845)

2004-12-02  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml:
	* freedesktop.org.xml.in: mark glade files as inheriting from 
	text/xml, not text/plain

2004-11-28  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml: sync'ed file with freedesktop.org.xml.in
	* freedesktop.org.xml.in: fixed entry for jnlp files

2004-11-26  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: added application/x-java-jnlp-file, fixes 
	#1118

2004-11-26  Christophe Fergeau  <teuf@gnome.org>

	* update-mime-database.c: (parse_int_value), (match_offset): use 
	strtoul when reading an unsigned long, not strtol, fixes #1506

2004-11-26  Christophe Fergeau  <teuf@gnome.org>

	* update-mime-database.c: (parse_int_value): take value endianness
	into account when reading the "mask" tag, fixes #1507.

Tue Nov  9 01:52:52 2004  Jonathan Blandford  <jrb@redhat.com>

	* update-mime-database.c: Patch from Matthias Clasen to generate
	subclass and alias files.

	* shared-mime-info-spec.xml.in: update the spec to mention the
	subclasses and aliases files.

2004-11-04  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml:
	* freedesktop.org.xml.in: add magic for the audio/x-mpegurl mime-type

2004-11-01  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml:
	* freedesktop.org.xml.in: sync freedesktop.org.xml with
	freedesktop.org.xml.in, fix freedesktop.org.xml.in to make it valid
	XML

2004-11-01  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: Added application/mathematica, patch by Chris
	Maes <i-chris@wolfram.com>, fixes #870

2004-11-01  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: Added application/x-chm, patch by Loic
	Minier <lool+freedesktop@dooz.org>, fixes #794 

2004-11-01  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: Added application/x-pdf alias, fixes #560

2004-11-01  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: Added application/x-par2, patch by dob 
	<abusenospam@free.fr>, fixes #750

2004-11-01  Christophe Fergeau  <teuf@gnome.org>

	* freedesktop.org.xml.in: Improve lotus 123 files magic pattern. Patch
	by Filip Van Raemdonck <mechanix@debian.org>, fix #1276.

Mon Nov  1 14:49:57 2004  Jonathan Blandford  <jrb@redhat.com>

	* MAINTAINERS: New file to highlight that I'm no longer the
	maintainer.

Mon Nov  1 14:47:02 2004  Jonathan Blandford  <jrb@redhat.com>

	* autogen.sh: Patch from Thomas Fitzsimmons <fitzsim@redhat.com>
	to add support for building modules in separate build directories

2004-10-20  Bastien Nocera  <hadess@hadess.net>

	* freedesktop.org.xml.in: add magic for audio/x-scpls

2004-10-07  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Added "eo" (Esperanto) to ALL_LINGUAS.

2004-09-29  Christopher Aillon  <caillon@redhat.com>

       * freedesktop.org.xml.in: Add application/vnd.mozilla.xul+xml and
       make MathML inherit from XML.

2004-09-13  Christophe Fergeau  <teuf@gnome.org>

	* configure.in: Added "ms" (Malay) to ALL_LINGUAS

2004-09-10  Christophe Fergeau  <teuf@gnome.org>

	* configure.in: Added "ja" (Japanese) to ALL_LINGUAS

2004-09-10  Christophe Fergeau  <teuf@gnome.org>

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

2004-09-10  Nico R. <n-roeser@gmx.net>

	* configure.in: fix substitution of ALL_CFLAGS and ALL_LIBS

2004-09-08  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Added "es" (Spanish) to ALL_LINGUAS.

2004-09-06  Miloslav Trmac  <mitr@volny.cz>

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

	* configure.in: Added "uk" (Ukrainian) to ALL_LINGUAS.

2004-09-04  Miloslav Trmac  <mitr@volny.cz>

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

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

2004-09-03  Miloslav Trmac  <mitr@volny.cz>

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

2004-09-01  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Added "sq" (Albanian) to ALL_LINGUAS.

2004-08-31  Miloslav Trmac  <mitr@volny.cz>

	* configure.in: Add "zh_CN" (simplified Chinese) to ALL_LINGUAS.

=== shared-mime-info 0.15 ===

2004-08-30  Christophe Fergeau  <teuf@gnome.org>

	* Makefile.am:
	* configure.in: use m4 macros provided by pkg-config instead of using
	  our own

2004-08-30  Christophe Fergeau  <teuf@gnome.org>

	* NEWS:
	* configure.in: raised version number, updated NEWS file

2004-08-27  Ole Laursen  <olau@hardworking.dk>

	* configure.in: Added "el" (Greek) to ALL_LINGUAS.

2004-08-17  Christophe Fergeau  <teuf@gnome.org>

	* mkinstalldirs: add to CVS since it's no longer installed by automake
	  fixes bug #576

2004-08-17  Christophe Fergeau  <teuf@gnome.org>

	* configure.in: added ko to ALL_LINGUAS

2004-08-16  Alexander Larsson  <alexl@redhat.com>

	* freedesktop.org.xml.in:
	Make x-gnome-app-info alias x-desktop.

2004-08-12  Alexander Larsson  <alexl@redhat.com>

	* freedesktop.org.xml.in:
	Inherit text file types from text/plain

Thu Jul 29 13:28:32 2004  Jonathan Blandford  <jrb@gnome.org>

	* freedesktop.org.xml.in: add application/x-wordperfect and
	application/wordperfect as aliases to application/vnd.wordperfect,
	#914

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

	* freedesktop.xml.in: Add "*.exe" glob pattern to
	application/x-ms-dos-executable, raise magic priority over
	application/x-executable.

Fri Jul  9 12:24:04 2004  Thomas Leonard  <tal00r@ecs.soton.ac.uk>

	* freedesktop.org.xml.in: Merged the two msword types by making them
	aliases. Same thing for the two msexcel types and the two realaudio
	types (part of patch from David Faure, in #619).

Fri Apr 23 11:44:23 2004  Jonathan Blandford  <jrb@gnome.org>

	* freedesktop.org.xml.in: Added text/x-xmi, #543

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

	* freedesktop.xml.in: Added *.abw.CRASHED glob pattern to
	application/x-abiword, added text/x-gettext-translation-template,
	added match tag to application/vnd.ms-powerpoint.

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

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

Tue Mar 23 14:35:47 2004  Thomas Leonard  <tal00r@ecs.soton.ac.uk>

	* freedesktop.org.xml.in: Added application/x-javascript type.

Tue Mar 23 02:09:23 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.in (GETTEXT_PACKAGE): add cs.po
	* po/cs.po: New po file.

Sun Mar 21 23:07:24 2004  Jonathan Blandford  <jrb@gnome.org>

	* NEWS: darnit.  I didn't save the NEWS file before
	tagging/releasing.  Updated for CVS.

Sun Mar 21 22:39:58 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.in: version 0.14

	* freedesktop.org.xml.in: upped the mozilla/netscape bookmarks
	priority.

	* freedesktop.org.xml.in: change xbell to x-xbel, #195

	* freedesktop.org.xml.in: Add matroska video mime type.  Patch
	from Johan Fischer <linux@fischaz.com>, #301

Sun Mar 21 17:50:21 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.in (GETTEXT_PACKAGE): add az.po
	* po/az.po: New po file.

2004-03-19  Alexander Larsson  <alexl@redhat.com>

	* freedesktop.org.xml.in:
	application/x-archive needs lower prio than application/x-deb

Fri Mar 19 01:31:44 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.in (GETTEXT_PACKAGE): add cy.po
	* po/cy.po: New po file.

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

	* freedesktop.org.xml.in:
	Change C# mimetype to text/x-csharp (bug #231)

2004-03-03  Alexander Larsson  <alexl@redhat.com>

	* freedesktop.org.xml.in:
	Add C# mimetype
	Add application/x-ole-storage mimetype, remove
	OLE storage match from application/msword, since it
	matches all sorts of document types using OLE.

Mon Feb 23 23:35:37 2004  Jonathan Blandford  <jrb@gnome.org>

	* po/no.po: new file from Kjartan Maraas.

Sun Feb 22 17:47:39 2004  Thomas Leonard  <tal00r@ecs.soton.ac.uk>

	* freedesktop.org.xml.in: add types from ImageMagick (patch
	from Guido Schimmels).

Wed Feb 18 10:30:32 2004  Jonathan Blandford  <jrb@gnome.org>

	* freedesktop.org.xml.in: Patch from Shaun McCance to add .flac
	detection.

Mon Feb  2 11:45:05 2004  Thomas Leonard  <tal00r@ecs.soton.ac.uk>

	* freedesktop.org.xml.in: make MIME descriptions more consistant
	with each other (patch from Christian Neumair).

Wed Jan 21 14:28:16 2004  Jonathan Blandford  <jrb@gnome.org>

	* shared-mime-info.pc.in: add a package-config file

Tue Jan 20 10:22:44 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.in: Patch from Alex Larsson <alexl@redhat.com> to
	conditionally disable running update-mimedb for packages.

	* freedesktop.org.xml.in: Patch from Alex Larsson
	<alexl@redhat.com> to fix up RIFF and shell magic, as well as
	merging diff files and patch files.

Wed Jan 14 16:45:26 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.in: I already tagged CVS so I'm releasing 0.13.1 to
	get the intltool files.

	* Makefile.am: I wasn't including the intltool files correctly.
	Fixed.

Wed Jan 14 16:27:10 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.in: ...except version 0.12 was already released.
	Releasing lucky version 0.13.

Wed Jan 14 16:23:22 2004  Jonathan Blandford  <jrb@gnome.org>

	* configure.in: Released version 0.12.

	* Makefile.am: Make pass distcheck.

	* freedesktop.org.xml.in: Update DTD to deal with xml:lang

Tue Jan 13 16:32:03 2004  Jonathan Blandford  <jrb@gnome.org>

	* po/no.po: new translation

	* po/fr.po: Noticed it was in ISO8559-1.  Converted to UTF-8.

Mon Jan 12 13:39:45 2004  Jonathan Blandford  <jrb@gnome.org>

	* po/fi.po: new translation

	* po/fr.po: new translation

	* po/nn.po: new translation

Mon Jan 12 15:49:55 2004  Thomas Leonard <tal00r@ecs.soton.ac.uk>

	* freedesktop.org.xml.in: Updated DjVu entry (patch from
	  Stéphane Loeuillet).

Tue Dec 16 01:57:24 2003  Jonathan Blandford  <jrb@gnome.org>

	* Makefile.am: comment out the UTF-8 changes.  We don't build all
	that often as we keep the generated file in CVS, and most people
	won't build it.

	* autogen.sh: add an autogen.sh file, and clean up the build
	setup.

Tue Nov 18 10:12:38 2003  Jonathan Blandford  <jrb@redhat.com>

	* configure.in (GETTEXT_PACKAGE): add sv.po

Mon Nov 17 10:44:28 2003  Jonathan Blandford  <jrb@redhat.com>

	* po/nl.po: updated translation.

Thu Nov 13 17:47:52 2003  Jonathan Blandford  <jrb@redhat.com>

	* configure.in (GETTEXT_PACKAGE): add nl.po

	* po/nl.po: new translation.

Wed Nov 12 14:00:13 2003  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: add hu.po and sv.po.  We're now building in
	translations.

Fri Nov  7 16:42:24 2003  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: moved to intltool.  We now build translations from
	pot files.