mirror of
https://github.com/selectstarfromusers/obsidian-task-manager.git
synced 2026-07-22 14:00:23 +00:00
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:
parent
8d20822667
commit
2f8b72c4b2
4 changed files with 5 additions and 5 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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.",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "obsidian-tasks",
|
||||
"name": "obsidian-task-manager",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue