mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-09-22 10:37:06 +00:00
Fixed:
- 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:
@@ -684,6 +684,7 @@ export class ConfigSync extends LiveSyncCommands {
|
|||||||
children: [],
|
children: [],
|
||||||
deleted: false,
|
deleted: false,
|
||||||
type: "newnote",
|
type: "newnote",
|
||||||
|
eden: {}
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
if (old.mtime == mtime) {
|
if (old.mtime == mtime) {
|
||||||
|
|||||||
+1
-1
Submodule src/lib updated: 3c0ff967e9...57f0be0464
@@ -1374,6 +1374,7 @@ We can perform a command in this file.
|
|||||||
} else {
|
} else {
|
||||||
// suspend all temporary.
|
// suspend all temporary.
|
||||||
if (this.suspended) return;
|
if (this.suspended) return;
|
||||||
|
if (!this.hasFocus) return;
|
||||||
await Promise.all(this.addOns.map(e => e.onResume()));
|
await Promise.all(this.addOns.map(e => e.onResume()));
|
||||||
if (this.settings.remoteType == REMOTE_COUCHDB) {
|
if (this.settings.remoteType == REMOTE_COUCHDB) {
|
||||||
if (this.settings.liveSync) {
|
if (this.settings.liveSync) {
|
||||||
|
|||||||
Reference in New Issue
Block a user