1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2025-01-29 18:53:43 +02:00
- Now the remote chunks could be decrypted even if we are using `Incubate chunks in Document`. (The note of 0.23.6 has been fixed).
- Chunk retrieving with `Incubate chunks in document` got more efficiently.
- No longer task processor misses the completed tasks.
- Replication is no longer started automatically during changes in window visibility (e.g., task switching on the desktop) when off-focused.
This commit is contained in:
vorotamoroz 2024-05-08 23:56:29 +09:00
parent c6ed867498
commit d518a3fc1b
3 changed files with 3 additions and 1 deletions

View File

@ -684,6 +684,7 @@ export class ConfigSync extends LiveSyncCommands {
children: [],
deleted: false,
type: "newnote",
eden: {}
};
} else {
if (old.mtime == mtime) {

@ -1 +1 @@
Subproject commit 3c0ff967e9e63e22a5513b7116894a9e162bb810
Subproject commit 57f0be04647ac7ac2cb246e7cafe7905ee5fd132

View File

@ -1374,6 +1374,7 @@ We can perform a command in this file.
} else {
// suspend all temporary.
if (this.suspended) return;
if (!this.hasFocus) return;
await Promise.all(this.addOns.map(e => e.onResume()));
if (this.settings.remoteType == REMOTE_COUCHDB) {
if (this.settings.liveSync) {