From 58e895e7e22c1a38243e065577bbb551de1265c9 Mon Sep 17 00:00:00 2001 From: johnny1093 <46250921+jsmorabito@users.noreply.github.com> Date: Sat, 11 Jul 2026 09:26:32 -0400 Subject: [PATCH] fix: bump minAppVersion to 1.4.4 to match actual API usage The "reset to default" button in the advanced toolbar settings calls ExtraButtonComponent.setTooltip(), which Obsidian only added in 1.4.4. minAppVersion was still declared as 1.4.0, so that call was already unsupported on 1.4.0-1.4.3 for anyone still on it. This just makes the declared minimum match reality; 1.4.4 predates essentially every currently-active install. --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 01c4c5d..9b56686 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "id": "cmdr", "name": "Commander", "version": "0.5.5", - "minAppVersion": "1.4.0", + "minAppVersion": "1.4.4", "description": "Customize your workspace by adding commands everywhere, create Macros and supercharge your mobile toolbar.", "author": "jsmorabito & phibr0", "authorUrl": "https://github.com/phibr0",