Skip to content

Commit 9e7db5c

Browse files
committed
0.1.4
1 parent 7ca656c commit 9e7db5c

File tree

7 files changed

+295
-255
lines changed

7 files changed

+295
-255
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "time-tree",
33
"name": "Time Tree",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"minAppVersion": "0.15.0",
66
"description": "Track accumulated time spent on unlimited hierarchical tasks",
77
"author": "Lucas Lopes",

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export default class TimeTreePlugin extends Plugin {
261261
await this.calculator.calculateRecursiveElapsedTime(rootFile);
262262
await this.calculator.calculateRecursiveElapsedChild(rootFile);
263263
await this.calculator.updateNodeSizeFromFile(rootFile);
264-
new Notice(`Time Tree computed from note: ${rootPath}`, 1000);
264+
new Notice(`Time Tree computed from note: ${rootPath}`, 2000);
265265
} finally {
266266
loadingNotice.hide();
267267
}
@@ -333,7 +333,7 @@ export default class TimeTreePlugin extends Plugin {
333333
if (runningNote) {
334334
this.app.workspace.getLeaf().openFile(runningNote);
335335
} else {
336-
new Notice("No note with 'running: true' found.");
336+
new Notice("No running tracker found.");
337337
}
338338
}
339339

0 commit comments

Comments
 (0)