New from Excalidraw.com:
- Better default radius for rectangles #5553
- old drawings will look unchanged, this applies only to new rectangles
[!Note]- ExcalidrawAutomate technical details
strokeSharpness
is now deprecated- use roundness instead
roundness === null
is legacystrokeSharpness = "sharp"
- `roundness = { type: RoundnessType; value?: number }
- type: 1, LEGACY, type:2 PROPORTIONAL_RADIUS, type:3 ADAPTIVE_RADIUS: 3
- value:
- Radius represented as % of element's largest side (width/height).
DEFAULT_PROPORTIONAL_RADIUS = 0.25;- Fixed radius for the ADAPTIVE_RADIUS algorithm. In pixels.
DEFAULT_ADAPTIVE_RADIUS = 32;
New
- Improved embedding into Obsidian Canvas
- Improved embedding into Markdown documents
- Added setting under
Display/Default mode when opening Excalidraw
to always open the drawing in view mode on Mobile, but in normal mode on desktop. #939