mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Fix macOS app bundle ODF extensions .ods .odt
application/vnd.oasis.opendocument.spreadsheet ods application/vnd.oasis.opendocument.text odt
This commit is contained in:
parent
e022b5aca0
commit
6186538f70
1 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ if p == "Darwin":
|
||||||
"CFBundleTypeRole": "Viewer",
|
"CFBundleTypeRole": "Viewer",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"CFBundleTypeExtensions": ["odg"],
|
"CFBundleTypeExtensions": ["odt"],
|
||||||
"CFBundleTypeIconFile": "../macos/document.icns",
|
"CFBundleTypeIconFile": "../macos/document.icns",
|
||||||
"CFBundleTypeMIMETypes": [
|
"CFBundleTypeMIMETypes": [
|
||||||
"application/vnd.oasis.opendocument.text"
|
"application/vnd.oasis.opendocument.text"
|
||||||
|
@ -119,7 +119,7 @@ if p == "Darwin":
|
||||||
"CFBundleTypeRole": "Viewer",
|
"CFBundleTypeRole": "Viewer",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"CFBundleTypeExtensions": ["ops"],
|
"CFBundleTypeExtensions": ["ods"],
|
||||||
"CFBundleTypeIconFile": "../macos/document.icns",
|
"CFBundleTypeIconFile": "../macos/document.icns",
|
||||||
"CFBundleTypeMIMETypes": [
|
"CFBundleTypeMIMETypes": [
|
||||||
"application/vnd.oasis.opendocument.spreadsheet"
|
"application/vnd.oasis.opendocument.spreadsheet"
|
||||||
|
|
Loading…
Reference in a new issue