This commit is contained in:
wz 2025-03-06 19:21:25 +01:00
parent 67721f6d3e
commit 23b65ccf66
5 changed files with 54 additions and 39 deletions

View file

@ -5,3 +5,17 @@ All notable changes to this project will be documented in this file.
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.1.0] - 2025-03-06
### Changes
- Update README.md
- Update README.md
- Support default folder expanding
- Fix folder navigation bug
- Debug folder navigation
- Fix hotkey bug
- Add initial version
- Initial commit

View file

@ -1,13 +1,13 @@
{
"id": "folder-navigator",
"name": "Folder Navigator",
"version": "0.0.1",
"version": "0.1.0",
"minAppVersion": "1.0.0",
"description": "Quickly navigate to folders in your vault using fuzzy search",
"author": "wenlzhang",
"authorUrl": "https://github.com/wenlzhang",
"fundingUrl": {
"Buy Me a Coffee": "https://ko-fi.com/f84556"
},
"Buy Me a Coffee": "https://ko-fi.com/f84556"
},
"isDesktopOnly": false
}
}

4
package-lock.json generated
View file

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

View file

@ -1,43 +1,43 @@
{
"name": "plugin-template",
"version": "0.0.1",
"version": "0.1.0",
"description": "Plugin Template.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "npm run prettier && node esbuild.config.mjs production && cp manifest.json build && [ -f styles.css ] && cp styles.css build/ || true",
"pretest": "eslint src/",
"test": "jest --passWithNoTests",
"prettier": "prettier -w 'src/**/*.ts'",
"preversion": "npm run build && npm run test",
"version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/",
"postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js manifest.json $([ -f styles.css ] && echo 'styles.css' || true)"
},
"dev": "node esbuild.config.mjs",
"build": "npm run prettier && node esbuild.config.mjs production && cp manifest.json build && [ -f styles.css ] && cp styles.css build/ || true",
"pretest": "eslint src/",
"test": "jest --passWithNoTests",
"prettier": "prettier -w 'src/**/*.ts'",
"preversion": "npm run build && npm run test",
"version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/",
"postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js manifest.json $([ -f styles.css ] && echo 'styles.css' || true)"
},
"version-tag-prefix": "",
"keywords": [
"obsidian"
],
"author": "wenlzhang",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"builtin-modules": "^4.0.0",
"esbuild": "^0.13.15",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.7.0",
"obsidian": "latest",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"dependencies": {
"tslib": "^2.8.1"
}
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"builtin-modules": "^4.0.0",
"esbuild": "^0.13.15",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.7.0",
"obsidian": "latest",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"dependencies": {
"tslib": "^2.8.1"
}
}

View file

@ -1,3 +1,4 @@
{
"0.0.1": "0.0.1"
}
"0.0.1": "0.0.1",
"0.1.0": "1.0.0"
}