From dcdadbb94cb363dd2b37d79bb9cbf01b5cd502e7 Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Wed, 22 Jan 2025 16:13:55 +0300 Subject: [PATCH] align sample manifest.json with modern Obsidian developer policies - plugin's id should not contain `plugin` - plugin's name should not contain the word "Plugin" --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index dfa940e..1475fb0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { - "id": "sample-plugin", - "name": "Sample Plugin", + "id": "sample", + "name": "Sample", "version": "1.0.0", "minAppVersion": "0.15.0", "description": "Demonstrates some of the capabilities of the Obsidian API.",