chore: rename plugin to obsidian-task-manager

Avoids name collision with existing "Tasks" and "Task Board" plugins
in the Obsidian community registry.

Co-authored-by: Isaac
This commit is contained in:
Art Malanok 2026-03-25 21:21:48 -07:00
parent 8d20822667
commit 2f8b72c4b2
4 changed files with 5 additions and 5 deletions

View file

@ -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.

View file

@ -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.",

View file

@ -1,5 +1,5 @@
{
"name": "obsidian-tasks",
"name": "obsidian-task-manager",
"version": "0.1.0",
"private": true,
"scripts": {

View file

@ -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";