Skip to content

Commit a7516ee

Browse files
committed
Merge branch 'main' into dev
2 parents 010f0d6 + af33ba3 commit a7516ee

8 files changed

Lines changed: 184 additions & 186 deletions

File tree

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "task-board",
33
"name": "Task Board",
4-
"version": "1.8.3",
4+
"version": "1.8.4",
55
"minAppVersion": "1.4.13",
66
"description": "Manage all your tasks throughout your vault from a single board and much more...",
77
"author": "Atmanand Gauns",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "task-board",
3-
"version": "1.8.3",
3+
"version": "1.8.4",
44
"description": "An Obsidian plugin to manage small to large projects using tasks from the whole vault on a centralized board using various kinds of views like Kanban, map, list, etc.",
55
"main": "main.js",
66
"type": "module",

src/interfaces/Constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const newReleaseVersion = "1.8.3";
1+
export const newReleaseVersion = "1.8.4";
22
// Plugin view type identifiers
33
export const VIEW_TYPE_TASKBOARD = "task-board-view";
44
export const VIEW_TYPE_ADD_OR_EDIT_TASK = "add-or-edit-task-view";

src/managers/VaultScanner.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -319,11 +319,6 @@ export default class vaultScanner {
319319
false,
320320
this.plugin.settings
321321
);
322-
console.log(
323-
"Scanning : isThisCompletedTas :",
324-
isThisCompletedTask
325-
);
326-
// const title = extractTitle(line);
327322
const title = line.trimEnd(); // we will be storing the taskLine as it is inside the title property
328323
const time = extractTime(line);
329324
const createdDate = extractCreatedDate(line);

src/modals/ScanVaultModal.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const ScanVaultModalContent: React.FC<{ app: App, plugin: TaskBoard, vaultScanne
5050
const [progress, setProgress] = useState(0);
5151
const [showCollectedTasks, setShowCollectedTasks] = useState(false);
5252
const [collectedTasks, setCollectedTasks] = useState<jsonCacheData>({
53-
VaultName: plugin.app.vault.getName(),
53+
VaultName: app.vault.getName(),
5454
Modified_at: getCurrentLocalTimeString(),
5555
Pending: {},
5656
Completed: {},
@@ -63,6 +63,8 @@ const ScanVaultModalContent: React.FC<{ app: App, plugin: TaskBoard, vaultScanne
6363
// Reset terminal output and collected tasks
6464
vaultScanner.tasksCache.Pending = {};
6565
vaultScanner.tasksCache.Completed = {};
66+
vaultScanner.tasksCache.VaultName = app.vault.getName();
67+
vaultScanner.tasksCache.Modified_at = getCurrentLocalTimeString();
6668

6769
const files = app.vault.getFiles();
6870
setProgress(0); // Reset progress

src/utils/lang/locale/en.ts

Lines changed: 174 additions & 174 deletions
Large diffs are not rendered by default.

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
"1.8.0": "1.4.13",
3939
"1.8.1": "1.4.13",
4040
"1.8.2": "1.4.13",
41-
"1.8.3": "1.4.13"
41+
"1.8.3": "1.4.13",
42+
"1.8.4": "1.4.13"
4243
}

0 commit comments

Comments
 (0)