Skip to content

Commit

Permalink
Version 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kctekn committed Oct 17, 2024
1 parent 6ff1ea5 commit 273a730
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,28 @@ 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:

### 1. Tag Query Enhancements:
- **Time-based tag queries:**
You can now query content associated with time-sensitive tags like `#1day`, `#30day`, `#60day`, etc.
- **How to use it:**
1. Add time-based tags (e.g., `#1day`, `#30day`) anywhere in your notes.
2. Restart Obsidian to allow the plugin to re-index the tags.
3. Navigate to the plugin's interface, find the tag, and click on the corresponding node.
4. You'll receive a report summarizing the content tagged within the specified time period.
- **Direct linking to paragraphs:**
Instead of linking only to entire notes, the plugin now creates direct links to specific paragraphs, improving navigation accuracy.
- **Performance optimization:**
Query performance has been significantly improved for faster and more efficient results.

### 2. New Option: "Auto-Focus File in Explorer"
- **Toggle Auto-Focus:**
A new option has been added to toggle the auto-focus feature in the file explorer. This was the default behavior in previous versions, but now you can turn it off if it causes issues or if you don’t always need the file explorer to focus on the current file.
- **Enhanced Functionality:**
When auto-focus is enabled, deleting items in the canvas will no longer trigger unintended reactions in the file explorer.


## 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.
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.4",
"version": "1.1.5",
"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.3'; //Used to show in debug console
export const currentSaveSpecVer = 10103; //Indicate current version of saved config file: data.json
export const currentVersion = '1.1.5'; //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

const programDirectory = "TagsRoutes"
Expand Down

0 comments on commit 273a730

Please sign in to comment.