diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2023-11-22 08:04:15 -0700 |
---|---|---|
committer | David Faure <faure@kde.org> | 2024-01-28 18:48:17 +0000 |
commit | 9fad810b3f205eed438f262dac1c8820fd25ecf4 (patch) | |
tree | c57305a74572b39ede6a30730f66e71573c90a59 /data | |
parent | eb28513c9595f62760df2a3afff9fe3cc6601f8d (diff) |
Add application/microsoftpatch and application/microsoftupdate
These two are not official IANA media types, but they can be found in
the wild.
Wine currently supports .msp files and may gain support for .msu files
in the future.
https://forums.ivanti.com/s/sfsites/c/sfc/servlet.shepherd/document/download/0694O00000J7pyUQAR
Diffstat (limited to 'data')
-rw-r--r-- | data/freedesktop.org.xml.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/data/freedesktop.org.xml.in b/data/freedesktop.org.xml.in index 46839a6..5156a11 100644 --- a/data/freedesktop.org.xml.in +++ b/data/freedesktop.org.xml.in @@ -3772,6 +3772,23 @@ command to generate the output files. </magic> <glob pattern="*.msi"/> </mime-type> + <mime-type type="application/microsoftpatch"> + <comment>Windows Installer patch</comment> + <sub-class-of type="application/x-ole-storage"/> + <generic-icon name="package-x-generic"/> + <magic priority="60"> + <match type="string" value="\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1" offset="0"> + <match type="string" value="\x86\x10\x0c\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x46" offset="592:8192"/> + </match> + </magic> + <glob pattern="*.msp"/> + </mime-type> + <mime-type type="application/microsoftupdate"> + <comment>Windows Update package</comment> + <sub-class-of type="application/vnd.ms-cab-compressed"/> + <generic-icon name="package-x-generic"/> + <glob pattern="*.msu"/> + </mime-type> <mime-type type="application/appx"> <comment>Windows app store package</comment> <sub-class-of type="application/zip"/> |