diff --git a/README.md b/README.md index f7fb93b..24e3cbf 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,16 @@ Wiki: And you can show up your beautiful vault pictures here: [Share & showcase](https://github.com/kctekn/obsidian-TagsRoutes/discussions/17) +## Version 1.1.8 Release Notes: + +### 1. New feature: +- **Selection Box for Enhanced Clarity:** A selection box has been added to clearly highlight the currently selected node. This visual cue makes it easier to track your position within the graph and navigate your tags effectively. (See GIF for a demonstration) + + + +### 2. Bug fix: +- **Global Preference for Tag Click Actions Now Functional:** Previously, disabling tag click actions in the global plugin preferences did not work as intended. This issue has been resolved, and you can now reliably control this behavior through the plugin settings. (See issue https://github.com/kctekn/obsidian-TagsRoutes/issues/28 for more details) + ## Version 1.1.5/1.1.6 Release Notes: ### 1. Tag Query Enhancements: diff --git a/manifest.json b/manifest.json index 23cd74d..4f91f29 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "tags-routes", "name": "Tags Routes", - "version": "1.1.7", + "version": "1.1.8", "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 27ad722..8c9e846 100644 --- a/src/main.ts +++ b/src/main.ts @@ -15,8 +15,8 @@ export const globalProgramControl = { snapshotDirectory: "graph-screenshot", generateLinker: true, } -export const currentVersion = '1.1.7'; //Used to show in debug console -export const currentSaveSpecVer = 10105; //Indicate current version of saved config file: data.json +export const currentVersion = '1.1.8'; //Used to show in debug console +export const currentSaveSpecVer = 10108; //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 const programDirectory = "TagsRoutes" diff --git a/usage/v1.1.8-feature.gif b/usage/v1.1.8-feature.gif new file mode 100644 index 0000000..ecaa762 Binary files /dev/null and b/usage/v1.1.8-feature.gif differ