mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2025-12-23 22:51:30 +00:00
bump
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "obsidian-livesync",
|
"id": "obsidian-livesync",
|
||||||
"name": "Self-hosted LiveSync",
|
"name": "Self-hosted LiveSync",
|
||||||
"version": "0.25.11",
|
"version": "0.25.12",
|
||||||
"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
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-livesync",
|
"name": "obsidian-livesync",
|
||||||
"version": "0.25.11",
|
"version": "0.25.12",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "obsidian-livesync",
|
"name": "obsidian-livesync",
|
||||||
"version": "0.25.11",
|
"version": "0.25.12",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.808.0",
|
"@aws-sdk/client-s3": "^3.808.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-livesync",
|
"name": "obsidian-livesync",
|
||||||
"version": "0.25.11",
|
"version": "0.25.12",
|
||||||
"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",
|
||||||
|
|||||||
45
updates.md
45
updates.md
@@ -1,3 +1,11 @@
|
|||||||
|
## 0.25.12
|
||||||
|
|
||||||
|
29th August, 2025
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed an issue with automatic synchronisation starting (#702).
|
||||||
|
|
||||||
## 0.25.11
|
## 0.25.11
|
||||||
|
|
||||||
28th August, 2025
|
28th August, 2025
|
||||||
@@ -59,43 +67,6 @@
|
|||||||
|
|
||||||
- Type errors have been corrected.
|
- Type errors have been corrected.
|
||||||
|
|
||||||
## 0.25.7
|
|
||||||
|
|
||||||
15th August, 2025
|
|
||||||
|
|
||||||
**Since the release of 0.25.6, there are two large problem. Please update immediately.**
|
|
||||||
|
|
||||||
- We may have corrupted some documents during the migration process. **Please check your documents on the wizard.**
|
|
||||||
- Due to a chunk ID assignment issue, some data has not been encrypted. **Please rebuild the database using Rebuild Everything** if you have enabled E2EE.
|
|
||||||
|
|
||||||
**_So, If you have enabled E2EE, please perform `Rebuild everything`. If not, please check your documents on the wizard._**
|
|
||||||
|
|
||||||
In next version, insecure chunk detection will be implemented.
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- Off-loaded chunking have been fixed to ensure proper functionality (#693).
|
|
||||||
- Chunk document ID assignment has been fixed.
|
|
||||||
- Replication prevention message during version up detection has been improved (#686).
|
|
||||||
- `Keep A` and `Keep B` on Conflict resolving dialogue has been renamed to `Use Base` and `Use Conflicted` (#691).
|
|
||||||
|
|
||||||
### Improved
|
|
||||||
|
|
||||||
- Metadata and content-size unmatched documents are now detected and reported, prevented to be applied to the storage.
|
|
||||||
- This behaviour can be configured in `Patch` -> `Edge case addressing (Behaviour)` -> `Process files even if seems to be corrupted`
|
|
||||||
- Note: this toggle is for the direct-database-manipulation users.
|
|
||||||
|
|
||||||
### New Features
|
|
||||||
|
|
||||||
- `Scan for Broken files` has been implemented on `Hatch` -> `TroubleShooting`.
|
|
||||||
|
|
||||||
### Refactored
|
|
||||||
|
|
||||||
- Off-loaded processes have been refactored for the better maintainability.
|
|
||||||
- Files prefixed `bg.worker` are now work on the worker threads.
|
|
||||||
- Files prefixed `bgWorker.` are now also controls these worker threads. (I know what you want to say... I will rename them).
|
|
||||||
- Removed unused code.
|
|
||||||
|
|
||||||
## 0.25.0
|
## 0.25.0
|
||||||
|
|
||||||
19th July, 2025 (beta1 in 0.25.0-beta1, 13th July, 2025)
|
19th July, 2025 (beta1 in 0.25.0-beta1, 13th July, 2025)
|
||||||
|
|||||||
@@ -11,6 +11,45 @@ As a result, this is the first time in a while that forward compatibility has be
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## 0.25.7
|
||||||
|
|
||||||
|
15th August, 2025
|
||||||
|
|
||||||
|
**Since the release of 0.25.6, there are two large problem. Please update immediately.**
|
||||||
|
|
||||||
|
- We may have corrupted some documents during the migration process. **Please check your documents on the wizard.**
|
||||||
|
- Due to a chunk ID assignment issue, some data has not been encrypted. **Please rebuild the database using Rebuild Everything** if you have enabled E2EE.
|
||||||
|
|
||||||
|
**_So, If you have enabled E2EE, please perform `Rebuild everything`. If not, please check your documents on the wizard._**
|
||||||
|
|
||||||
|
In next version, insecure chunk detection will be implemented.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Off-loaded chunking have been fixed to ensure proper functionality (#693).
|
||||||
|
- Chunk document ID assignment has been fixed.
|
||||||
|
- Replication prevention message during version up detection has been improved (#686).
|
||||||
|
- `Keep A` and `Keep B` on Conflict resolving dialogue has been renamed to `Use Base` and `Use Conflicted` (#691).
|
||||||
|
|
||||||
|
### Improved
|
||||||
|
|
||||||
|
- Metadata and content-size unmatched documents are now detected and reported, prevented to be applied to the storage.
|
||||||
|
- This behaviour can be configured in `Patch` -> `Edge case addressing (Behaviour)` -> `Process files even if seems to be corrupted`
|
||||||
|
- Note: this toggle is for the direct-database-manipulation users.
|
||||||
|
|
||||||
|
### New Features
|
||||||
|
|
||||||
|
- `Scan for Broken files` has been implemented on `Hatch` -> `TroubleShooting`.
|
||||||
|
|
||||||
|
### Refactored
|
||||||
|
|
||||||
|
- Off-loaded processes have been refactored for the better maintainability.
|
||||||
|
- Files prefixed `bg.worker` are now work on the worker threads.
|
||||||
|
- Files prefixed `bgWorker.` are now also controls these worker threads. (I know what you want to say... I will rename them).
|
||||||
|
- Removed unused code.
|
||||||
|
|
||||||
|
|
||||||
## ~~0.25.5~~ 0.25.6
|
## ~~0.25.5~~ 0.25.6
|
||||||
|
|
||||||
(0.25.5 has been withdrawn due to a bug in the `Fetch chunks on demand` feature).
|
(0.25.5 has been withdrawn due to a bug in the `Fetch chunks on demand` feature).
|
||||||
|
|||||||
Reference in New Issue
Block a user