You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It shows "Open document in another pane..." and does not react.
The problem is solved by changing .obsidian\plugins\obsidian-excalidraw-plugin\data.json. The parameter "previousRelease": null, must be set to not null, like "previousRelease": "2.5.0",
The text was updated successfully, but these errors were encountered:
The only idea, that I've use Lazy Plugin Loader, and it can call unload functions in another time or order, not like an obsidian.
In ExcalidrawPlugin.onunload() you have set PLUGIN_VERSION = null;, and in ReleaseNotes.onclose() you're set this.plugin.settings.previousRelease = PLUGIN_VERSION. Maybe it can interfere?
PS. For now, I can't reproduce an error, but absolutely it was here.
It shows "Open document in another pane..." and does not react.
The problem is solved by changing
.obsidian\plugins\obsidian-excalidraw-plugin\data.json
. The parameter"previousRelease": null,
must be set to not null, like"previousRelease": "2.5.0",
The text was updated successfully, but these errors were encountered: