From 1815951092fb8bb4cb6e1ee44c1bc4c7c9733a41 Mon Sep 17 00:00:00 2001 From: softworkz Date: Thu, 20 Nov 2025 02:54:10 +0100 Subject: [PATCH 1/2] BrowserWindowOptions; Fix default for FullScreenable Electron's default is true --- src/ElectronNET.API/API/Entities/BrowserWindowOptions.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ElectronNET.API/API/Entities/BrowserWindowOptions.cs b/src/ElectronNET.API/API/Entities/BrowserWindowOptions.cs index 9b1e1fd8..592cea08 100644 --- a/src/ElectronNET.API/API/Entities/BrowserWindowOptions.cs +++ b/src/ElectronNET.API/API/Entities/BrowserWindowOptions.cs @@ -115,10 +115,11 @@ public class BrowserWindowOptions /// /// Whether the window can be put into fullscreen mode. On macOS, also whether the - /// maximize/zoom button should toggle full screen mode or maximize window.Default - /// is true. + /// maximize/zoom button should toggle full screen mode or maximize window. Default + /// is true (Electron default). /// - public bool Fullscreenable { get; set; } + [DefaultValue(true)] + public bool Fullscreenable { get; set; } = true; // FIX: previously defaulted to false in C# /// /// Whether to show the window in taskbar. Default is false. From 2f4d37d82393401cd2521a1de270f26df32e3bcd Mon Sep 17 00:00:00 2001 From: softworkz Date: Thu, 20 Nov 2025 20:31:35 +0100 Subject: [PATCH 2/2] Try macOS 26 --- .github/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index adc91704..e2903c1d 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -22,7 +22,7 @@ jobs: rid: linux-x64 - os: windows-2022 rid: win-x64 - - os: macos-14 + - os: macos-26 rid: osx-arm64 env: