1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2024-12-12 09:04:06 +02:00

Improved:

- Splitting markdown
- Saving chunks

Changed:
- Chunk ID numbering rules

Fixed:
- Just weed.
This commit is contained in:
vorotamoroz 2022-12-05 19:37:24 +09:00
parent db3eb7e1a0
commit a8219de375
3 changed files with 2 additions and 3 deletions

View File

@ -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")

@ -1 +1 @@
Subproject commit 85bb3556ba90c054d0245ece5bf02bbe51f762a2
Subproject commit 300bf7e9b1b240bf9ef9d55bde10d7dde741839e

View File

@ -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");
}