Skip to content

Commit 4daad66

Browse files
committed
release version 1.8.6
1 parent ce8c1a6 commit 4daad66

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,7 @@ export default class TaskBoard extends Plugin {
953953
private runOnPluginUpdate() {
954954
// Check if the plugin version has changed
955955
const currentVersion = newReleaseVersion; // Change this whenever you will going to release a new version.
956-
const runMandatoryScan = true; // Change this whenever you will release a major version which requires user to scan the whole vault again. And to enable the notification.
956+
const runMandatoryScan = false; // Change this whenever you will release a major version which requires user to scan the whole vault again. And to enable the notification.
957957
const previousVersion = this.settings.version;
958958

959959
if (previousVersion == "" || currentVersion !== previousVersion) {

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.5",
4+
"version": "1.8.6",
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.5",
3+
"version": "1.8.6",
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.5";
1+
export const newReleaseVersion = "1.8.6";
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";

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@
4040
"1.8.2": "1.4.13",
4141
"1.8.3": "1.4.13",
4242
"1.8.4": "1.4.13",
43-
"1.8.5": "1.4.13"
43+
"1.8.5": "1.4.13",
44+
"1.8.6": "1.4.13"
4445
}

0 commit comments

Comments
 (0)