Skip to content

Commit 9502eb7

Browse files
Fixed bug - #411
1 parent 4a9b6fa commit 9502eb7

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@
22

33
# 8.31.3
44

5+
ElectronNET.CLI:
6+
7+
* New Feature: Added config parameter (thanks [konstantingross](https://github.com/konstantingross)) [\#409](https://github.com/ElectronNET/Electron.NET/pull/409)
8+
59
ElectronNET.API:
610

711
* New Feature: PowerMonitor API Support (thanks [gustavo-lara-molina](https://github.com/gustavo-lara-molina)) [\#399](https://github.com/ElectronNET/Electron.NET/pull/399)
12+
* New Feature: NativeTheme API Support (thanks [konstantingross](https://github.com/konstantingross)) [\#402](https://github.com/ElectronNET/Electron.NET/pull/402)
13+
* App-Api Enhancement: Added UserAgentFallback (thanks [Mandrakia](https://github.com/Mandrakia)) [\#406](https://github.com/ElectronNET/Electron.NET/pull/406)
14+
* Notification-Api Enhancement: Added missing properties in Notifications (thanks [konstantingross](https://github.com/konstantingross)) [\#410](https://github.com/ElectronNET/Electron.NET/pull/410)
15+
* MacOS Enhancement: Application exit logic (thanks [dafergu2](https://github.com/dafergu2)) [\#405](https://github.com/ElectronNET/Electron.NET/pull/405)
816

917
# Released
1018

ElectronNET.API/Entities/WebPreferences.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public class WebPreferences
173173

174174
/// <summary>
175175
/// Whether to run Electron APIs and the specified preload script in a separate
176-
/// JavaScript context.Defaults to false. The context that the preload script runs
176+
/// JavaScript context. Defaults to false. The context that the preload script runs
177177
/// in will still have full access to the document and window globals but it will
178178
/// use its own set of JavaScript builtins (Array, Object, JSON, etc.) and will be
179179
/// isolated from any changes made to the global environment by the loaded page.The
@@ -185,8 +185,8 @@ public class WebPreferences
185185
/// Context' entry in the combo box at the top of the Console tab. This option is
186186
/// currently experimental and may change or be removed in future Electron releases.
187187
/// </summary>
188-
[DefaultValue(true)]
189-
public bool ContextIsolation { get; set; } = true;
188+
[DefaultValue(false)]
189+
public bool ContextIsolation { get; set; }
190190

191191
/// <summary>
192192
/// Whether to use native window.open(). Defaults to false. This option is currently experimental.

0 commit comments

Comments
 (0)