release: 1.0.9

This commit is contained in:
Hananoshika Yomaru 2023-10-13 16:11:43 -07:00
parent a310cfaf5e
commit c81fabe764
3 changed files with 2 additions and 4 deletions

View file

@ -1,7 +1,7 @@
{
"id": "3d-graph",
"name": "3D Graph",
"version": "1.0.7",
"version": "1.0.8",
"description": "A 3D Graph for Obsidian",
"author": "Hananoshika Yomaru",
"authorUrl": "https://github.com/HananoshikaYomaru",

View file

@ -1,6 +1,6 @@
{
"name": "3d-graph",
"version": "1.0.8",
"version": "1.0.9",
"description": "A 3D graph for Obsidian",
"main": "main.js",
"scripts": {

View file

@ -55,7 +55,6 @@ export class ForceGraph {
}
private createGraph() {
const settings = this.plugin.getSettings();
this.createInstance();
this.createNodes();
this.createLinks();
@ -224,7 +223,6 @@ export class ForceGraph {
};
public handleSettingsChanged = (data: StateChange<unknown, GraphSettings>) => {
const settings = this.plugin.getSettings();
// if the filter settings is change
if (
data.currentPath === "filters.searchResult" ||