### Fixed

- Now, even without WeakRef, Polyfill is used and the whole thing works without error. However, if you can switch WebView Engine, it is recommended to switch to a WebView Engine that supports WeakRef.

And bumped.
This commit is contained in:
vorotamoroz
2025-02-20 10:40:18 +00:00
parent f8c4d5ccb0
commit fecefa3631
4 changed files with 20 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
{
"id": "obsidian-livesync",
"name": "Self-hosted LiveSync",
"version": "0.24.14",
"version": "0.24.15",
"minAppVersion": "0.9.12",
"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",

22
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "obsidian-livesync",
"version": "0.24.14",
"version": "0.24.15",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "obsidian-livesync",
"version": "0.24.14",
"version": "0.24.15",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.645.0",
@@ -18,7 +18,7 @@
"fflate": "^0.8.2",
"idb": "^8.0.2",
"minimatch": "^10.0.1",
"octagonal-wheels": "^0.1.23",
"octagonal-wheels": "^0.1.24",
"svelte-check": "^4.1.4",
"trystero": "^0.20.1",
"xxhash-wasm-102": "npm:xxhash-wasm@^1.0.2"
@@ -8513,12 +8513,12 @@
}
},
"node_modules/octagonal-wheels": {
"version": "0.1.23",
"resolved": "https://registry.npmjs.org/octagonal-wheels/-/octagonal-wheels-0.1.23.tgz",
"integrity": "sha512-Nq49bWDcIeSsGV0R7RCcERDSWOiExE9cBy6PKN9WStJw0A/GHrr8dhXxLbmwezdSmDcS4kdLxHRF3FdgnMmHXA==",
"version": "0.1.24",
"resolved": "https://registry.npmjs.org/octagonal-wheels/-/octagonal-wheels-0.1.24.tgz",
"integrity": "sha512-ywzcq3FyW/xM37RhXkgwkERzgO6hG7uQHfpqHKcvPaT0H54e0/WoWEV65A2ttGp7Kxrq+UgXxVM1UT+KcSbPkA==",
"license": "MIT",
"dependencies": {
"idb": "^8.0.0"
"idb": "^8.0.2"
}
},
"node_modules/once": {
@@ -17552,11 +17552,11 @@
}
},
"octagonal-wheels": {
"version": "0.1.23",
"resolved": "https://registry.npmjs.org/octagonal-wheels/-/octagonal-wheels-0.1.23.tgz",
"integrity": "sha512-Nq49bWDcIeSsGV0R7RCcERDSWOiExE9cBy6PKN9WStJw0A/GHrr8dhXxLbmwezdSmDcS4kdLxHRF3FdgnMmHXA==",
"version": "0.1.24",
"resolved": "https://registry.npmjs.org/octagonal-wheels/-/octagonal-wheels-0.1.24.tgz",
"integrity": "sha512-ywzcq3FyW/xM37RhXkgwkERzgO6hG7uQHfpqHKcvPaT0H54e0/WoWEV65A2ttGp7Kxrq+UgXxVM1UT+KcSbPkA==",
"requires": {
"idb": "^8.0.0"
"idb": "^8.0.2"
}
},
"once": {

View File

@@ -1,6 +1,6 @@
{
"name": "obsidian-livesync",
"version": "0.24.14",
"version": "0.24.15",
"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",
@@ -77,7 +77,7 @@
"fflate": "^0.8.2",
"idb": "^8.0.2",
"minimatch": "^10.0.1",
"octagonal-wheels": "^0.1.23",
"octagonal-wheels": "^0.1.24",
"svelte-check": "^4.1.4",
"trystero": "^0.20.1",
"xxhash-wasm-102": "npm:xxhash-wasm@^1.0.2"

View File

@@ -10,6 +10,12 @@ Nevertheless, that being said, to be more honest, I still have not decided what
Note: Already you have noticed this, but let me mention it again, this is a significantly large update. If you have noticed anything, please let me know. I will try to fix it as soon as possible (Some address is on my [profile](https://github.com/vrtmrz)).
## 0.24.15
### Fixed
- Now, even without WeakRef, Polyfill is used and the whole thing works without error. However, if you can switch WebView Engine, it is recommended to switch to a WebView Engine that supports WeakRef.
## 0.24.14
### Fixed