Skip to content

Commit 4600813

Browse files
committed
change version numbers in the codebase
1 parent 05e1679 commit 4600813

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -949,8 +949,8 @@ export default class TaskBoard extends Plugin {
949949

950950
private runOnPluginUpdate() {
951951
// Check if the plugin version has changed
952-
const currentVersion = "1.8.2"; // Change this whenever you will going to release a new version.
953-
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.
952+
const currentVersion = "1.8.3"; // Change this whenever you will going to release a new version.
953+
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.
954954
const previousVersion = this.settings.version;
955955

956956
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.2",
4+
"version": "1.8.3",
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.2",
3+
"version": "1.8.3",
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/modals/ScanVaultModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,10 @@ const ScanVaultModalContent: React.FC<{ app: App, plugin: TaskBoard, vaultScanne
156156
<h2>{t("scan-tasks-from-the-vault")}</h2>
157157
{localStorage.getItem("manadatoryScan") === "true" ?
158158
(<>
159-
<div className="scanVaultModalHomeMandatoryScan">{t("scan-vault-from-the-vault-upgrade-message-1")} 1.6.0</div>
159+
<div className="scanVaultModalHomeMandatoryScan">{t("scan-vault-from-the-vault-upgrade-message-1")} 1.8.3</div>
160160
<div className="scanVaultModalHomeMandatoryScan">{t("scan-vault-from-the-vault-upgrade-message-2")}</div>
161161
<br />
162-
<div className="scanVaultModalHomeMandatoryScan">{t("scan-vault-from-the-vault-upgrade-message-3")} : <a href="https://github.com/tu2-atmanand/Task-Board/releases/tag/1.8.0">Task Board v1.8.0</a>.</div>
162+
<div className="scanVaultModalHomeMandatoryScan">{t("scan-vault-from-the-vault-upgrade-message-3")} : <a href="https://github.com/tu2-atmanand/Task-Board/releases/tag/1.8.3">Task Board v1.8.3</a>.</div>
163163
</>
164164
) :
165165
(<>

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@
3737
"1.7.1": "1.4.13",
3838
"1.8.0": "1.4.13",
3939
"1.8.1": "1.4.13",
40-
"1.8.2": "1.4.13"
40+
"1.8.2": "1.4.13",
41+
"1.8.3": "1.4.13"
4142
}

0 commit comments

Comments
 (0)