diff --git a/CHANGELOG.md b/CHANGELOG.md index 52e80a1..bbdb57c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 + diff --git a/manifest.json b/manifest.json index 4802102..60887f5 100644 --- a/manifest.json +++ b/manifest.json @@ -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 -} +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index d3ab358..6f85c01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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" }, diff --git a/package.json b/package.json index 99fc3a9..377bf42 100644 --- a/package.json +++ b/package.json @@ -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" + } } diff --git a/versions.json b/versions.json index 7713ef9..d43969b 100644 --- a/versions.json +++ b/versions.json @@ -1,3 +1,4 @@ { - "0.0.1": "0.0.1" -} + "0.0.1": "0.0.1", + "0.1.0": "1.0.0" +} \ No newline at end of file