Here's a demo of the new handwriting / linking features: https://youtu.be/_GfWailVKpc
Fixes:
- Number of small QoL improvements to improve the pen experience
New features:
-
Option to enable hover preview in Excalidraw without needing to press CTRL/CMD
-
ExcalidrawAutomate Script Engine
utils.inputPrompt
can now display multiple buttons (options)
inputPrompt: (header: string, placeholder?: string, value?: string, buttons?: [{caption:string, action:Function}])
example:
let fileType = "";
const filename = await utils.inputPrompt (
"Filename for new document",
"Placeholder",
"DefaultFilename.md",
[
{
caption: "Markdown",
action: ()=>{fileType="md";return;}
},
{
caption: "Excalidraw",
action: ()=>{fileType="ex";return;}
}
]
);