diff --git a/manifest.json b/manifest.json index cf0ec3d1..b2f5e1a0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-livesync", "name": "Self-hosted LiveSync", - "version": "1.0.0", + "version": "1.0.1", "minAppVersion": "1.7.2", "description": "Community implementation of self-hosted livesync. Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication.", "author": "vorotamoroz", diff --git a/package-lock.json b/package-lock.json index 7615e010..db72e1a8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-livesync", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-livesync", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "workspaces": [ "src/apps/cli", @@ -15924,7 +15924,7 @@ }, "src/apps/cli": { "name": "self-hosted-livesync-cli", - "version": "1.0.0-cli", + "version": "1.0.1-cli", "dependencies": { "chokidar": "^4.0.0", "minimatch": "^10.2.5", @@ -15949,7 +15949,7 @@ }, "src/apps/webapp": { "name": "livesync-webapp", - "version": "1.0.0-webapp", + "version": "1.0.1-webapp", "dependencies": { "octagonal-wheels": "^0.1.51" }, @@ -15961,7 +15961,7 @@ } }, "src/apps/webpeer": { - "version": "1.0.0-webpeer", + "version": "1.0.1-webpeer", "dependencies": { "octagonal-wheels": "^0.1.51" }, diff --git a/package.json b/package.json index f02e13b8..c18b4835 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-livesync", - "version": "1.0.0", + "version": "1.0.1", "description": "Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication.", "main": "main.js", "type": "module", diff --git a/src/apps/cli/package.json b/src/apps/cli/package.json index 44e66a6b..d152f6dc 100644 --- a/src/apps/cli/package.json +++ b/src/apps/cli/package.json @@ -1,7 +1,7 @@ { "name": "self-hosted-livesync-cli", "private": true, - "version": "1.0.0-cli", + "version": "1.0.1-cli", "main": "dist/index.cjs", "type": "module", "scripts": { diff --git a/src/apps/webapp/package.json b/src/apps/webapp/package.json index b33bcf4b..8e3c990c 100644 --- a/src/apps/webapp/package.json +++ b/src/apps/webapp/package.json @@ -1,7 +1,7 @@ { "name": "livesync-webapp", "private": true, - "version": "1.0.0-webapp", + "version": "1.0.1-webapp", "type": "module", "description": "Browser-based Self-hosted LiveSync using FileSystem API", "scripts": { diff --git a/src/apps/webpeer/package.json b/src/apps/webpeer/package.json index f0bc005a..b6d04532 100644 --- a/src/apps/webpeer/package.json +++ b/src/apps/webpeer/package.json @@ -1,7 +1,7 @@ { "name": "webpeer", "private": true, - "version": "1.0.0-webpeer", + "version": "1.0.1-webpeer", "type": "module", "scripts": { "dev": "vite", diff --git a/updates.md b/updates.md index 3c54a849..f0a340bf 100644 --- a/updates.md +++ b/updates.md @@ -12,7 +12,17 @@ Earlier releases remain available in the 0.25 release history and the legacy rel ## Unreleased -### Improved +## 1.0.1 + +29th July, 2026 + +I am taking this opportunity to update the experimental features as well. + +This is a review-only maintenance release. It improves the robustness and maintainability of the experimental WebApp, WebPeer, and shared dialogue composition, but offers no particular benefit to plug-in users and may be skipped. I have reviewed the changes through CI and a real Obsidian instance, and I will validate the exact published build before merging the release commit. + +### Interface + +#### Improved - Removed a custom positioning workaround from the onboarding Notice so that it follows Obsidian's standard placement and dismissal behaviour. diff --git a/versions.json b/versions.json index 6ffd7703..0916c347 100644 --- a/versions.json +++ b/versions.json @@ -12,5 +12,6 @@ "1.0.0-beta.5": "1.7.2", "1.0.0-rc.0": "1.7.2", "1.0.0-rc.1": "1.7.2", - "1.0.0": "1.7.2" + "1.0.0": "1.7.2", + "1.0.1": "1.7.2" }