taskunity 2026.2__tar.gz → 2026.3__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.2/src/taskunity.egg-info → taskunity-2026.3}/PKG-INFO +1 -1
- {taskunity-2026.2 → taskunity-2026.3}/pyproject.toml +1 -1
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/app.py +22 -2
- {taskunity-2026.2 → taskunity-2026.3/src/taskunity.egg-info}/PKG-INFO +1 -1
- {taskunity-2026.2 → taskunity-2026.3}/MANIFEST.in +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/README.md +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/setup.cfg +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/__init__.py +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/cli.py +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/models.py +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/render.py +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/static/app.css +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/static/chart.umd.min.js +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/static/chartjs-adapter-date-fns.bundle.min.js +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/static/htmx.min.js +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/task_store.py +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/base.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/index.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/board.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/calendar.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/main.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/milestone_banner.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/milestone_panel.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/milestones.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/projects.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/task_list.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/task_panel.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity/templates/partials/timeline.html +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity.egg-info/SOURCES.txt +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity.egg-info/dependency_links.txt +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity.egg-info/entry_points.txt +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity.egg-info/requires.txt +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/src/taskunity.egg-info/top_level.txt +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/tests/test_git_workspace_scope.py +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/tests/test_render_jsonantt.py +0 -0
- {taskunity-2026.2 → taskunity-2026.3}/tests/test_workspace_config.py +0 -0
|
@@ -968,6 +968,16 @@ def create_app(workspace: str | Path = ".") -> FastAPI:
|
|
|
968
968
|
)
|
|
969
969
|
elif event.event_type == "image":
|
|
970
970
|
filename = (event.image_filename or "Attachment").strip() or "Attachment"
|
|
971
|
+
image_name = event.image_filename or event.image_path or ""
|
|
972
|
+
is_image = Path(image_name).suffix.lower() in {
|
|
973
|
+
".png",
|
|
974
|
+
".jpg",
|
|
975
|
+
".jpeg",
|
|
976
|
+
".gif",
|
|
977
|
+
".webp",
|
|
978
|
+
".bmp",
|
|
979
|
+
".svg",
|
|
980
|
+
}
|
|
971
981
|
raw_events.append(
|
|
972
982
|
{
|
|
973
983
|
"created_at": event.created_at,
|
|
@@ -976,7 +986,7 @@ def create_app(workspace: str | Path = ".") -> FastAPI:
|
|
|
976
986
|
"preview_title": filename,
|
|
977
987
|
"preview_body": _preview_text(event.note_text),
|
|
978
988
|
"preview_path": event.image_path or "",
|
|
979
|
-
"is_image":
|
|
989
|
+
"is_image": is_image,
|
|
980
990
|
"progress_before": None,
|
|
981
991
|
"progress_after": None,
|
|
982
992
|
}
|
|
@@ -1289,6 +1299,16 @@ def create_app(workspace: str | Path = ".") -> FastAPI:
|
|
|
1289
1299
|
)
|
|
1290
1300
|
elif event.event_type == "image":
|
|
1291
1301
|
filename = (event.image_filename or "Attachment").strip() or "Attachment"
|
|
1302
|
+
image_name = event.image_filename or event.image_path or ""
|
|
1303
|
+
is_image = Path(image_name).suffix.lower() in {
|
|
1304
|
+
".png",
|
|
1305
|
+
".jpg",
|
|
1306
|
+
".jpeg",
|
|
1307
|
+
".gif",
|
|
1308
|
+
".webp",
|
|
1309
|
+
".bmp",
|
|
1310
|
+
".svg",
|
|
1311
|
+
}
|
|
1292
1312
|
raw_events.append(
|
|
1293
1313
|
{
|
|
1294
1314
|
"created_at": event.created_at,
|
|
@@ -1298,7 +1318,7 @@ def create_app(workspace: str | Path = ".") -> FastAPI:
|
|
|
1298
1318
|
"preview_title": filename,
|
|
1299
1319
|
"preview_body": _preview_text(event.note_text),
|
|
1300
1320
|
"preview_path": event.image_path or "",
|
|
1301
|
-
"is_image":
|
|
1321
|
+
"is_image": is_image,
|
|
1302
1322
|
"progress_after": None,
|
|
1303
1323
|
}
|
|
1304
1324
|
)
|
|
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
|
{taskunity-2026.2 → taskunity-2026.3}/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.2 → taskunity-2026.3}/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
|
|
File without changes
|