forked from dlitz/xdg-shared-mime-info
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog.pre-git
More file actions
3399 lines (2206 loc) · 106 KB
/
ChangeLog.pre-git
File metadata and controls
3399 lines (2206 loc) · 106 KB
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
=== shared-mime-info 0.70 ===
2009-10-06 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.70
2009-10-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/test.metalink: Add metalink, patch from Ville
Skyttä <ville.skytta@iki.fi> (Closes: #23738)
2009-10-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/fuji.themepack:
* tests/list: Add Windows theme packs (Closes: #23314)
2009-10-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/archive.tar:
* tests/comics.cbt:
* tests/list: Add cbt (tarred-up Comic Books),
patch from juanj.marin@juntadeandalucia.es (Closes: #22724)
2009-10-06 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Make text/vnd.graphviz magic stricter
so that it doesn't match "paragraph ". (Closes: #22534)
* tests/list:
* tests/test.tex: Testcase for the above problem.
2009-10-06 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Add kexi mimetypes (from #18109)
even though the xdgmime bug mentionned in #18109 isn't fixed.
* tests/list:
* tests/sqlite2.kexi:
* tests/sqlite3.kexi: Add testcase for kexi mimetypes.
2009-10-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/test.lzo: Add acronym, magic and test case for LZO
archives, patch from Ville Skyttä <ville.skytta@iki.fi>
(Closes: #22861)
2009-10-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add acronyms for CSV and TSV,
patch from Ville Skyttä <ville.skytta@iki.fi> (Closes: #22860)
2009-10-06 Bastien Nocera <hadess@hadess.net>
* tests/list: Add test case for core vs. Core files
(Closes: #22634)
2009-10-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/test.lz: Add application/x-lzip mime-type, patch from
Ville Skyttä <ville.skytta@iki.fi> (Closes: #23258)
2009-10-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add tar.bz2 files as subclasses of
application/x-bzip-compressed-tar, patch by traydent@gmail.com
(Closes: #23391)
2009-10-05 Bastien Nocera <hadess@hadess.net>
* HACKING:
* Makefile.am: Update for transifex.net use
2009-10-02 Alexander Larsson <alexl@redhat.com>
* freedesktop.org.xml.in:
Correct magic for application/x-mswinurl, offset is 11 not 10,
because the newline is cr + lf. See tests/test.url
2009-10-02 Alexander Larsson <alexl@redhat.com>
Based on patch from David Faure <faure@kde.org>
* shared-mime-info-spec.xml: Define new case-sensitive attribute, and
change the text from the two-step glob match to a single glob match,
that is either case sensitive or case insensitive. Add flags field to
globs2 file, define the "cs" flag.
* freedesktop.org.xml.in:
Make core, *.c and *.C case sensitive (Closes: #22634)
* update-mime-database.c:
Process case-sensitive flag, write it out in globs2 and mime.cache
* tests/list:
Mark as expected success the previously problematic
case sensitive issues.
2009-09-30 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix "make check" problem for MRML.
2009-09-26 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Add expanded-acronym for MRML in text/x-mrml.
2009-09-24 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add magic for another MP4 file type
2009-09-22 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add magic for RealMedia Format files
2009-09-18 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Remove wrong magic for application/x-java-archive.
The 0xcafe magic is really for java class files and since they get compressed
we won't find it anywhere in the jar file. I even found it in normal zip files
for completely unrelated reasons, so it doesn't make sense to have it.
2009-09-17 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Add application/java-archive alias
for application/x-java-archive so that distributions can get rid
of /usr/share/mime/packages/sun-java6-jre.xml, which was defining
another mimetype for the *.jar glob, causing
https://bugs.launchpad.net/ubuntu/+source/krusader/+bug/309778
2009-09-16 Pino Toscano <pino@kde.org>
* freedesktop.org.xml.in: Add image/openraster mimetype. References:
http://create.freedesktop.org/wiki/OpenRaster/File_Layout_Specification
* tests/mypaint.ora: Test data for image/openraster mimetype;
taken from the mypaint examples.
* tests/list: Add test case to the list.
2009-09-15 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add PSP MP4 video type
2009-07-31 Bastien Nocera <hadess@hadess.net>
* tests/list: Fix test suite for those pesky PS files
2009-07-31 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add *.otf as a glob for
OpenType fonts so file managers use magic to check
for fonts vs. OO.o documents (Closes: #20854)
2009-05-20 Bastien Nocera <hadess@hadess.net>
* tests/list:
* tests/text.PS.gz:
* tests/text.ps.gz: Add test cases for multi-suffix files,
with mixed-cases
2009-04-21 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/test.por:
* tests/test.sav: Patch from Ben Pfaff <blp@cs.stanford.edu>
to add SPSS portable and save formats mime-types (Closes: #20834)
2009-04-21 Bastien Nocera <hadess@hadess.net>
* tests/list:
* tests/test.bflng:
* tests/test.xhtml: Add a few disable tests for bug #19201
2009-04-20 Bastien Nocera <hadess@hadess.net>
* update-mime-database.c (main): Patch from Martin von Gagern
<Martin.vGagern@gmx.net> to give a better error message when
a directory doesn't exist (Closes: #20552)
2009-04-20 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/foo.doc:
* tests/list: And another magic for Word documents, and a test case
(Closes: #20604)
2009-04-20 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list: Add another magic for Word documents, along with a test
case update (Closes: #20275)
2009-04-20 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Avoid some .ini files getting detected
as Cisco VPN configuration files, when they start with "[main]"
(Closes: #20302)
* tests/list:
* tests/menu.ini: Add test case to verify the above
2009-04-20 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/tree-list: Patch from Cosimo Cecchi <cosimoc@gnome.org> to
separate Win32 from Unix autostart detection (Closes: #20562)
2009-04-17 Pino Toscano <pino@kde.org>
* freedesktop.org.xml.in: Add application/x-xz and
application/x-xz-compressed-tar mimetypes. References for them is at:
http://tukaani.org/xz/ (http://tukaani.org/xz/xz-file-format.txt).
Based on a Mandriva patch.
* tests/good-1-delta-lzma2.tiff.xz: Test data for application/x-xz;
taken from the XZ test cases in the sources.
* tests/spinboxes-0.1.1-Linux.tar.xz: Test data for
application/x-xz-compressed-tar, provided by Helio Chissini de Castro.
* tests/list: Add test cases to the list.
2009-04-10 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Add application/vnd.google-earth.kml+xml
and application/vnd.google-earth.kmz mimetypes. (Closes: KDE bug #136983)
* tests/list:
* tests/googleearth.kml: Test data (from marble, actually).
2009-04-10 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Add Makefile.* pattern for text/x-makefile,
to catch Makefile.gnu and other similar names, with low weight to let
Makefile.html files be text/html.
* tests/list:
* tests/Makefile:
* tests/Makefile.gnu: Test data
2009-04-09 Alexander Larsson <alexl@redhat.com>
* update-mime-database.c: (process_freedesktop_node),
(compare_glob_by_weight), (cmp_magic), (magic_new), (main):
Support glob-deleteall and magic-deleteall nodes.
Copy glob and glob-deleteall nodes to the per-mimetype xml file.
2009-04-08 David Faure <faure@kde.org>
* shared-mime-info-spec.xml: Add definition of glob-deleteall
and magic-deleteall, and their effect on globs2 and magic files,
as discussed on the xdg list.
2009-03-16 Bastien Nocera <hadess@hadess.net>
* Makefile.am: Don't use "make" but "$(MAKE)" to call
our make, fixes build on *BSDs, spotted by Antoine Jacoutot
<ajacoutot@lphp.org> (Closes: #20655)
2009-02-24 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/small_wav.mxf: Patch from Sebastian Dröge
<slomo@circular-chaos.org> to add the MXF video mime-type
(Closes: #20292)
=== shared-mime-info 0.60 ===
2009-02-21 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.60
* Makefile.am: Fix running make distcheck
2009-02-21 Bastien Nocera <hadess@hadess.net>
* HACKING: Add some more details about the test suite
2009-02-21 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Magnus Bergman to make the
Photoshop image match its IANA definition (Closes: #20067)
* tests/list: Fix mime-type for the above
2009-02-21 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Magnus Bergman to make the
Windows icon match its IANA definition (Closes: #20069)
* tests/list: Fix mime-type for the above
2009-02-21 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/aportis.pdb:
* tests/list:
* tests/pocket-word.psw: Patch from Caolan McNamara to
to add the Pocket Word and AportisDoc document types
(Closes: #20185)
2009-02-21 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Götz Waschk and
Milan Bouchet-Valat to add Office 2007/OpenXML documents
mime-types (Closes: #13904)
* tests/list:
* tests/sample.docx:
* tests/sample.pptx:
* tests/sample.xlsx: Add test files for the above
2009-02-17 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Rename image/x-fits to image/fits
(IANA-registered name), and add image/x-fits as alias
* tests/list: Update testcase accordingly
2009-02-09 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add *.vapi as a possible pattern
for Vala files (Closes: #19507)
2009-02-09 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Robert DaSilva
<spunit262@Yahoo.com> to make Javascript a sub-class of C sources
so as to avoid misdetection
* tests/list:
* tests/survey.js: Add test-case from the bug above
2009-02-09 Bastien Nocera <hadess@hadess.net>
* tests/list: MS Office apps suck, we're not expected to recognise
a template file by magic (Closes: #18863)
2009-02-09 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Gnucash documents aren't spreadsheets,
so call it "financial data", leave the icon as-is though
(Closes: #19355)
2009-02-09 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add alias for text/x-csv (Closes: #19664)
2009-02-09 Bastien Nocera <hadess@hadess.net>
* tests/list:
* tests/test2.ppm: Add test case for PPM with non-working magic
(Closes: #19811)
2009-02-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Koos Vriezen
<koos.vriezen@gmail.com> to add more aliases for media types,
as used by kmplayer (Closes: #19671)
2009-01-13 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/playlist.wpl: Add the application/vnd.ms-wpl mime-type
2009-01-08 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/test.p7b:
* tests/test.pkipath: Patch from Ville Skyttä
<ville.skytta@iki.fi> to add PKCS#7 and PkiPath file types
(Closes: #10864)
2009-01-08 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: PKCS#12 bundles are not text files,
patch from Ville Skyttä <ville.skytta@iki.fi> (Closes: #19056)
2009-01-08 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/Stallman_Richard_-_The_GNU_Manifesto.fb2:
* tests/list: Patch from Pino Toscano <pino@kde.org>
to add the FictionBook (fb2) file type (Closes: #17553)
2009-01-08 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Ville Skyttä
<ville.skytta@iki.fi> to add support for MS cab files
* tests/copying.cab:
* tests/list: Add test file for the above
2009-01-07 Pino Toscano <pino@kde.org>
* update-mime-database.1: Update the URL to the specifications.
Probably not the most correct one, but better than a non-existing page.
2009-01-06 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/msg0001.gsm: Add audio/x-gsm for GSM 06.10 encoded audio files
2009-01-05 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Remove application/x-msi magic,
it was just generic ole-storage magic so even .doc files would match it.
(Closes: #18072)
* tests/list: Add expected failure for the lookup by file data for test.msi,
since we have no msi-specific magic. Would be better to be able to specify
"the expected mimetype for this data-only lookup is ole-storage" in tests/list :-)
2008-12-20 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Add magic for GIMP xcf files
* tests/list: Fix the resulting "unexpected pass" for xcf.
2008-12-19 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add cb7 files, Comic book archive
created with 7z (Closes: #18887)
* tests/comics.cb7:
* tests/list: Add a test for cb7 files
2008-12-03 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add magic for 7z archive files
* tests/archive.7z:
* tests/list: Add test case for the above
2008-11-13 Pino Toscano <pino@kde.org>
* freedesktop.org.xml.in: add definition for the Microsoft Document
Imaging format IANA MIME type, image/vnd.ms-modi.
* tests/list:
* tests/bluerect.mdi: Add a test MDI file, kindly provided by
Brad Hards.
2008-11-03 David Faure <faure@kde.org>
* freedesktop.org.xml.in: add application/x-zip alias
for application/zip, for compatibility with KDE 3.
2008-10-29 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: make PICTURES match a picture CD,
not "Pictures", or "pictures"
2008-10-17 David Faure <faure@kde.org>
* freedesktop.org.xml.in: Add missing IANA-registered mimetype
application/vnd.oasis.opendocument.chart-template
and correct the use of <acronym> in all oasis mimetypes, which
is meant to explain an acronym used in <comment>, not the extension.
* freedesktop.org.xml.in: Add missing IANA-registered mimetype
application/vnd.oasis.opendocument.formula-template
* freedesktop.org.xml.in: Add missing IANA-registered mimetype
text/vnd.graphviz, with globs, magic and test (Closes: #15363)
2008-10-16 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix RDF mime-type, spotted by
Sebastian Trüg <trueg@kde.org> (Closes: #18088)
2008-10-12 Bastien Nocera <hadess@hadess.net>
* Makefile.am: Fix building when srcdir != builddir,
patch by Yevgeniy <YLitvinenko@astana.oilfield.slb.com>
(Closes: #18026)
2008-09-10 Bastien Nocera <hadess@hadess.net>
* tests/tree-list: Add another test for video DVDs
2008-09-10 Bastien Nocera <hadess@hadess.net>
* shared-mime-info-spec.xml: Clarify some statements to
include "of the same weight" when talking about comparisons,
patch from David Faure <dfaure@trolltech.com>
2008-08-27 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Only use *.ogg for audio Oggs
(Closes: #12890)
* tests/list:
* tests/test.ogg: Add a test ogg vorbis file
2008-08-20 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/ccfilm.axv:
* tests/list: Add Annodex mime-types, from
http://www.annodex.net/TR/annodex.html#anchor15
2008-08-19 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix priority of the SMIL detection
so it's lower than that of SMILtext media links (See
http://bugzilla.gnome.org/show_bug.cgi?id=518688#c4)
* tests/hbo-playlist.qtl: Add a test file for the above
* tests/list:
2008-08-08 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add application/smil+xml as
an alias for application/smil, as used at
http://www.cartalk.com/Radio/Show/online.html
2008-07-23 Bastien Nocera <hadess@hadess.net>
* Makefile.am: Force recreating the pot file when running make
=== shared-mime-info 0.51 ===
2008-07-23 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.51
2008-07-23 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix capitalisation in a number
of mime-types, better description for a number of content-types,
thanks to Benno Schulenberg <bensberg@justemail.net>
=== shared-mime-info 0.50 ===
2008-07-22 Bastien Nocera <hadess@hadess.net>
* Makefile.am: fix distcheck
* NEWS: upd
* configure.in: 0.50
2008-07-21 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add MSI (Windows Installer) mime-type,
including magic, based on work from Scott Ritchie
<scott@open-vote.org> (Closes: #16495)
* tests/list:
* tests/test.msi: add test case for the above
2008-07-20 Bastien Nocera <hadess@hadess.net>
* shared-mime-info-spec.xml: Better wording on the intentions
for the "path" property, patch from Matthias Clasen
<mclasen@redhat.com>
2008-07-20 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Better tree magic for HD-DVD
* tests/tree-list: add more tests for the recently added
tree magics
2008-07-20 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add missing treemagic for the
recently added filetypes
2008-07-19 Bastien Nocera <hadess@hadess.net>
* Makefile.am: Fail if the tree test failed
* freedesktop.org.xml.in: Move some types from nautilus,
not fully implemented yet
* test-tree-magic.c (handle_one_line), (type_to_path),
(print_matchlet), (main): Add some debug functionality
* tests/tree-list: Add a test for VCDs
2008-07-18 Bastien Nocera <hadess@hadess.net>
* .cvsignore: upd
* shared-mime-info-spec.xml: Update the spec to contain
"content-types" or "tree magic", to detect an "x-content/" mime-type
from a directory structure, patch from Matthias Clasen
<mclasen@redhat.com>
* update-mime-database.c (process_freedesktop_node),
(cmp_tree_magic), (tree_match_new), (tree_match_free),
(build_tree_matches), (tree_magic_free), (tree_magic_new),
(write_tree_magic_children), (write_tree_magic), (add_type),
(write_types), (write_header), (write_types_cache), (write_cache),
(main): Add support for writing the tree-magic file, as per the
spec update above, patch from Matthias Clasen <mclasen@redhat.com>
* freedesktop.org.xml.in: Add one single tree-magic item, for
testing
* configure.in: check for GIO, build the tree magic test if it's
available
* Makefile.am: use test-tree-magic if it's there
* test-tree-magic.c: automated testing for tree magic, based on GIO
code by Matthias Clasen <mclasen@redhat.com>
* tests/tree-list: A few tests
2008-06-22 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add support for the extended URL format
as per http://www.cyanwerks.com/file-format-url.html
* tests/list:
* tests/test.url: Add test case for the above
2008-06-19 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add low-priority magic for TGA files,
from gdk-pixbuf, spotted by Matthias Clasen <mclasen@redhat.com>
(Closes: #16414)
* tests/list: Also check TGA files by magic
2008-06-19 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add magic from gdk-pixbuf for
ICO and CUR files, spotted by Matthias Clasen <mclasen@redhat.com>
(Closes: #16413)
* tests/aero_alt.cur:
* tests/list: Add a test windows cursor file
2008-06-19 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Better magic for GIF files,
from gdk-pixbuf, spotted by Matthias Clasen <mclasen@redhat.com>
(Closes: #16411)
2008-06-19 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add some aliases for BMP images,
spotted by Matthias Clasen <mclasen@redhat.com>
(Closes: #16410)
2008-06-19 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add Windows animated cursor
from the gdk-pixbuf loader magic (Closes: #16409)
* tests/jc-win.ani:
* tests/list: Add test case
=== shared-mime-info 0.40 ===
2008-06-11 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.40
* Makefile.am: Fix distchecking
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/hereyes_remake.mo3:
* tests/list: Add a mime-type for the MO3 tracker file type,
along with a test file (Closes: #16291)
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Wilbert Berendsen
<wbsoft@xs4all.nl> to add a mime-type for Lilypond music sheets
(Closes: #13883)
* tests/list:
* tests/petite-ouverture-a-danser.ly: Add a test file for the
text/x-lilypond mime-type
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Tighten the magic for PBM,
PPM and PGM types, so as to avoid false positives
(Closes: #2359)
* tests/list:
* tests/test.pbm: Add a pbm test file
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Make application/x-gnuplot a
sub-class-of text/plain (Closes: #15852)
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add "Subject: " as a match
for message/rfc822 mime-types
* tests/evo.msg: Remove, it was unused
* tests/list:
* tests/evolution.eml:
* tests/tb-from-sentbox.eml:
* tests/tb-saved.eml: Add some message test cases
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add the OXT mimetype, for
OpenOffice extensions
* tests/Anaphraseus-1.21-beta.oxt:
* tests/list: Add test file
(Closes: #15110)
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Make text/x-readme have a weight
of 10 (very low) so README.pdf doesn't get matched with
text/x-readme
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/bathead.sk:
* tests/list: Add image/x-skencil mime-type for Skencil
files, with help from Tim Beaulen <tbscope@gmail.com>
(Closes: #16050)
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix build
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Josselin Mouette
<joss@debian.org> to avoid problems when detecting Matroska
files by data, create a new application/x-matroska mime-type,
and make video/x-matroska and audio/x-matroska subclasses of it
(Closes: #16144)
2008-06-11 Bastien Nocera <hadess@hadess.net>
* tests/list:
* tests/test.php: Add a test case for PHP files, from
https://bugs.freedesktop.org/show_bug.cgi?id=16228
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix make check
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Patch from Sebastian Dröge
<slomo@circular-chaos.org> to add *.m3u8 as a glob for m3u files
(Closes: #16143)
2008-06-11 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add text/rtf as an alias for application/rtf
(Closes: #16270)
2008-06-09 Bastien Nocera <hadess@hadess.net>
* shared-mime-info-spec.xml: Update version to 0.17, as we added the
compact tree suffix
2008-06-09 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add weight to the DTD (patch by Matthias)
* shared-mime-info-spec.xml:
* update-mime-database.c (insert_suffix), (write_suffix_entries),
(write_suffix_cache): Patch by Matthias Clasen
<mclasen@redhat.com> to implement the compact suffix tree
2008-06-02 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix pack200 magic, remove useless gtkrc
mime-type (doesn't match gtk+ 2.0 config files, and no need for
mime-types for dot files)
* Makefile.am: When the test suite fails, relaunch it with more
verbose so we can fix the error
* tests/list: MicroDVD subs can now be matched
2008-06-02 Bastien Nocera <hadess@hadess.net>
* shared-mime-info-spec.xml:
Patch from Matthias Clasen <mclasen@redhat.com> to update the spec
to match the current implementation
2008-06-02 Bastien Nocera <hadess@hadess.net>
* update-mime-database.c:
Patch from Matthias Clasen <mclasen@redhat.com> to update cache
version to 1.1 after the recent changes
2008-06-02 Bastien Nocera <hadess@hadess.net>
* update-mime-database.c (get_int_attribute), (get_priority),
(get_weight), (process_freedesktop_node), (write_out_glob),
(write_out_glob2), (collect_glob2), (compare_by_weight),
(write_one_icon), (write_icons), (write_header), (write_map_entry),
(write_map), (get_glob_list_value), (write_alias_cache),
(write_literal_cache), (write_glob_cache), (insert_suffix),
(ucs4_reverse), (build_suffixes), (write_suffix_entries),
(write_suffix_cache), (write_namespace_cache), (get_icon_value),
(write_icons_cache), (collect_glob), (collect_icons),
(collect_strings), (write_cache), (main):
Patch from Matthias Clasen <mclasen@redhat.com> to implement
icon and generic-icon support
2008-06-02 Bastien Nocera <hadess@hadess.net>
* update-mime-database.c (get_int_attribute), (get_priority),
(get_weight), (process_freedesktop_node), (write_out_glob),
(write_out_glob2), (collect_glob2), (compare_by_weight),
(write_map_entry), (write_map), (get_glob_list_value),
(write_alias_cache), (write_literal_cache), (write_glob_cache),
(insert_suffix), (ucs4_reverse), (build_suffixes),
(write_suffix_entries), (write_suffix_cache),
(write_namespace_cache), (collect_glob), (write_cache), (main):
Patch from Matthias Clasen <mclasen@redhat.com> to implement
reverted suffix trees
2008-06-02 Bastien Nocera <hadess@hadess.net>
* update-mime-database.c (get_int_attribute), (get_priority),
(get_weight), (process_freedesktop_node), (write_out_glob),
(write_out_glob2), (collect_glob2), (compare_by_weight),
(write_map_entry), (write_map), (get_glob_list_value),
(write_alias_cache), (write_literal_cache), (write_glob_cache),
(insert_suffix), (build_suffixes), (write_suffix_entries),
(write_suffix_cache), (write_namespace_cache), (collect_glob),
(write_cache), (main): Patch from Matthias Clasen <mclasen@redhat.com>
to implement glob weigths
2008-06-02 Bastien Nocera <hadess@hadess.net>
* HACKING: More instructions for submission to the TP
2008-06-02 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Remove fnmatches for a few mime-types,
spotted by Matthias Clasen
2008-05-25 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add text/x-c, for the same reason as below
2008-05-24 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add text/x-diff as an alias for
Patches, as used in the wild
2008-05-13 Bastien Nocera <hadess@hadess.net>
* Makefile.am: Check that all the translations are actually
shipped when doing a translation update
=== shared-mime-info 0.30 ===
2008-05-12 Bastien Nocera <hadess@hadess.net>
* NEWS: upd
* configure.in: 0.30
2008-05-12 Bastien Nocera <hadess@hadess.net>
* HACKING: Add link to the TP's maintainer corner
2008-05-12 Bastien Nocera <hadess@hadess.net>
* HACKING: Add mention of the update-translations target
* Makefile.am: add the update-translations which pulls the latest
translations from the Translation Project
2008-05-02 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Some string review courtesy of Benno
Schulenberg <bensberg@justemail.net>
2008-04-30 Bastien Nocera <hadess@hadess.net>
* HACKING: Add details on how to update the spec on the website
2008-04-23 Bastien Nocera <hadess@hadess.net>
* Makefile.am: More than just application/ mime-type need generic-icon
* freedesktop.org.xml.in: add generic-icon to a few message/
mime-types, as well as to the VRML mime-type
2008-04-23 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix FIXMEs for the generic icons, fix a few
archives' acronyms, remove the text/x-ksysv-log mime-type which
doesn't have a comment, and doesn't seem to be used anymore
2008-04-23 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Tighten the DTD as to the allowed values for
the generic-icon needing to be listed in the Icon Naming spec
2008-04-23 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/internet.ez:
* tests/list: Add test file for Andrew insets, and fix generic-icon
2008-04-23 Bastien Nocera <hadess@hadess.net>
* Makefile.am: Remove the tests below, and modify the DTD to not allow
acronyms without an expanded-acronym, and mime-types without comments
* freedesktop.org.xml.in: Add generic-icons to all the application/
mime-type, with a few FIXMEs, remove duplicated StuffIt mime-type, but
keep the aliases, fix a few mime-types without comments, and missing
acronyms or expanded-acronyms
2008-04-22 Bastien Nocera <hadess@hadess.net>
* Makefile.am: Add check for mime-types without comments
2008-04-22 Bastien Nocera <hadess@hadess.net>
* Makefile.am: Check for acronyms without any expanded acronyms
2008-04-22 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add generic-icon to the DTD
2008-04-22 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/ISOcyr1.ent:
* tests/list: Patch from Pino Toscano <pino@kde.org> to add
XML entities support, and fix the DTD mime-type to be the one
in the RFC (Closes: #14085)
2008-04-21 Pino Toscano <pino@kde.org>
* Makefile.am: use $(top_builddir) instead of $(builddir) in the
"check" target, this way it works also with automake 1.9.
2008-04-21 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add mime-type for MS Works
documents, patch from Pino Toscano <pino@kde.org>
(Closes: #12989)
* tests/list:
* tests/test.wps: Add test file for MS Works
2008-04-21 Pino Toscano <pino@kde.org>
* freedesktop.org.xml.in:
* tests/test.cmake:
* tests/list: Add mime-type for CMake scripts, patch from
Aleix Pol <aleixpol@gmail.com> (Closes: #15561)
2008-04-21 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/hello.pack:
* tests/list: Add mime-type for Pack200 archives, patch from
Ville Skyttä <ville.skytta@iki.fi> (Closes: #12620)
2008-04-18 Bastien Nocera <hadess@hadess.net>
* HACKING: Add mention on how to file bugs
2008-04-15 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/test-vpn.pcf: Add Cisco VPN mime-type (from David Zeuthen
<david@fubar.dk>), and test case (Closes: #3560)
2008-04-15 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Fix expanded acronym for ODB
files, spotted by jstaniek <js@iidea.pl> (Closes: #12686)
2008-04-15 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/ocf10-20060911.epub: Add application/epub+zip for
Electronic Book documents, patch from Pino Toscano
<pino@kde.org> (Closes: #12625)
2008-04-15 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/test.iptables: Add text/x-iptables for iptables
scripts, for the benefit of gedit, definition from
Ian Laurie <iml@zip.com.au> (Closes: #6652)
2008-04-14 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add *.3g2 as a possible suffix for
3GPP files
2008-04-10 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in:
* tests/list:
* tests/test-cdda.toc:
* tests/test-cdrom.toc: Add mime-type for CDRDAO TOC files
with (wobbly) magic (Closes: #11530)
2008-04-10 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Add *.med as MOD files, patch from
Ville Skyttä <ville.skytta@iki.fi> (Closes: #10863)
2008-04-10 Bastien Nocera <hadess@hadess.net>
* freedesktop.org.xml.in: Require AVI files to have both the RIFF
and the "AVI " bits, not just one of them (Closes: #12541)
* tests/list: