diff --git a/ea-scripts/index-new.md b/ea-scripts/index-new.md index 16f4ad4..78e650f 100644 --- a/ea-scripts/index-new.md +++ b/ea-scripts/index-new.md @@ -352,7 +352,7 @@ https://raw.githubusercontent.com/zsviczian/obsidian-excalidraw-plugin/master/ea ```excalidraw-script-install https://raw.githubusercontent.com/zsviczian/obsidian-excalidraw-plugin/master/ea-scripts/Slideshow.md ``` -
Author@zsviczian
SourceFile on GitHub
DescriptionThe script will convert your drawing into a slideshow presentation.

+
Author@zsviczian
SourceFile on GitHub
DescriptionThe script will convert your drawing into a slideshow presentation.
## Split text by lines ```excalidraw-script-install diff --git a/manifest.json b/manifest.json index ad34eed..19a5fbe 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-excalidraw-plugin", "name": "Excalidraw", - "version": "1.8.1", + "version": "1.8.2", "minAppVersion": "0.16.0", "description": "An Obsidian plugin to edit and view Excalidraw drawings", "author": "Zsolt Viczian", diff --git a/src/dialogs/Messages.ts b/src/dialogs/Messages.ts index 03151d5..3ebdaf6 100644 --- a/src/dialogs/Messages.ts +++ b/src/dialogs/Messages.ts @@ -16,6 +16,36 @@ export const RELEASE_NOTES: { [k: string]: string } = { I develop this plugin as a hobby, spending my free time doing this. If you find it valuable, then please say THANK YOU or...
+`, +"1.8.2":` +Introducing the [Excalidraw Slideshow Script](https://github.com/zsviczian/obsidian-excalidraw-plugin/blob/master/ea-scripts/Slideshow.md) - available in the script store +
+ +
+ +## Fixed +- Obsidian tools panel gets misplaced after switching Obsidian workspace tabs + +## New in ExcalidrawAutomate +- changed ${String.fromCharCode(96)}viewToggleFullScreen(forceViewMode: boolean = false): void${String.fromCharCode(96)}: the function will toggle view mode on when going to full screen and view mode off when terminating full screen. +- new functions +${String.fromCharCode(96, 96, 96)}typescript +setViewModeEnabled(enabled: boolean):void; +viewUpdateScene( + scene: { + elements?: ExcalidrawElement[]; + appState?: AppState; + files?: BinaryFileData; + commitToHistory?: boolean; + }, + restore: boolean = false, + ):void; +viewZoomToElements( + selectElements: boolean, + elements: ExcalidrawElement[] + ):void; +${String.fromCharCode(96, 96, 96)} + `, "1.8.1": ` ## New and fixes from Excalidraw.com