This commit is contained in:
vorotamoroz
2024-12-09 00:46:15 +00:00
parent 29229f809b
commit 751de5a13e
4 changed files with 18 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
{ {
"id": "obsidian-livesync", "id": "obsidian-livesync",
"name": "Self-hosted LiveSync", "name": "Self-hosted LiveSync",
"version": "0.24.2", "version": "0.24.3",
"minAppVersion": "0.9.12", "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.", "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", "author": "vorotamoroz",

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "obsidian-livesync", "name": "obsidian-livesync",
"version": "0.24.2", "version": "0.24.3",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "obsidian-livesync", "name": "obsidian-livesync",
"version": "0.24.2", "version": "0.24.3",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@aws-sdk/client-s3": "^3.645.0", "@aws-sdk/client-s3": "^3.645.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "obsidian-livesync", "name": "obsidian-livesync",
"version": "0.24.2", "version": "0.24.3",
"description": "Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication.", "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", "main": "main.js",
"type": "module", "type": "module",

View File

@@ -14,14 +14,22 @@ Thank you, and I hope your troubles will be resolved!
--- ---
## 0.24.3
### Improved
- Many messages have been improved for better understanding as thanks to the fine works of @Volkor3-16! Thank you so much!
- Documentations also have been updated to reflect the changes in the messages.
- Now the style of In-Editor Status has been solid for some Android devices.
## 0.24.2 ## 0.24.2
#### Rewritten ### Rewritten
- Hidden File Sync is now respects the file changes on the storage. Not simply comparing modified times. - Hidden File Sync is now respects the file changes on the storage. Not simply comparing modified times.
- This makes hidden file sync more robust and reliable. - This makes hidden file sync more robust and reliable.
#### Fixed ### Fixed
- `Scan hidden files before replication` is now configurable again. - `Scan hidden files before replication` is now configurable again.
- Some unexpected errors are now handled more gracefully. - Some unexpected errors are now handled more gracefully.
@@ -37,14 +45,14 @@ Thank you, and I hope your troubles will be resolved!
- Some unexpected errors which caused after terminating plug-in are now avoided. - Some unexpected errors which caused after terminating plug-in are now avoided.
- -
#### Improved ### Improved
- JSON files are now more transferred efficiently. - JSON files are now more transferred efficiently.
- Now the JSON files are transferred in more fine chunks, which makes the transfer more efficient. - Now the JSON files are transferred in more fine chunks, which makes the transfer more efficient.
## 0.24.1 ## 0.24.1
#### Fixed ### Fixed
- Vault History can show the correct information of match-or-not for each file and database even if it is a binary file. - Vault History can show the correct information of match-or-not for each file and database even if it is a binary file.
- `Sync settings via markdown` is now hidden during the setup wizard. - `Sync settings via markdown` is now hidden during the setup wizard.
@@ -54,7 +62,7 @@ Thank you, and I hope your troubles will be resolved!
- Now we can fetch the tweaks from the remote database while the setting dialogue and wizard are processing. - Now we can fetch the tweaks from the remote database while the setting dialogue and wizard are processing.
#### Improved ### Improved
- More things are moved to the modules. - More things are moved to the modules.
- Includes the Main codebase. Now `main.ts` is almost stub. - Includes the Main codebase. Now `main.ts` is almost stub.