-
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* added more mime types (fixes #1461) Refactored a few more files * Fixed path to Desktop file
- Loading branch information
Showing
6 changed files
with
36 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> | ||
<mime-type type="application/x-SPS-virtual-media-image"> | ||
<comment>Interchangeable Preservation Format</comment> | ||
<generic-icon name="media-floppy"/> | ||
<magic priority="50"> | ||
<match type="string" value="CAPS" offset="0"/> | ||
</magic> | ||
<glob pattern="*.ipf"/> | ||
</mime-type> | ||
<mime-type type="application/x-DMS-compressed-disk-image"> | ||
<comment>Disk Masher System</comment> | ||
<generic-icon name="media-floppy"/> | ||
<magic priority="50"> | ||
<match type="string" value="DMS!" offset="0"/> | ||
</magic> | ||
<glob pattern="*.dms"/> | ||
</mime-type> | ||
<mime-type type="application/x-WHDLoad-game-archive"> | ||
<comment>WHDLoad Amiga Package</comment> | ||
<generic-icon name="package-x-generic"/> | ||
<magic-deleteall/> | ||
<magic priority="60"> | ||
<match type="big32" value="0x001000084" offset="8:11"/> | ||
</magic> | ||
<glob-deleteall/> | ||
<glob pattern="*.lha"/> | ||
</mime-type> | ||
</mime-info> |