mirror of
https://github.com/wenlzhang/obsidian-tag-index.git
synced 2026-07-22 05:44:03 +00:00
0.7.0
This commit is contained in:
parent
a35774d440
commit
2c3fc3fb77
5 changed files with 17 additions and 5 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -13,6 +13,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
|
||||
|
||||
|
||||
## [0.7.0] - 2025-10-03
|
||||
|
||||
### Changes
|
||||
|
||||
- perf: optimize tag frequency calculation using Obsidian's built-in cache API
|
||||
- feat: add tag sorting options with frequency, name, and added time methods
|
||||
- style: adjust tag index header spacing and alignment for better layout balance
|
||||
- refactor: replace sort menu icons with setChecked for cleaner menu state handling
|
||||
- feat: add flexible note sorting by name, modified time, or created time
|
||||
|
||||
## [0.6.1] - 2025-10-03
|
||||
|
||||
### Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "tag-index",
|
||||
"name": "Tag Index",
|
||||
"version": "0.6.1",
|
||||
"version": "0.7.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Create a curated list of important tags to serve as meaningful entry points to your knowledge base.",
|
||||
"author": "wenlzhang",
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "tag-index",
|
||||
"version": "0.6.1",
|
||||
"version": "0.7.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "tag-index",
|
||||
"version": "0.6.1",
|
||||
"version": "0.7.0",
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.16.0",
|
||||
"@types/jest": "^29.5.14",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tag-index",
|
||||
"version": "0.6.1",
|
||||
"version": "0.7.0",
|
||||
"description": "Create a curated list of important tags to serve as meaningful entry points to your knowledge base.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -7,5 +7,6 @@
|
|||
"0.4.0": "1.0.0",
|
||||
"0.5.0": "1.0.0",
|
||||
"0.6.0": "1.0.0",
|
||||
"0.6.1": "1.0.0"
|
||||
"0.6.1": "1.0.0",
|
||||
"0.7.0": "1.0.0"
|
||||
}
|
||||
Loading…
Reference in a new issue