diff --git a/manifest.json b/manifest.json index 8761782..e699c5c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-excalidraw-plugin", "name": "Excalidraw", - "version": "1.9.16", + "version": "1.9.17", "minAppVersion": "1.1.6", "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 909457f..920dd6f 100644 --- a/src/dialogs/Messages.ts +++ b/src/dialogs/Messages.ts @@ -17,6 +17,15 @@ I develop this plugin as a hobby, spending my free time doing this. If you find
`, +"1.9.17":` +## New +- Significant performance improvements from Excalidraw.com +- When selecting a highlight in the Obsidian PDF editor and selecting "Copy as Quote" in the context menu, then paste this to Excalidraw, the text will arrive as a text element wrapped in a transparent sticky note with the link to the original highlight attached to the sticky note. You can override this behavior by SHIFT+CTRL/CMD pasting + +## Fixed +- BUG: Image caching issue. Changes to the drawing do not reflect immediately in the note when re-opening the drawing [#1297](https://github.com/zsviczian/obsidian-excalidraw-plugin/issues/1279) +- Removed underline from links in NativeSVG embed. +`, "1.9.16":` I apologize for this extra release. I accidentally built 1.9.15 with an older excalidraw.com package version. Fixes and new features (like the improved grid) are now available again. Otherwise, this is the same as 1.9.15. Sorry for the inconvenience. `, diff --git a/styles.css b/styles.css index 3e15a40..677a941 100644 --- a/styles.css +++ b/styles.css @@ -407,4 +407,8 @@ div.excalidraw-draginfo { .modal-content.excalidraw-scriptengine-install .active-highlight { border: 2px solid var(--color-accent-2); background-color: var(--color-accent); +} + +.excalidraw-svg svg a { + text-decoration: none; } \ No newline at end of file