This commit is contained in:
wz 2025-04-05 11:42:07 +02:00
parent 98fc482e78
commit 4ddd48933d
5 changed files with 20 additions and 5 deletions

View file

@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.2.0] - 2025-04-05
### Changes
- Improve code quality
- Fix folder expansion
- Address review comments
- Add license
- Update README.md
- Fix type safety
- Update plugin description
- Update README.md
## [0.1.0] - 2025-03-06
### Changes

View file

@ -1,7 +1,7 @@
{
"id": "folder-navigator",
"name": "Folder Navigator",
"version": "0.1.0",
"version": "0.2.0",
"minAppVersion": "1.5.3",
"description": "Quickly navigate to folders in your vault using fuzzy search.",
"author": "wenlzhang",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "plugin-template",
"version": "0.1.0",
"version": "0.2.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "plugin-template",
"version": "0.1.0",
"version": "0.2.0",
"dependencies": {
"tslib": "^2.8.1"
},

View file

@ -1,6 +1,6 @@
{
"name": "folder-navigator",
"version": "0.1.0",
"version": "0.2.0",
"description": "Quickly navigate to folders in your vault using fuzzy search.",
"main": "main.js",
"scripts": {

View file

@ -1,4 +1,5 @@
{
"0.0.1": "0.0.1",
"0.1.0": "1.0.0"
"0.1.0": "1.0.0",
"0.2.0": "1.5.3"
}