taskunity 2026.4__tar.gz → 2026.5__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.4/src/taskunity.egg-info → taskunity-2026.5}/PKG-INFO +1 -1
  2. {taskunity-2026.4 → taskunity-2026.5}/pyproject.toml +1 -1
  3. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/static/app.css +4 -42
  4. {taskunity-2026.4 → taskunity-2026.5/src/taskunity.egg-info}/PKG-INFO +1 -1
  5. {taskunity-2026.4 → taskunity-2026.5}/MANIFEST.in +0 -0
  6. {taskunity-2026.4 → taskunity-2026.5}/README.md +0 -0
  7. {taskunity-2026.4 → taskunity-2026.5}/setup.cfg +0 -0
  8. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/__init__.py +0 -0
  9. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/app.py +0 -0
  10. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/cli.py +0 -0
  11. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/models.py +0 -0
  12. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/render.py +0 -0
  13. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/static/chart.umd.min.js +0 -0
  14. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/static/chartjs-adapter-date-fns.bundle.min.js +0 -0
  15. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/static/htmx.min.js +0 -0
  16. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/task_store.py +0 -0
  17. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/base.html +0 -0
  18. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/index.html +0 -0
  19. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/board.html +0 -0
  20. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/calendar.html +0 -0
  21. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/main.html +0 -0
  22. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/milestone_banner.html +0 -0
  23. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/milestone_panel.html +0 -0
  24. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/milestones.html +0 -0
  25. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/projects.html +0 -0
  26. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/task_list.html +0 -0
  27. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/task_panel.html +0 -0
  28. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity/templates/partials/timeline.html +0 -0
  29. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity.egg-info/SOURCES.txt +0 -0
  30. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity.egg-info/dependency_links.txt +0 -0
  31. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity.egg-info/entry_points.txt +0 -0
  32. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity.egg-info/requires.txt +0 -0
  33. {taskunity-2026.4 → taskunity-2026.5}/src/taskunity.egg-info/top_level.txt +0 -0
  34. {taskunity-2026.4 → taskunity-2026.5}/tests/test_git_workspace_scope.py +0 -0
  35. {taskunity-2026.4 → taskunity-2026.5}/tests/test_render_jsonantt.py +0 -0
  36. {taskunity-2026.4 → taskunity-2026.5}/tests/test_workspace_config.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taskunity
3
- Version: 2026.4
3
+ Version: 2026.5
4
4
  Summary: A local, file-backed productivity app for program/task tracking.
5
5
  Author: Taskunity Contributors
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "taskunity"
7
- version = "2026.4"
7
+ version = "2026.5"
8
8
  description = "A local, file-backed productivity app for program/task tracking."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -1058,36 +1058,25 @@ button:focus-visible { outline: none; box-shadow: var(--ring); }
1058
1058
  width: 100%;
1059
1059
  display: inline-grid;
1060
1060
  grid-template-columns: auto minmax(0, 1fr);
1061
- gap: .42rem;
1061
+ gap: .55rem;
1062
1062
  align-items: center;
1063
- color: var(--text);
1064
1063
  text-align: left;
1065
1064
  background: var(--bg-soft);
1066
1065
  border: 1px solid var(--line);
1067
- padding: .68rem .8rem;
1066
+ color: var(--text);
1068
1067
  box-shadow: none;
1069
1068
  padding: .45rem .6rem;
1070
1069
  }
1071
1070
  .check-toggle:hover { filter: none; border-color: color-mix(in srgb, var(--line) 55%, var(--accent)); }
1072
1071
  .check-mark {
1073
1072
  width: 1.2rem;
1074
- gap: .5rem;
1073
+ height: 1.2rem;
1075
1074
  border: 1px solid color-mix(in srgb, var(--line) 60%, var(--accent));
1076
1075
  border-radius: .3rem;
1077
1076
  display: inline-flex;
1078
- font-size: .93rem;
1077
+ align-items: center;
1079
1078
  justify-content: center;
1080
1079
  font-weight: 700;
1081
- .milestone-open-row {
1082
- width: 100%;
1083
- text-align: left;
1084
- box-shadow: var(--shadow-sm);
1085
- }
1086
- .milestone-open-row:hover {
1087
- filter: none;
1088
- border-color: color-mix(in srgb, var(--line) 60%, var(--accent));
1089
- box-shadow: var(--shadow-md);
1090
- }
1091
1080
  color: var(--accent);
1092
1081
  background: #fff;
1093
1082
  }
@@ -1414,17 +1403,6 @@ input[type="file"]::file-selector-button:hover {
1414
1403
  .ms-status.done { background: color-mix(in srgb, var(--done) 14%, white); color: var(--done); border-color: color-mix(in srgb, var(--done) 35%, var(--line)); }
1415
1404
  .ms-status.planned { background: var(--bg-soft); color: var(--muted); }
1416
1405
 
1417
- .milestone-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .8rem; }
1418
- .milestone-card {
1419
- display: flex;
1420
- flex-direction: column;
1421
- background: var(--card);
1422
- border: 1px solid var(--line);
1423
- border-left: 4px solid var(--ms-color, var(--accent));
1424
- border-radius: var(--radius);
1425
- overflow: hidden;
1426
- box-shadow: var(--shadow-sm);
1427
- }
1428
1406
  .milestone-list {
1429
1407
  display: grid;
1430
1408
  gap: .7rem;
@@ -1474,21 +1452,6 @@ input[type="file"]::file-selector-button:hover {
1474
1452
  text-overflow: ellipsis;
1475
1453
  white-space: nowrap;
1476
1454
  }
1477
- .milestone-open {
1478
- flex: 1;
1479
- display: grid;
1480
- gap: .5rem;
1481
- text-align: left;
1482
- background: transparent;
1483
- color: var(--text);
1484
- border: none;
1485
- border-radius: 0;
1486
- padding: .9rem 1rem;
1487
- box-shadow: none;
1488
- }
1489
- .milestone-open:hover { filter: none; background: var(--bg-soft); }
1490
- .mc-head { display: flex; align-items: center; gap: .45rem; }
1491
- .mc-head strong { flex: 1; font-size: 1rem; }
1492
1455
  .mc-flag { color: var(--ms-color, var(--accent)); font-size: .8rem; }
1493
1456
  .mc-summary { margin: 0; color: var(--muted); font-size: .85rem; }
1494
1457
  .mc-projects { display: flex; flex-wrap: wrap; gap: .3rem; }
@@ -1501,7 +1464,6 @@ input[type="file"]::file-selector-button:hover {
1501
1464
  .mc-progress > div, .mb-progress > div { height: 100%; background: var(--accent); border-radius: 999px; }
1502
1465
  .mc-stats { display: flex; flex-wrap: wrap; gap: .6rem; font-size: .76rem; color: var(--muted); }
1503
1466
  .mc-target { margin-left: auto; }
1504
- .mc-foot { border-top: 1px solid var(--line); padding: .4rem 1rem; display: flex; justify-content: flex-end; }
1505
1467
  .new-milestone-form { margin-top: 1.1rem; border-top: 1px solid var(--line); padding-top: 1rem; display: grid; gap: .6rem; }
1506
1468
  .new-milestone-form h3 { margin: 0; font-size: .95rem; }
1507
1469
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taskunity
3
- Version: 2026.4
3
+ Version: 2026.5
4
4
  Summary: A local, file-backed productivity app for program/task tracking.
5
5
  Author: Taskunity Contributors
6
6
  License: MIT
File without changes
File without changes
File without changes