From c686648e33c5ed70b35b240977a6541f2b76e360 Mon Sep 17 00:00:00 2001 From: Raoul Jacobs Date: Fri, 14 Nov 2025 13:57:59 +0100 Subject: [PATCH] Fix plugin ID: remove 'plugin' from id, add description punctuation --- README.md | 6 +++--- manifest.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 550f727..78e8d0e 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ This is a TypeScript port of the [markdown-task-export](https://github.com/tailo 1. Download the latest release from [GitHub Releases](https://github.com/tailormade-eu/obsidian-task-export-plugin/releases) 2. Extract `main.js`, `manifest.json`, and `styles.css` to: ``` - VaultFolder/.obsidian/plugins/task-export-plugin/ + VaultFolder/.obsidian/plugins/task-export/ ``` 3. Reload Obsidian 4. Enable plugin in Settings → Community Plugins @@ -139,7 +139,7 @@ YourVault/ ├── outstanding_tasks.csv ← Output file └── .obsidian/ └── plugins/ - └── task-export-plugin/ + └── task-export/ ``` ### Markdown Task Format @@ -275,7 +275,7 @@ Install [Hot Reload Plugin](https://github.com/pjeby/hot-reload) for automatic p ### Plugin Not Loading 1. Check console for errors: `Ctrl/Cmd + Shift + I` -2. Verify files in `.obsidian/plugins/task-export-plugin/`: +2. Verify files in `.obsidian/plugins/task-export/`: - `main.js` - `manifest.json` - `styles.css` (optional) diff --git a/manifest.json b/manifest.json index 623edf9..121ed17 100644 --- a/manifest.json +++ b/manifest.json @@ -1,9 +1,9 @@ { - "id": "task-export-plugin", + "id": "task-export", "name": "Task Export Tool", "version": "1.0.0", "minAppVersion": "1.0.0", - "description": "Export outstanding tasks to CSV for time tracking integration", + "description": "Export outstanding tasks to CSV for time tracking integration.", "author": "Raoul Jacobs", "authorUrl": "https://github.com/tailormade-eu", "isDesktopOnly": false