From 99ec1d0e6060dda2c2f0ea5c22318f3acfd6295b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 12:54:25 +0000 Subject: [PATCH] Update wiki 7fe3f9b5b64134c07bee70a8cc97cbcdc4f6ed04 --- Configuration.md | 6 ++++++ Console-App.md | 2 +- RelInfo/Changelog.md | 13 +++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/Configuration.md b/Configuration.md index 820a5aa..cd4f4b4 100644 --- a/Configuration.md +++ b/Configuration.md @@ -69,6 +69,12 @@ Since electron builder still expects a `package.json` file to exist, ElectronNET } ``` +### App Icon Path + +The `ElectronIcon` property supports classic icon files (such as `.ico` and `.icns`) and modern macOS `.icon` app icon packages. + +For `.icon`, provide the folder path (for example `Assets/MyApp.icon`). During build/publish, Electron.NET copies the full directory into the Electron output so `electron-builder.json` can reference it (for example `"mac": { "icon": "MyApp.icon" }`). + ### Node.js Integration Electron.NET requires Node.js integration to be enabled for IPC to function. If you are not using the IPC functionality you can disable Node.js integration like so: diff --git a/Console-App.md b/Console-App.md index 3504eb2..0de230f 100644 --- a/Console-App.md +++ b/Console-App.md @@ -53,7 +53,7 @@ Add the Electron.NET configuration to your `.csproj` file: - + ``` diff --git a/RelInfo/Changelog.md b/RelInfo/Changelog.md index 7582e61..2310a95 100644 --- a/RelInfo/Changelog.md +++ b/RelInfo/Changelog.md @@ -1,3 +1,16 @@ +# 0.5.2 + +## ElectronNET.Core + +- Fixed token param being appended to external URLs (#1075) +- Fixed startup mode discriminator in case of existing `wwwroot` (#1050) +- Fixed CA1416 on ASP.NET project (#1091) @epsnm +- Fixed loading issue in plain Visual Studio (#1084) @epsnm +- Fixed bloated ASAR file (#1080) @epsnm +- Improved selection of runtime identifier (#1081) @epsnm +- Added more variants for `UseElectron` (#1076) @AeonSake +- Added support for modern MacOS app icon (#1047) + # 0.5.1 ## ElectronNET.Core