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.
- {taskunity-2026.5/src/taskunity.egg-info → taskunity-2026.6}/PKG-INFO +6 -6
- {taskunity-2026.5 → taskunity-2026.6}/README.md +5 -5
- {taskunity-2026.5 → taskunity-2026.6}/pyproject.toml +1 -1
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/render.py +1 -1
- {taskunity-2026.5 → taskunity-2026.6/src/taskunity.egg-info}/PKG-INFO +6 -6
- {taskunity-2026.5 → taskunity-2026.6}/tests/test_render_jsonantt.py +5 -0
- {taskunity-2026.5 → taskunity-2026.6}/MANIFEST.in +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/setup.cfg +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/__init__.py +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/app.py +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/cli.py +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/models.py +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/app.css +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/chart.umd.min.js +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/chartjs-adapter-date-fns.bundle.min.js +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/htmx.min.js +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/task_store.py +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/base.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/index.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/board.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/calendar.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/main.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/milestone_banner.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/milestone_panel.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/milestones.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/projects.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/task_list.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/task_panel.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/timeline.html +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/SOURCES.txt +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/dependency_links.txt +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/entry_points.txt +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/requires.txt +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/src/taskunity.egg-info/top_level.txt +0 -0
- {taskunity-2026.5 → taskunity-2026.6}/tests/test_git_workspace_scope.py +0 -0
- {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.
|
|
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
|
-
|  |  |
|
|
47
47
|
|
|
48
48
|
| Gantt Timeline | Calendar |
|
|
49
49
|
|----------------|----------|
|
|
50
|
-
|  |  |
|
|
51
51
|
|
|
52
52
|
| Milestones | Projects |
|
|
53
53
|
|------------|----------|
|
|
54
|
-
|  |  |
|
|
55
55
|
|
|
56
56
|
| Task Activity Log | Settings (Theme) |
|
|
57
57
|
|-------------------|------------------|
|
|
58
|
-
|  |  |
|
|
59
59
|
|
|
60
60
|
| Task Burndown Chart | Milestone Burndown Chart |
|
|
61
61
|
|---------------------|--------------------------|
|
|
62
|
-
|  |  |
|
|
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
|
-
|  |  |
|
|
16
16
|
|
|
17
17
|
| Gantt Timeline | Calendar |
|
|
18
18
|
|----------------|----------|
|
|
19
|
-
|  |  |
|
|
20
20
|
|
|
21
21
|
| Milestones | Projects |
|
|
22
22
|
|------------|----------|
|
|
23
|
-
|  |  |
|
|
24
24
|
|
|
25
25
|
| Task Activity Log | Settings (Theme) |
|
|
26
26
|
|-------------------|------------------|
|
|
27
|
-
|  |  |
|
|
28
28
|
|
|
29
29
|
| Task Burndown Chart | Milestone Burndown Chart |
|
|
30
30
|
|---------------------|--------------------------|
|
|
31
|
-
|  |  |
|
|
32
32
|
|
|
33
33
|
## Why Taskunity
|
|
34
34
|
|
|
@@ -310,7 +310,7 @@ def build_calendar(
|
|
|
310
310
|
def tasks_to_jsonantt(
|
|
311
311
|
tasks: list[Task],
|
|
312
312
|
*,
|
|
313
|
-
title: str = "
|
|
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.
|
|
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
|
-
|  |  |
|
|
47
47
|
|
|
48
48
|
| Gantt Timeline | Calendar |
|
|
49
49
|
|----------------|----------|
|
|
50
|
-
|  |  |
|
|
51
51
|
|
|
52
52
|
| Milestones | Projects |
|
|
53
53
|
|------------|----------|
|
|
54
|
-
|  |  |
|
|
55
55
|
|
|
56
56
|
| Task Activity Log | Settings (Theme) |
|
|
57
57
|
|-------------------|------------------|
|
|
58
|
-
|  |  |
|
|
59
59
|
|
|
60
60
|
| Task Burndown Chart | Milestone Burndown Chart |
|
|
61
61
|
|---------------------|--------------------------|
|
|
62
|
-
|  |  |
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{taskunity-2026.5 → taskunity-2026.6}/src/taskunity/static/chartjs-adapter-date-fns.bundle.min.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{taskunity-2026.5 → taskunity-2026.6}/src/taskunity/templates/partials/milestone_banner.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|