diff --git a/README.md b/README.md index c62b316..f7fb93b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Wiki: And you can show up your beautiful vault pictures here: [Share & showcase](https://github.com/kctekn/obsidian-TagsRoutes/discussions/17) -## Version 1.1.5 Release Notes: +## Version 1.1.5/1.1.6 Release Notes: ### 1. Tag Query Enhancements: - **Time-based tag queries:** @@ -44,6 +44,12 @@ And you can show up your beautiful vault pictures here: [Share & showcase](https For the details, please check https://github.com/kctekn/obsidian-TagsRoutes/issues/24 . Thanks to @scriptingtest for the detailed feedback! +### Version 1.1.6 Bug Fix Release + +1. The issue when multiple notes has the same name in different directories. +2. The issue of identical queries to be executed multiple times unnecessarily. + + ## Version 1.1.3/1.1.4 Release Notes This release introduces major updates to screenshots, enhancements to graph display control, and provides more choice in how you interact with tags nodes. diff --git a/manifest.json b/manifest.json index ae1a461..e89d59e 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "tags-routes", "name": "Tags Routes", - "version": "1.1.5", + "version": "1.1.6", "minAppVersion": "0.15.0", "description": "A powerful tool for visualizing 3D graphs and managing orphan files, offering a dynamic and colorful 3D graph view for enhanced user experience.", "author": "Ken", diff --git a/src/main.ts b/src/main.ts index aa5aa40..7a78ea4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -15,7 +15,7 @@ export const globalProgramControl = { snapshotDirectory: "graph-screenshot", generateLinker: true, } -export const currentVersion = '1.1.5'; //Used to show in debug console +export const currentVersion = '1.1.6'; //Used to show in debug console export const currentSaveSpecVer = 10105; //Indicate current version of saved config file: data.json export const minSaveSpecVer = 10101; //Data will be loaded if the loaded version of data.json >= minSaveSpecVer, and will be completely overrided to default if version < minSaveSpecVer