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

This commit is contained in:
2026-09-02 08:53:49 +02:00
parent f68dcfe4ea
commit efd80eb18a
41 changed files with 3250 additions and 614 deletions
+20 -3
View File
@@ -3,24 +3,41 @@
"schemaVersion": 1,
"id": "de.add-ideas.epub-tools",
"name": "EPUB Tools",
"version": "0.1.0",
"version": "0.2.0",
"description": "Read, inspect and repair EPUB publications locally in the browser.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["documents", "ebooks", "publishing"],
"tags": ["epub", "ebook", "metadata", "reader", "repair"],
"tags": ["epub", "ebook", "metadata", "reader", "repair", "html", "markdown"],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
"embedding": "unsupported"
},
"requirements": {
"secureContext": false,
"secureContext": true,
"workers": true,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{ "mediaType": "application/epub+zip", "extensions": [".epub"] },
{ "mediaType": "text/html", "extensions": [".html", ".htm"] },
{ "mediaType": "application/xhtml+xml", "extensions": [".xhtml"] },
{ "mediaType": "text/markdown", "extensions": [".md", ".markdown"] },
{ "mediaType": "text/plain", "extensions": [".txt"] }
],
"produces": [
{ "mediaType": "application/epub+zip", "extensions": [".epub"] },
{ "mediaType": "text/plain", "extensions": [".txt"] },
{ "mediaType": "text/markdown", "extensions": [".md"] },
{ "mediaType": "text/html", "extensions": [".html"] },
{ "mediaType": "application/json", "extensions": [".json"] }
]
},
"capabilities": { "required": ["workers", "web-crypto"], "optional": [] },
"privacy": {
"processing": "local",
"fileUploads": true,