taskunity 2026.5__tar.gz → 2026.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. {taskunity-2026.5/src/taskunity.egg-info → taskunity-2026.6}/PKG-INFO +6 -6
  2. {taskunity-2026.5 → taskunity-2026.6}/README.md +5 -5
  3. {taskunity-2026.5 → taskunity-2026.6}/pyproject.toml +1 -1
  4. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/render.py +1 -1
  5. {taskunity-2026.5 → taskunity-2026.6/src/taskunity.egg-info}/PKG-INFO +6 -6
  6. {taskunity-2026.5 → taskunity-2026.6}/tests/test_render_jsonantt.py +5 -0
  7. {taskunity-2026.5 → taskunity-2026.6}/MANIFEST.in +0 -0
  8. {taskunity-2026.5 → taskunity-2026.6}/setup.cfg +0 -0
  9. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/__init__.py +0 -0
  10. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/app.py +0 -0
  11. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/cli.py +0 -0
  12. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/models.py +0 -0
  13. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/app.css +0 -0
  14. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/chart.umd.min.js +0 -0
  15. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/chartjs-adapter-date-fns.bundle.min.js +0 -0
  16. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/htmx.min.js +0 -0
  17. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/task_store.py +0 -0
  18. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/base.html +0 -0
  19. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/index.html +0 -0
  20. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/board.html +0 -0
  21. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/calendar.html +0 -0
  22. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/main.html +0 -0
  23. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/milestone_banner.html +0 -0
  24. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/milestone_panel.html +0 -0
  25. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/milestones.html +0 -0
  26. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/projects.html +0 -0
  27. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/task_list.html +0 -0
  28. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/task_panel.html +0 -0
  29. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/timeline.html +0 -0
  30. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/SOURCES.txt +0 -0
  31. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/dependency_links.txt +0 -0
  32. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/entry_points.txt +0 -0
  33. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/requires.txt +0 -0
  34. {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/top_level.txt +0 -0
  35. {taskunity-2026.5 → taskunity-2026.6}/tests/test_git_workspace_scope.py +0 -0
  36. {taskunity-2026.5 → taskunity-2026.6}/tests/test_workspace_config.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taskunity
3
- Version: 2026.5
3
+ Version: 2026.6
4
4
  Summary: A local, file-backed productivity app for program/task tracking.
5
5
  Author: Taskunity Contributors
6
6
  License: MIT
@@ -43,23 +43,23 @@ burndown charts, and an editable task side panel.
43
43
 
44
44
  | Task List | Task Board |
45
45
  |-----------|-----------|
46
- | ![Task List](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-list.png) | ![Task Board](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-board.png) |
46
+ | ![Task List](docs/_static/screenshots/task-list.png) | ![Task Board](docs/_static/screenshots/task-board.png) |
47
47
 
48
48
  | Gantt Timeline | Calendar |
49
49
  |----------------|----------|
50
- | ![Gantt](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/gantt.png) | ![Calendar](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/calendar.png) |
50
+ | ![Gantt](docs/_static/screenshots/gantt.png) | ![Calendar](docs/_static/screenshots/calendar.png) |
51
51
 
52
52
  | Milestones | Projects |
53
53
  |------------|----------|
54
- | ![Milestones](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/milestones.png) | ![Projects](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/projects.png) |
54
+ | ![Milestones](docs/_static/screenshots/milestones.png) | ![Projects](docs/_static/screenshots/projects.png) |
55
55
 
56
56
  | Task Activity Log | Settings (Theme) |
57
57
  |-------------------|------------------|
58
- | ![Task Panel](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-panel.png) | ![Settings Popup](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/settings-popup.png) |
58
+ | ![Task Panel](docs/_static/screenshots/task-panel.png) | ![Settings Popup](docs/_static/screenshots/settings-popup.png) |
59
59
 
60
60
  | Task Burndown Chart | Milestone Burndown Chart |
61
61
  |---------------------|--------------------------|
62
- | ![Task Burndown](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-burndown.png) | ![Milestone Burndown](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/milestone-burndown.png) |
62
+ | ![Task Burndown](docs/_static/screenshots/task-burndown.png) | ![Milestone Burndown](docs/_static/screenshots/milestone-burndown.png) |
63
63
 
64
64
  ## Why Taskunity
65
65
 
@@ -12,23 +12,23 @@ burndown charts, and an editable task side panel.
12
12
 
13
13
  | Task List | Task Board |
14
14
  |-----------|-----------|
15
- | ![Task List](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-list.png) | ![Task Board](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-board.png) |
15
+ | ![Task List](docs/_static/screenshots/task-list.png) | ![Task Board](docs/_static/screenshots/task-board.png) |
16
16
 
17
17
  | Gantt Timeline | Calendar |
18
18
  |----------------|----------|
19
- | ![Gantt](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/gantt.png) | ![Calendar](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/calendar.png) |
19
+ | ![Gantt](docs/_static/screenshots/gantt.png) | ![Calendar](docs/_static/screenshots/calendar.png) |
20
20
 
21
21
  | Milestones | Projects |
22
22
  |------------|----------|
23
- | ![Milestones](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/milestones.png) | ![Projects](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/projects.png) |
23
+ | ![Milestones](docs/_static/screenshots/milestones.png) | ![Projects](docs/_static/screenshots/projects.png) |
24
24
 
25
25
  | Task Activity Log | Settings (Theme) |
26
26
  |-------------------|------------------|
27
- | ![Task Panel](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-panel.png) | ![Settings Popup](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/settings-popup.png) |
27
+ | ![Task Panel](docs/_static/screenshots/task-panel.png) | ![Settings Popup](docs/_static/screenshots/settings-popup.png) |
28
28
 
29
29
  | Task Burndown Chart | Milestone Burndown Chart |
30
30
  |---------------------|--------------------------|
31
- | ![Task Burndown](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-burndown.png) | ![Milestone Burndown](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/milestone-burndown.png) |
31
+ | ![Task Burndown](docs/_static/screenshots/task-burndown.png) | ![Milestone Burndown](docs/_static/screenshots/milestone-burndown.png) |
32
32
 
33
33
  ## Why Taskunity
34
34
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "taskunity"
7
- version = "2026.5"
7
+ version = "2026.6"
8
8
  description = "A local, file-backed productivity app for program/task tracking."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -310,7 +310,7 @@ def build_calendar(
310
310
  def tasks_to_jsonantt(
311
311
  tasks: list[Task],
312
312
  *,
313
- title: str = "Taskwright Export",
313
+ title: str = "Taskunity Export",
314
314
  project_colors: dict[str, str] | None = None,
315
315
  project_order: list[str] | None = None,
316
316
  ) -> dict[str, Any]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taskunity
3
- Version: 2026.5
3
+ Version: 2026.6
4
4
  Summary: A local, file-backed productivity app for program/task tracking.
5
5
  Author: Taskunity Contributors
6
6
  License: MIT
@@ -43,23 +43,23 @@ burndown charts, and an editable task side panel.
43
43
 
44
44
  | Task List | Task Board |
45
45
  |-----------|-----------|
46
- | ![Task List](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-list.png) | ![Task Board](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-board.png) |
46
+ | ![Task List](docs/_static/screenshots/task-list.png) | ![Task Board](docs/_static/screenshots/task-board.png) |
47
47
 
48
48
  | Gantt Timeline | Calendar |
49
49
  |----------------|----------|
50
- | ![Gantt](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/gantt.png) | ![Calendar](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/calendar.png) |
50
+ | ![Gantt](docs/_static/screenshots/gantt.png) | ![Calendar](docs/_static/screenshots/calendar.png) |
51
51
 
52
52
  | Milestones | Projects |
53
53
  |------------|----------|
54
- | ![Milestones](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/milestones.png) | ![Projects](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/projects.png) |
54
+ | ![Milestones](docs/_static/screenshots/milestones.png) | ![Projects](docs/_static/screenshots/projects.png) |
55
55
 
56
56
  | Task Activity Log | Settings (Theme) |
57
57
  |-------------------|------------------|
58
- | ![Task Panel](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-panel.png) | ![Settings Popup](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/settings-popup.png) |
58
+ | ![Task Panel](docs/_static/screenshots/task-panel.png) | ![Settings Popup](docs/_static/screenshots/settings-popup.png) |
59
59
 
60
60
  | Task Burndown Chart | Milestone Burndown Chart |
61
61
  |---------------------|--------------------------|
62
- | ![Task Burndown](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/task-burndown.png) | ![Milestone Burndown](https://raw.githubusercontent.com/briday1/taskwright/main/docs/_static/screenshots/milestone-burndown.png) |
62
+ | ![Task Burndown](docs/_static/screenshots/task-burndown.png) | ![Milestone Burndown](docs/_static/screenshots/milestone-burndown.png) |
63
63
 
64
64
  ## Why Taskunity
65
65
 
@@ -71,3 +71,8 @@ def test_tasks_to_jsonantt_exports_all_dependency_arrows() -> None:
71
71
  assert task_c["not_before"] == "A"
72
72
  assert {"from": "A", "to": "C"} in data["arrows"]
73
73
  assert {"from": "B", "to": "C"} in data["arrows"]
74
+
75
+
76
+ def test_tasks_to_jsonantt_uses_taskunity_default_title() -> None:
77
+ data = tasks_to_jsonantt([Task(id="A", title="Task A", project="Apollo")])
78
+ assert data["title"] == "Taskunity Export"
File without changes
File without changes