mirror of
https://github.com/selectstarfromusers/obsidian-task-manager.git
synced 2026-07-22 14:00:23 +00:00
chore: replace customer names with generic examples
Co-authored-by: Isaac
This commit is contained in:
parent
9f88021fed
commit
8d20822667
3 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@ A clean, minimal task board for [Obsidian](https://obsidian.md). Create customiz
|
|||
|
||||
- **Customizable buckets** -- Create as many buckets as you need with any name. Use them for an Eisenhower matrix, GTD stages, sprint columns, or any workflow that fits your thinking.
|
||||
- **Secondary grouping** -- Group tasks within each bucket by any frontmatter property (account, project, team, etc.). Groups appear as subtle, semi-transparent frames inside the bucket.
|
||||
- **Inline task tracking** -- Add `#task` to any checkbox in any note to surface it on the board. Assign a secondary group with a wikilink: `- [ ] Send docs [[Bio-Techne]] #task`
|
||||
- **Inline task tracking** -- Add `#task` to any checkbox in any note to surface it on the board. Assign a secondary group with a wikilink: `- [ ] Send docs [[Project Alpha]] #task`
|
||||
- **Bidirectional sync** -- Check off a task on the board or in the source note; both stay in sync.
|
||||
- **Drag-and-drop** -- Move tasks between buckets or reorder them within a bucket.
|
||||
- **Completion animation** -- Checked tasks get a strikethrough, fade out, and collapse smoothly.
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ export interface BucketGroup {
|
|||
|
||||
/** Secondary grouping (e.g. by account) within a bucket */
|
||||
export interface SubGroup {
|
||||
key: string; // e.g. "Bio-Techne", or "" for ungrouped
|
||||
key: string; // e.g. "Acme Corp", or "" for ungrouped
|
||||
tasks: TaskItem[];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -139,7 +139,7 @@ export class TaskView extends ItemView {
|
|||
`<div class="${CLS}-empty-icon">\u2610</div>`,
|
||||
`<div class="${CLS}-empty-title">No tasks yet</div>`,
|
||||
`<div class="${CLS}-empty-hint">Add #task to any checkbox in your notes to see it here.</div>`,
|
||||
`<div class="${CLS}-empty-hint">Example: - [ ] Send docs [[Bio-Techne]] #task</div>`,
|
||||
`<div class="${CLS}-empty-hint">Example: - [ ] Send report [[Project Alpha]] #task</div>`,
|
||||
].join("");
|
||||
contentArea.appendChild(emptyState);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in a new issue