Compare commits

...

2 commits
v0.4.0 ... main

Author SHA1 Message Date
dc15e91def
Version bump
All checks were successful
Build on Push and create Release on Tag / build (push) Successful in 36s
2025-05-15 18:19:46 +02:00
ff83c23851
Improve cursor
All checks were successful
Build on Push and create Release on Tag / build (push) Successful in 51s
2025-05-15 18:16:50 +02:00
4 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "siyuan-jsdraw-plugin",
"version": "0.4.0",
"version": "0.4.1",
"type": "module",
"description": "Include a whiteboard for freehand drawing anywhere in your documents.",
"repository": "https://git.massive.box/massivebox/siyuan-jsdraw-plugin",

View file

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 719 B

After

Width:  |  Height:  |  Size: 606 B

Before After
Before After

View file

@ -47,7 +47,7 @@ export class PluginEditor {
const styleElement = document.createElement('style');
styleElement.innerHTML = `
canvas.wetInkCanvas {
cursor: url('/plugins/siyuan-jsdraw-plugin/webapp/cursor.png') 6 6, auto;
cursor: url('/plugins/siyuan-jsdraw-plugin/webapp/cursor.png') 3 3, none;
}
`;
this.element.appendChild(styleElement);