Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Quorafind committed Dec 23, 2022
1 parent c7d96a0 commit b960520
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion canvasMindMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,10 +376,11 @@ export default class CanvasMindMap extends Plugin {
const node = Array.from(canvas.nodes).first();
if (!node) return false;

// @ts-ignore
const nodeInstance = node[1];

const uninstaller = around(nodeInstance.constructor.prototype, {
setColor: (next) =>
setColor: (next: any) =>
function (e: any, t: any) {
next.call(this, e, t);
this.canvas.getEdgesForNode(this).forEach((edge: any) => {
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "canvas-mindmap",
"name": "Canvas Mindmap",
"version": "0.0.5",
"version": "0.0.6",
"minAppVersion": "1.1.0",
"description": "A plugin to make your canvas work like a mindmap.",
"author": "Boninall",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "canvas-mindmap",
"version": "0.0.5",
"version": "0.0.6",
"description": "A plugin to make your canvas work like a mindmap.",
"main": "main.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"0.0.2": "1.1.0",
"0.0.3": "1.1.0",
"0.0.4": "1.1.0",
"0.0.5": "1.1.0"
"0.0.5": "1.1.0",
"0.0.6": "1.1.0"
}

0 comments on commit b960520

Please sign in to comment.