Skip to content

Commit

Permalink
Fixing #100 FITS files no longer had mime type (thanks to ejeschke)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed Sep 25, 2024
1 parent c1d49eb commit 3e5e36b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Version 1.28

- Adding #99 New file support (thanks to Andy - NebularNerd)
- Fixing #100 FITS files no longer had mime type (thanks to ejeschke)

Version 1.27
------------

Expand Down
2 changes: 1 addition & 1 deletion puremagic/magic_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,7 @@
["01003930", 0, ".fdb", "", "Firebird and Interbase database files"],
["01003930", 0, ".gdb", "", "Firebird and Interbase database files"],
[
"53494d504c4520203d202020202020202020202020202020202020202054", 0, ".fits", "",
"53494d504c4520203d202020202020202020202020202020202020202054", 0, ".fits", "image/fits",
"Flexible Image Transport System (FITS) file"
],
["256269746d6170", 0, ".fbm", "", "Fuzzy bitmap (FBM) file"],
Expand Down
2 changes: 1 addition & 1 deletion puremagic/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from itertools import chain

__author__ = "Chris Griffith"
__version__ = "1.27"
__version__ = "1.28"
__all__ = [
"magic_file",
"magic_string",
Expand Down

0 comments on commit 3e5e36b

Please sign in to comment.