diff --git a/Changelog.md b/Changelog.md index 0528fedd..19ed7404 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,9 +2,17 @@ # 8.31.3 +ElectronNET.CLI: + +* New Feature: Added config parameter (thanks [konstantingross](https://github.com/konstantingross)) [\#409](https://github.com/ElectronNET/Electron.NET/pull/409) + ElectronNET.API: * New Feature: PowerMonitor API Support (thanks [gustavo-lara-molina](https://github.com/gustavo-lara-molina)) [\#399](https://github.com/ElectronNET/Electron.NET/pull/399) +* New Feature: NativeTheme API Support (thanks [konstantingross](https://github.com/konstantingross)) [\#402](https://github.com/ElectronNET/Electron.NET/pull/402) +* App-Api Enhancement: Added UserAgentFallback (thanks [Mandrakia](https://github.com/Mandrakia)) [\#406](https://github.com/ElectronNET/Electron.NET/pull/406) +* Notification-Api Enhancement: Added missing properties in Notifications (thanks [konstantingross](https://github.com/konstantingross)) [\#410](https://github.com/ElectronNET/Electron.NET/pull/410) +* MacOS Enhancement: Application exit logic (thanks [dafergu2](https://github.com/dafergu2)) [\#405](https://github.com/ElectronNET/Electron.NET/pull/405) # Released diff --git a/ElectronNET.API/Entities/WebPreferences.cs b/ElectronNET.API/Entities/WebPreferences.cs index c77b8a2c..031c78c3 100644 --- a/ElectronNET.API/Entities/WebPreferences.cs +++ b/ElectronNET.API/Entities/WebPreferences.cs @@ -173,7 +173,7 @@ public class WebPreferences /// /// Whether to run Electron APIs and the specified preload script in a separate - /// JavaScript context.Defaults to false. The context that the preload script runs + /// JavaScript context. Defaults to false. The context that the preload script runs /// in will still have full access to the document and window globals but it will /// use its own set of JavaScript builtins (Array, Object, JSON, etc.) and will be /// isolated from any changes made to the global environment by the loaded page.The @@ -185,8 +185,8 @@ public class WebPreferences /// Context' entry in the combo box at the top of the Console tab. This option is /// currently experimental and may change or be removed in future Electron releases. /// - [DefaultValue(true)] - public bool ContextIsolation { get; set; } = true; + [DefaultValue(false)] + public bool ContextIsolation { get; set; } /// /// Whether to use native window.open(). Defaults to false. This option is currently experimental.