diff --git a/CHANGELOG.md b/CHANGELOG.md index 75a6a7b..4ed07af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # CHANGELOG -## Unreleased +## v4.0.1 – 2026-06-09 -- Fix Nextcloud/ownCloud public share links failing to download by routing them through the `github-proxy.exelearning.dev` CORS proxy (the public fallback proxies cannot reach these instances). Requires the matching server-side support in the proxy. +- Fix Dropbox, Nextcloud and ownCloud shared-link downloads by routing them through `github-proxy.exelearning.dev`. --- diff --git a/js/app.js b/js/app.js index a073521..0032e36 100644 --- a/js/app.js +++ b/js/app.js @@ -9,7 +9,7 @@ // Configuration defaults — override via js/config.js (window.exeViewerConfig) const config = Object.assign({ // Application version (displayed in footer) - version: '4.0.0', + version: '4.0.1', // Automatically restore and display content from IndexedDB on page load autoRestoreContent: true, // Open external links in a new window/tab (prevents navigation issues in iframes) diff --git a/package.json b/package.json index 3068ada..183a395 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "exeviewer", - "version": "4.0.0", + "version": "4.0.1", "description": "A web application to view eXeLearning content packages (.zip/.elpx)", "main": "server.js", "type": "module",