Skip to content

Commit

Permalink
release:beta
Browse files Browse the repository at this point in the history
  • Loading branch information
catacgc committed Sep 28, 2024
1 parent 879a17d commit 0ddbece
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "tree-search",
"name": "Tree Search",
"version": "0.0.15",
"version": "0.0.16",
"minAppVersion": "0.15.0",
"description": "Quickly search hierarchical line trees in Obsidian",
"author": "Catalin Costache",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-tree-search",
"version": "0.0.15",
"version": "0.0.16",
"description": "Quickly search trees of lines in Obsidian",
"main": "main.js",
"scripts": {
Expand All @@ -12,7 +12,7 @@
"build": "npm run build:css && npm run build:esbuild",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"version:beta": "node version-bump.mjs && git add manifest.json versions.json",
"release:beta": "npm run version:beta && git commit -m 'release:beta' && git push origin main:main && git tag -a $npm_package_version -m \"$npm_package_version\" && git push --tags",
"release:beta": "npm run version:beta && git add . && git commit -m 'release:beta' && git push origin main:main && git tag -a $npm_package_version -m \"$npm_package_version\" && git push --tags",
"test": "jest",
"test:watch": "jest --watch"
},
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default class TreeSearchPlugin extends Plugin {
}

async loadSettings() {
this.context.settings = Object.assign({}, REACT_PLUGIN_CONTEXT, await this.loadData());
this.context.settings = Object.assign({}, REACT_PLUGIN_CONTEXT.settings, await this.loadData());
this.index.setSettings(this.context.settings);
}

Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"0.0.12": "0.15.0",
"0.0.13": "0.15.0",
"0.0.14": "0.15.0",
"0.0.15": "0.15.0"
"0.0.15": "0.15.0",
"0.0.16": "0.15.0"
}

0 comments on commit 0ddbece

Please sign in to comment.