From c8f9b3678406ca6821f9329595d0df84d3f77787 Mon Sep 17 00:00:00 2001 From: ken Date: Fri, 27 Sep 2024 19:57:23 +0800 Subject: [PATCH] Update to version 1.1.2 --- README.md | 8 +++++++- manifest.json | 2 +- src/main.ts | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 994be1e..a6b6665 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.1 Release Notes +## Version 1.1.1/1.1.2 Release Notes 1. **Improved Orphan File Detection** - Enhanced algorithm to identify unlinked files: @@ -34,6 +34,12 @@ And you can show up your beautiful vault pictures here: [Share & showcase](https 4. **New Quick Focus Function**: - Right-clicking on a node in the scene now triggers a "quick focus" behavior for easier navigation. +### Version 1.1.2 Bug Fix Release + +1. Color Map Source Update Issue: The color map source now correctly updates when the color is reset. +2. Label Text Display Issue: The label text now displays correctly even when toggled off. +3. Unwanted Border Issue: An issue causing an unwanted border to appear in certain scenarios has been resolved. + _*The usage demo:*_ diff --git a/manifest.json b/manifest.json index e42484d..83731f6 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "tags-routes", "name": "Tags Routes", - "version": "1.1.1", + "version": "1.1.2", "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 06adaaf..c8de271 100644 --- a/src/main.ts +++ b/src/main.ts @@ -11,7 +11,7 @@ export const globalProgramControl = { allowDuplicated: false, aimBeforeLink: true, } -export const currentVersion = '1.1.1'; //Used to show in debug console +export const currentVersion = '1.1.2'; //Used to show in debug console export const currentSaveSpecVer = 10101; //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