From a8219de375f339431a3c426fe0b7179d6a2c4a69 Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Mon, 5 Dec 2022 19:37:24 +0900 Subject: [PATCH] Improved: - Splitting markdown - Saving chunks Changed: - Chunk ID numbering rules Fixed: - Just weed. --- src/ObsidianLiveSyncSettingTab.ts | 1 - src/lib | 2 +- src/main.ts | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ObsidianLiveSyncSettingTab.ts b/src/ObsidianLiveSyncSettingTab.ts index f7dd1ac..d723622 100644 --- a/src/ObsidianLiveSyncSettingTab.ts +++ b/src/ObsidianLiveSyncSettingTab.ts @@ -1288,7 +1288,6 @@ export class ObsidianLiveSyncSettingTab extends PluginSettingTab { new Setting(containerHatchEl) .setName("Make report to inform the issue") - .setDesc("Verify and repair all files and update database without restoring") .addButton((button) => button .setButtonText("Make report") diff --git a/src/lib b/src/lib index 85bb355..300bf7e 160000 --- a/src/lib +++ b/src/lib @@ -1 +1 @@ -Subproject commit 85bb3556ba90c054d0245ece5bf02bbe51f762a2 +Subproject commit 300bf7e9b1b240bf9ef9d55bde10d7dde741839e diff --git a/src/main.ts b/src/main.ts index be79730..61d7d2e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -709,7 +709,7 @@ export default class ObsidianLiveSyncPlugin extends Plugin { clearAllPeriodic(); clearAllTriggers(); window.removeEventListener("visibilitychange", this.watchWindowVisibility); - window.removeEventListener("online", this.watchOnline) + window.removeEventListener("online", this.watchOnline); Logger("unloading plugin"); }