Release Office Tools 0.2.0
Verify / verify (push) Canceled after 0s

This commit is contained in:
2026-09-02 07:32:31 +02:00
parent a5524e27e3
commit 08b8f84f7b
50 changed files with 2196 additions and 165 deletions
+40 -2
View File
@@ -3,7 +3,7 @@
"schemaVersion": 1,
"id": "de.add-ideas.office-tools",
"name": "Office Tools",
"version": "0.1.0",
"version": "0.2.0",
"description": "Open and inspect documents, spreadsheets and presentations locally in the browser.",
"entry": "./",
"icon": "./favicon.svg",
@@ -32,9 +32,47 @@
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{
"mediaType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"extensions": [".docx", ".dotx", ".docm", ".dotm"]
},
{
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"extensions": [".xlsx", ".xltx", ".xlsm", ".xltm"]
},
{
"mediaType": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
"extensions": [".pptx", ".potx", ".ppsx", ".pptm", ".potm", ".ppsm"]
},
{
"mediaType": "application/vnd.oasis.opendocument.text",
"extensions": [".odt", ".ott"]
},
{
"mediaType": "application/vnd.oasis.opendocument.spreadsheet",
"extensions": [".ods", ".ots"]
},
{
"mediaType": "application/vnd.oasis.opendocument.presentation",
"extensions": [".odp", ".otp"]
}
],
"produces": [
{
"mediaType": "application/vnd.oasis.opendocument.text",
"extensions": [".odt"]
},
{ "mediaType": "text/csv", "extensions": [".csv"] },
{ "mediaType": "text/plain", "extensions": [".txt"] },
{ "mediaType": "application/json", "extensions": [".json"] }
]
},
"capabilities": { "required": ["workers"], "optional": [] },
"privacy": {
"processing": "local",
"fileUploads": false,
"fileUploads": true,
"telemetry": false,
"label": "Office files stay in this browser; nothing is uploaded."
},