Releasing 1.0.1

This commit is contained in:
vorotamoroz
2026-07-29 15:57:33 +00:00
parent 68b6358345
commit d4994fdd05
8 changed files with 23 additions and 12 deletions
+1 -1
View File
@@ -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",
+5 -5
View File
@@ -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"
},
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -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": {
+1 -1
View File
@@ -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": {
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "webpeer",
"private": true,
"version": "1.0.0-webpeer",
"version": "1.0.1-webpeer",
"type": "module",
"scripts": {
"dev": "vite",
+11 -1
View File
@@ -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.
+2 -1
View File
@@ -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"
}