From 8057b516aff1cf6c34b7f48ea4b9e4206b665af7 Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Sat, 19 Jul 2025 17:51:53 +0900 Subject: [PATCH] bump --- package-lock.json | 18 +++++++++--------- package.json | 4 ++-- updates.md | 19 +++++++++++++++++++ 3 files changed, 30 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index d7ad420..69fdf63 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-livesync", - "version": "0.25.0", + "version": "0.25.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "obsidian-livesync", - "version": "0.25.0", + "version": "0.25.1", "license": "MIT", "dependencies": { "@aws-sdk/client-s3": "^3.808.0", @@ -20,7 +20,7 @@ "fflate": "^0.8.2", "idb": "^8.0.3", "minimatch": "^10.0.1", - "octagonal-wheels": "^0.1.35", + "octagonal-wheels": "^0.1.37", "qrcode-generator": "^1.4.4", "svelte-check": "^4.1.7", "trystero": "^0.21.5", @@ -8281,9 +8281,9 @@ } }, "node_modules/octagonal-wheels": { - "version": "0.1.35", - "resolved": "https://registry.npmjs.org/octagonal-wheels/-/octagonal-wheels-0.1.35.tgz", - "integrity": "sha512-fjyvgg1+aG4SnpPjdZp6SPA/N6CseTgTLWnYWFN0mdH6qVAZzxNkDxKACtPxuxRQfgjj83yiPhQBMT3yA0XUnw==", + "version": "0.1.37", + "resolved": "https://registry.npmjs.org/octagonal-wheels/-/octagonal-wheels-0.1.37.tgz", + "integrity": "sha512-+kDdbN5h74ulo3JkQbR00DlJrCpwbhFfx9WJ0bX33H5PoJeiOqgZ1DvH8mH2ajkCVsNDMSwdhtk17pfu3N8jZg==", "license": "MIT", "dependencies": { "idb": "^8.0.3" @@ -16491,9 +16491,9 @@ } }, "octagonal-wheels": { - "version": "0.1.35", - "resolved": "https://registry.npmjs.org/octagonal-wheels/-/octagonal-wheels-0.1.35.tgz", - "integrity": "sha512-fjyvgg1+aG4SnpPjdZp6SPA/N6CseTgTLWnYWFN0mdH6qVAZzxNkDxKACtPxuxRQfgjj83yiPhQBMT3yA0XUnw==", + "version": "0.1.37", + "resolved": "https://registry.npmjs.org/octagonal-wheels/-/octagonal-wheels-0.1.37.tgz", + "integrity": "sha512-+kDdbN5h74ulo3JkQbR00DlJrCpwbhFfx9WJ0bX33H5PoJeiOqgZ1DvH8mH2ajkCVsNDMSwdhtk17pfu3N8jZg==", "requires": { "idb": "^8.0.3" } diff --git a/package.json b/package.json index 6ded955..ee77d2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-livesync", - "version": "0.25.0", + "version": "0.25.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", @@ -89,7 +89,7 @@ "fflate": "^0.8.2", "idb": "^8.0.3", "minimatch": "^10.0.1", - "octagonal-wheels": "^0.1.35", + "octagonal-wheels": "^0.1.37", "qrcode-generator": "^1.4.4", "svelte-check": "^4.1.7", "trystero": "^0.21.5", diff --git a/updates.md b/updates.md index 78a22f8..f8a1a4a 100644 --- a/updates.md +++ b/updates.md @@ -1,3 +1,22 @@ +## 0.25.1 +19th July, 2025 + +### Refined and New Features +- Fetching the remote database on `RedFlag` now also retrieves remote configurations optionally. + - This is beneficial if we have already set up another device and wish to use the same configuration. We will see a much less frequent `Unmatched` dialogue. +- The setup wizard using Set-up URI and QR code has been improved. + - The message is now more user-friendly. + - The obsolete method (manual setting application) has been removed. + - The `Cancel` button has been added to the setup wizard. + - We can now fetch the remote configuration from the server if it exists, which is useful for adding new devices. + - Mostly same as a `RedFlag` fetching remote configuration. + - We can also use the `Doctor` to check and fix the imported (and fetched) configuration before applying it. + +### Changes +- The Set-up URI is now encrypted with a new encryption algorithm (mostly the same as `V2`). + - The new Set-up URI is not compatible with version 0.24.x or earlier. + + ## 0.25.0 19th July, 2025 (beta1 in 0.25.0-beta1, 13th July, 2025)