Skip to content

Commit

Permalink
0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
zsviczian committed May 28, 2022
1 parent b7d1c5b commit ad39c8d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 33 deletions.
2 changes: 1 addition & 1 deletion esbuild.config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"minify": false,
"minify": true,
"sourcemap": "inline"
}
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "excalibrain",
"name": "ExcaliBrain",
"version": "0.0.12",
"version": "0.0.13",
"minAppVersion": "0.14.0",
"description": "A clean, intuitive and editable graph view for Obsidian",
"author": "Zsolt Viczian",
Expand Down
2 changes: 1 addition & 1 deletion src/constants/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { NodeStyle, LinkStyle } from "../Types";

export const APPNAME = "ExcaliBrain";
export const PLUGIN_NAME = "excalibrain"
export const MINEXCALIDRAWVERSION = "1.6.28"
export const MINEXCALIDRAWVERSION = "1.6.33"
export const PREDEFINED_LINK_STYLES = ["base","inferred","file-tree","tag-tree"];
export const SUGGEST_LIMIT = 30;

Expand Down
29 changes: 0 additions & 29 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,21 +266,6 @@ export default class ExcaliBrain extends Plugin {
},
});

this.addCommand({
id: "excalibrain-stop-brain",
name: t("COMMAND_STOP"),
checkCallback: (checking: boolean) => {
if(checking) {
return(this.scene && !this.scene.terminated);
}
if(this.scene && !this.scene.terminated) {
this.scene.unloadScene();
this.scene = null;
return;
}
}
})

this.addCommand({
id: "excalibrain-open-hover",
name: t("COMMAND_START_HOVER"),
Expand Down Expand Up @@ -329,20 +314,6 @@ export default class ExcaliBrain extends Plugin {
}
}
})

/*
this.addCommand({
id: "excalibrain-search",
name: t("COMMAND_SEARCH"),
checkCallback: (checking: boolean) => {
if(checking) {
return this.scene && !this.scene.terminated;
}
this.revealBrainLeaf();
const searchElement = this.scene.toolsPanel?.searchElement;
searchElement?.focus();
}
})*/
}

getBrainLeaf():WorkspaceLeaf {
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"0.0.12": "0.14.0"
"0.0.13": "0.14.0"
}

0 comments on commit ad39c8d

Please sign in to comment.