mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
[PR #528] [MERGED] Issue/527 #1203
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/ElectronNET/Electron.NET/pull/528
Author: @danatcofo
Created: 1/19/2021
Status: ✅ Merged
Merged: 1/21/2021
Merged by: @GregorBiswanger
Base:
master← Head:issue/527📝 Commits (7)
3ef44cfMerge remote-tracking branch 'ElectronNET/master'12f5eaeExpose Electron members to the service providerce0f3fdDock Menu support300dc49Update the buildAll.sh so that you can run it successfully on a Mac6076c72By blow fix of documentatione941965Support subscribing to unmapped events on App and Tray modules8a0276dAdd ability to enable remote module in browser📊 Changes
20 files changed (+480 additions, -33 deletions)
View changed files
📝
.gitignore(+3 -0)📝
ElectronNET.API/App.cs(+30 -0)📝
ElectronNET.API/Dock.cs(+30 -4)📝
ElectronNET.API/Entities/WebPreferences.cs(+7 -1)➕
ElectronNET.API/Events.cs(+105 -0)➕
ElectronNET.API/ServiceCollectionExtensions.cs(+33 -0)📝
ElectronNET.API/Tray.cs(+30 -0)📝
ElectronNET.Host/api/app.js(+20 -0)📝
ElectronNET.Host/api/app.js.map(+1 -1)📝
ElectronNET.Host/api/app.ts(+20 -0)📝
ElectronNET.Host/api/dock.js(+18 -2)📝
ElectronNET.Host/api/dock.js.map(+1 -1)📝
ElectronNET.Host/api/dock.ts(+24 -3)📝
ElectronNET.Host/api/tray.js(+24 -0)📝
ElectronNET.Host/api/tray.js.map(+1 -1)📝
ElectronNET.Host/api/tray.ts(+24 -0)📝
ElectronNET.WebApp/Startup.cs(+53 -0)📝
ElectronNET.sln(+4 -1)📝
README.md(+14 -1)📝
buildAll.sh(+38 -18)📄 Description
This PR contains a couple different things separated out int different commits.
EnableRemoteModuleproperty to the WebPreferences object. As of Electron 10, this property defaulted to false and without it exposed you can't use the remote module within a window.Example for the Dock Menu
Example for consuming the
activateevent (MacOs only)fix #500
fix #527
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.