diff --git a/manifest.json b/manifest.json
index b7f2a41..d2d4af4 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,7 +1,7 @@
{
"id": "obsidian-excalidraw-plugin",
"name": "Excalidraw",
- "version": "2.2.11",
+ "version": "2.2.12",
"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 a5516e9..022f108 100644
--- a/src/dialogs/Messages.ts
+++ b/src/dialogs/Messages.ts
@@ -17,6 +17,11 @@ I develop this plugin as a hobby, spending my free time doing this. If you find
`,
+"2.2.12": `
+## Fixed
+- Rename moved files to root folder [#1905](https://github.com/zsviczian/obsidian-excalidraw-plugin/issues/1905)
+- Fonts not displaying correctly in cached image previews
+`,
"2.2.11": `
diff --git a/src/dialogs/SuggesterInfo.ts b/src/dialogs/SuggesterInfo.ts
index 7955c21..36a50db 100644
--- a/src/dialogs/SuggesterInfo.ts
+++ b/src/dialogs/SuggesterInfo.ts
@@ -442,7 +442,19 @@ export const EXCALIDRAW_AUTOMATE_INFO: SuggesterInfo[] = [
{
field: "getExportSettings",
code: "getExportSettings(withBackground: boolean, withTheme: boolean,): ExportSettings;",
- desc: "Utility function to generate ExportSettings object",
+ desc: "Utility function to generate ExportSettings object\n" +
+ "export interface ExportSettings {\n" +
+ " withBackground: boolean;\n" +
+ " withTheme: boolean;\n" +
+ " isMask: boolean; //if true elements will be processed as mask, clipping, etc.\n" +
+ " frameRendering?: { //optional, overrides relevant appState settings for rendering the frame\n" +
+ " enabled: boolean;\n" +
+ " name: boolean;\n" +
+ " outline: boolean;\n" +
+ " clip: boolean;\n" +
+ " };\n" +
+ " skipInliningFonts?: boolean;\n" +
+ "}",
after: "",
},
{