Skip to content

Commit

Permalink
Release 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kctekn committed Nov 4, 2024
1 parent 79702c2 commit 918d133
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<img src="https://github.com/kctekn/obsidian-TagsRoutes/blob/main/usage/v1.1.8-feature.gif">

### 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:
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Binary file added usage/v1.1.8-feature.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 918d133

Please sign in to comment.