aitasks 1.4.3 → 1.4.4

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 (2) hide show
  1. package/dist/index.js +4 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1890,7 +1890,7 @@ var require_commander = __commonJS((exports) => {
1890
1890
  var require_package = __commonJS((exports, module) => {
1891
1891
  module.exports = {
1892
1892
  name: "aitasks",
1893
- version: "1.4.3",
1893
+ version: "1.4.4",
1894
1894
  description: "CLI task management tool built for AI agents",
1895
1895
  type: "module",
1896
1896
  bin: {
@@ -42407,7 +42407,8 @@ var TreeBoardComponent = ({ getTasks }) => {
42407
42407
  }
42408
42408
  return bar;
42409
42409
  })();
42410
- const taskCountLabel = searchQuery ? `${filteredTasks.length} of ${tasks.length}` : `${tasks.length}`;
42410
+ const doneCount = tasks.filter((t) => t.status === "done").length;
42411
+ const taskCountLabel = searchQuery ? `${filteredTasks.length} of ${tasks.length}` : `${doneCount}/${tasks.length}`;
42411
42412
  const searchMode = mode === "search";
42412
42413
  return /* @__PURE__ */ jsx_dev_runtime3.jsxDEV(Box_default, {
42413
42414
  flexDirection: "column",
@@ -43524,4 +43525,4 @@ program2.parseAsync(process.argv).catch((err) => {
43524
43525
  process.exit(1);
43525
43526
  });
43526
43527
 
43527
- //# debugId=624747270A6DB83264756E2164756E21
43528
+ //# debugId=96EAA57A05142DDB64756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aitasks",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "CLI task management tool built for AI agents",
5
5
  "type": "module",
6
6
  "bin": {