From 407c56040e36f8f1a73f2773d213205da4fd0d18 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 22 Mar 2025 20:24:19 +0000 Subject: [PATCH] Improve settings --- frontend/obsidian-plugin/src/views/settings-tab.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/obsidian-plugin/src/views/settings-tab.ts b/frontend/obsidian-plugin/src/views/settings-tab.ts index 24fcf8d0..7d726fb5 100644 --- a/frontend/obsidian-plugin/src/views/settings-tab.ts +++ b/frontend/obsidian-plugin/src/views/settings-tab.ts @@ -292,7 +292,7 @@ export class SyncSettingsTab extends PluginSettingTab { ) .addSlider((slider) => slider - .setLimits(0, 32, 1) + .setLimits(1, 64, 1) .setDynamicTooltip() .setInstant(false) .setValue(this.syncClient.getSettings().maxFileSizeMB) @@ -304,7 +304,7 @@ export class SyncSettingsTab extends PluginSettingTab { new Setting(containerEl) .setName("Danger zone") .setDesc( - "How many concurrent sync operations to run. Setting this value higher may increase the overall performance, however, it will require more memory as well. If you notice frequent crashes, especially on mobile, set this to 1." + "Delete the local metadata database while leaving the local and remote files intact." ) .addButton((button) => button.setButtonText("Reset sync state").onClick(async () => {