This commit is contained in:
tintinweb
2026-03-14 22:50:23 +01:00
parent 1e7d0d7b57
commit b200c7e5b0
5 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ A [pi](https://pi.dev) extension that brings **Claude Code-style task tracking a
<img width="600" alt="pi-tasks screenshot" src="https://github.com/tintinweb/pi-tasks/raw/master/media/screenshot.png" />
https://github.com/user-attachments/assets/86b09bd1-6882-4b0c-be20-ea866dd44b6a
https://github.com/user-attachments/assets/1d0ee87a-e0a5-4bfa-a9b9-2f9144cb905b
BIN
View File
Binary file not shown.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 788 KiB

After

Width:  |  Height:  |  Size: 156 KiB

+1
View File
@@ -40,6 +40,7 @@
"extensions": [
"./src/index.ts"
],
"video": "https://github.com/tintinweb/pi-tasks/raw/master/media/demo.mp4",
"image": "https://github.com/tintinweb/pi-tasks/raw/master/media/screenshot.png"
}
}
+1 -1
View File
@@ -169,7 +169,7 @@ export class TaskWidget {
if (isActive) {
icon = theme.fg("accent", spinnerChar);
} else if (task.status === "completed") {
icon = theme.fg("green", "✔");
icon = theme.fg("success", "✔");
} else if (task.status === "in_progress") {
icon = theme.fg("accent", "◼");
} else {