diff --git a/README.md b/README.md index 8b2248a..6b59aaf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Tasks +# Task Manager A clean, minimal task board for [Obsidian](https://obsidian.md). Create customizable buckets, group tasks by any frontmatter property, and track tasks inline from any note in your vault. diff --git a/manifest.json b/manifest.json index 9626a54..34852dd 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { - "id": "obsidian-tasks", - "name": "Tasks", + "id": "obsidian-task-manager", + "name": "Task Manager", "version": "0.1.0", "minAppVersion": "1.10.0", "description": "A clean, minimal task board with customizable buckets, secondary grouping, and inline task tracking.", diff --git a/package.json b/package.json index 3bbeca8..c4e9be3 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "obsidian-tasks", + "name": "obsidian-task-manager", "version": "0.1.0", "private": true, "scripts": { diff --git a/src/types.ts b/src/types.ts index 9656f77..1747472 100644 --- a/src/types.ts +++ b/src/types.ts @@ -84,7 +84,7 @@ export const DEFAULT_SETTINGS: TasksPluginSettings = { }; /** View type identifier */ -export const TASKS_VIEW_TYPE = "obsidian-tasks-view"; +export const TASKS_VIEW_TYPE = "obsidian-task-manager-view"; /** CSS class prefix */ export const CLS = "ot";