Skip to content

Commit 1fb6cd8

Browse files
committed
release version 1.9.7
1 parent 7c77921 commit 1fb6cd8

File tree

6 files changed

+32
-31
lines changed

6 files changed

+32
-31
lines changed

main.ts

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,31 +1399,31 @@ export default class TaskBoard extends Plugin {
13991399

14001400
if (previousVersion == "" || currentVersion !== previousVersion) {
14011401
// A short custom message to show in Obsidian's Notice on plugin update.
1402-
if (previousVersion !== "") {
1403-
const customMessage = new Notice("", 0);
1404-
1405-
const messageContainer = customMessage.containerEl;
1406-
1407-
const customMessageContainer = messageContainer.createDiv({
1408-
cls: "taskboardCustomMessageContainer",
1409-
});
1410-
1411-
customMessageContainer.createEl("h3", { text: "Task Board" });
1412-
customMessageContainer.createEl("p", {
1413-
text: "Note for existing users",
1414-
cls: "taskboardCustomMessageContainerBold",
1415-
});
1416-
customMessageContainer.createEl("span", {
1417-
text: "This new version will be using the date-fns library for managing all date-time related calculations. Because of this more features are possible in the future. Kindly take a look at the two new settings added under the 'Formats' tab in task boards settings.",
1418-
});
1419-
customMessageContainer.createEl("p", {
1420-
text: "Read the release notes for all the changes : ",
1421-
});
1422-
customMessageContainer.createEl("a", {
1423-
text: "Task Board v1.9.6",
1424-
href: `https://github.com/tu2-atmanand/Task-Board/releases/tag/${newReleaseVersion}`,
1425-
});
1426-
}
1402+
// if (previousVersion !== "") {
1403+
// const customMessage = new Notice("", 0);
1404+
1405+
// const messageContainer = customMessage.containerEl;
1406+
1407+
// const customMessageContainer = messageContainer.createDiv({
1408+
// cls: "taskboardCustomMessageContainer",
1409+
// });
1410+
1411+
// customMessageContainer.createEl("h3", { text: "Task Board" });
1412+
// customMessageContainer.createEl("p", {
1413+
// text: "Note for existing users",
1414+
// cls: "taskboardCustomMessageContainerBold",
1415+
// });
1416+
// customMessageContainer.createEl("span", {
1417+
// text: "This new version will be using the date-fns library for managing all date-time related calculations. Because of this more features are possible in the future. Kindly take a look at the two new settings added under the 'Formats' tab in task boards settings.",
1418+
// });
1419+
// customMessageContainer.createEl("p", {
1420+
// text: "Read the release notes for all the changes : ",
1421+
// });
1422+
// customMessageContainer.createEl("a", {
1423+
// text: "Task Board v1.9.6",
1424+
// href: `https://github.com/tu2-atmanand/Task-Board/releases/tag/${newReleaseVersion}`,
1425+
// });
1426+
// }
14271427

14281428
// Show a message to existing users to re-scan the vault on minor version updates
14291429
// if (runMandatoryScan && 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.9.6",
4+
"version": "1.9.7",
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.9.6",
3+
"version": "1.9.7",
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.9.6";
1+
export const newReleaseVersion = "1.9.7";
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
@@ -49,5 +49,6 @@
4949
"1.9.3": "1.4.13",
5050
"1.9.4": "1.4.13",
5151
"1.9.5": "1.4.13",
52-
"1.9.6": "1.4.13"
52+
"1.9.6": "1.4.13",
53+
"1.9.7": "1.4.13"
5354
}

0 commit comments

Comments
 (0)