This commit is contained in:
wz 2025-04-30 20:40:05 +02:00
parent 1dd71601ce
commit 78f03608ea
5 changed files with 15 additions and 5 deletions

View file

@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.3.1] - 2025-04-30
### Changes
- Refactor settings tab to dynamically show/hide folder history options based on mode
- Rename FolderSortMode to FolderDisplayMode and update related UI text for clarity
- Improve code format
## [0.3.0] - 2025-04-30
### Changes

View file

@ -1,7 +1,7 @@
{
"id": "folder-navigator",
"name": "Folder Navigator",
"version": "0.3.0",
"version": "0.3.1",
"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.3.0",
"version": "0.3.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "plugin-template",
"version": "0.3.0",
"version": "0.3.1",
"dependencies": {
"tslib": "^2.8.1"
},

View file

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

View file

@ -3,5 +3,6 @@
"0.1.0": "1.0.0",
"0.2.0": "1.5.3",
"0.2.1": "1.5.3",
"0.3.0": "1.5.3"
"0.3.0": "1.5.3",
"0.3.1": "1.5.3"
}