github zsviczian/obsidian-excalidraw-plugin 1.4.18
Excalidraw 1.4.18

latest releases: 2.15.3, 2.15.3-beta-2, 2.15.3-beta-1...
3 years ago

Fixed:

  • #292
  • Error handling when the embedded image file is no longer available (link is broken). Excalidraw was not able to load the drawing.

New feature:

  • Excalidraw Automate if the existing element is manipulated using Excalidraw Automate and added back to the scene, addElementsToView will handle this intelligently (i.e. update the existing element instead of adding a duplicate with the same id). Eg.: add a rectangle around the selected image. This script can be executed e.g. from QuickAdd.
ea = ExcalidrawAutomate;
ea.reset();
ea.setView("active");
img = ea.getViewSelectedElement();
id = ea.addRect(img.x,img.y,img.width,img.height);
ea.elementsDict[img.id]=img;
ea.addToGroup([id,img.id]);
ea.addElementsToView(false);

Don't miss a new obsidian-excalidraw-plugin release

NewReleases is sending notifications on new releases.