Fixed
- PDF improvements
- It was not possible to scroll the embedded PDF. #9891
- Embedded PDF pages were blurred (pixelated).
- Embedded PDF now accurately follows
excalidraw-embeddable-theme
document property.- auto: follows Excalidraw theme (regardless of Obsidian theme)
- default: follows Obsidian theme (regardless of Excalidraw theme)
- dark: always displays the PDF in dark mode (regardless of Excalidraw and Obsidian themes)
- light: always displays the PDF in light mode (regardless of Excalidraw and Obsidian themes)
- Pasting an oversized image resulted in an error message and Excalidraw dumping the scene. #2453, #9878
- Video with local URI will no longer start to autoplay when the scene loads
- Error creating link to element when element is a sticky note
- Area link embeds hide the content of the objects within the area #2461
- Embeddables lead to a dark screen on Obsidian Mobile 1.9.10 #2460
- Scrolling of embedded web pages on mobile devices is working again.
New
- Insert Any File now supports adding Audio files.
- New option in settings under "Zoom and Pan". Pan with right mouse button (Miro‑style): right‑click and drag to pan the canvas. Press 'm' for the context menu (disabled while editing text). 🙏 @mfuria for making this happen! #2450, #329
- Insert image in the main toolbar now opens a dropdown menu of options: Insert from system, insert from Vault, insert Card, and insert LaTeX. #2448
Depricated
- Removed "Toggle RAW mode" from the Command Palette and the Obsidian Tools menu due to low usage. RAW mode remains available by adding
excalidraw-plugin: raw
to the note's YAML frontmatter/document properties.
New in ExcalidrawAutomate
/**
* Returns the center position of the current view in Excalidraw coordinates.
* @returns {{x:number, y:number}} The center position of the view.
*/
public getViewCenterPosition(): {x:number, y:number};