Compare commits

..

3 commits
v0.5.0 ... main

Author SHA1 Message Date
d8cb171142
Version bump (incl. dependency)
All checks were successful
Build on Push and create Release on Tag / build (push) Successful in 1m11s
2025-09-06 17:17:10 +02:00
f1393b715d
Version bump
All checks were successful
Build on Push and create Release on Tag / build (push) Successful in 1m20s
2025-09-01 21:49:53 +02:00
7cb9664621
Hotfix for SiYuan v3.3.0
Some checks failed
Build on Push and create Release on Tag / build (push) Failing after 16s
2025-09-01 21:38:25 +02:00
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"name": "siyuan-jsdraw-plugin",
"version": "0.5.0",
"version": "0.5.2",
"type": "module",
"description": "Include a whiteboard for freehand drawing anywhere in your documents.",
"repository": "https://git.massive.box/massivebox/siyuan-jsdraw-plugin",
@ -35,8 +35,8 @@
"vite-plugin-zip-pack": "^1.0.5"
},
"dependencies": {
"@js-draw/material-icons": "^1.29.0",
"js-draw": "^1.29.0",
"@js-draw/material-icons": "^1.31.1",
"js-draw": "^1.31.1",
"ts-serializable": "^4.2.0"
}
}

View file

@ -2,7 +2,7 @@
"name": "siyuan-jsdraw-plugin",
"author": "massivebox",
"url": "https://git.massive.box/massivebox/siyuan-jsdraw-plugin",
"version": "0.5.0",
"version": "0.5.2",
"minAppVersion": "3.0.12",
"backends": [
"windows",

View file

@ -33,7 +33,7 @@ export default class DrawJSPlugin extends Plugin {
void this.analytics.sendEvent('create');
const fileID = generateRandomString();
const syncID = generateTimeString() + '-' + generateRandomString();
protyle.insert(getMarkdownBlock(fileID, syncID), true, false);
protyle.insert(getMarkdownBlock(fileID, syncID), false, false);
(await EditorManager.create(fileID, this)).open(this);
}
}];