[PR #649] [CLOSED] new version not works #1242

Open
opened 2026-01-29 16:58:50 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ElectronNET/Electron.NET/pull/649
Author: @wthks
Created: 12/29/2021
Status: Closed

Base: masterHead: master


📝 Commits (10+)

📊 Changes

138 files changed (+3930 additions, -3489 deletions)

View changed files

.devops/build-nuget.yaml (+83 -0)
📝 ElectronNET.API/App.cs (+283 -512)
📝 ElectronNET.API/AutoUpdater.cs (+88 -237)
📝 ElectronNET.API/BridgeConnector.cs (+515 -18)
📝 ElectronNET.API/BridgeSettings.cs (+11 -0)
📝 ElectronNET.API/BrowserView.cs (+10 -30)
📝 ElectronNET.API/BrowserWindow.cs (+337 -559)
📝 ElectronNET.API/Clipboard.cs (+24 -117)
📝 ElectronNET.API/CommandLine.cs (+6 -40)
📝 ElectronNET.API/Cookies.cs (+23 -27)
ElectronNET.API/DesktopCapturer.cs (+38 -0)
📝 ElectronNET.API/Dialog.cs (+31 -40)
📝 ElectronNET.API/Dock.cs (+22 -80)
📝 ElectronNET.API/Electron.cs (+41 -1)
📝 ElectronNET.API/ElectronNET.API.csproj (+12 -8)
📝 ElectronNET.API/Entities/BrowserWindowOptions.cs (+49 -32)
📝 ElectronNET.API/Entities/CookieChangedCause.cs (+3 -1)
ElectronNET.API/Entities/CookieRemovedResponse.cs (+10 -0)
📝 ElectronNET.API/Entities/Data.cs (+3 -1)
ElectronNET.API/Entities/DesktopCapturerSource.cs (+15 -0)

...and 80 more files

📄 Description

electron app does not show anymore after update. it only can be shown in localhost:8001


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ElectronNET/Electron.NET/pull/649 **Author:** [@wthks](https://github.com/wthks) **Created:** 12/29/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`916eecf`](https://github.com/ElectronNET/Electron.NET/commit/916eecf117c21b2145c0d55be482ef95422c83e0) Merge branch 'bug/578' - [`d188baa`](https://github.com/ElectronNET/Electron.NET/commit/d188baaaff59bd9ddc77b0fbbccdc8b2fe9404ff) Merge remote-tracking branch 'MiniguyBrendan/master' - [`1a6d50d`](https://github.com/ElectronNET/Electron.NET/commit/1a6d50d77a23b0586b02c18bb0d9c1ce98b3575e) Set up CI with Azure Pipelines - [`f08711e`](https://github.com/ElectronNET/Electron.NET/commit/f08711e41bcac6b7b6173ec97d3b9d94cd70ddf6) Fix variables - [`94b5faa`](https://github.com/ElectronNET/Electron.NET/commit/94b5faafcd71539feda06696988aa696fc0c6575) add publish to nuget - [`468a4fa`](https://github.com/ElectronNET/Electron.NET/commit/468a4fa35b80fc2bac4dc3f012afcccb42e8422a) fix package name - [`505a5b2`](https://github.com/ElectronNET/Electron.NET/commit/505a5b2204d4ec9997875e39a413b15846b386c2) fix NPM install - [`bcbe762`](https://github.com/ElectronNET/Electron.NET/commit/bcbe76211cc3bb04d8e46692dab38eab06350c34) Add option to set electron version - [`3b7b592`](https://github.com/ElectronNET/Electron.NET/commit/3b7b592ac859e18021ff864852385b8e6b1eda14) fix name on resource path - [`2f3d2c0`](https://github.com/ElectronNET/Electron.NET/commit/2f3d2c00b6b0ede17f54c32ef7ec8246874dc7f2) print all resource names ### 📊 Changes **138 files changed** (+3930 additions, -3489 deletions) <details> <summary>View changed files</summary> ➕ `.devops/build-nuget.yaml` (+83 -0) 📝 `ElectronNET.API/App.cs` (+283 -512) 📝 `ElectronNET.API/AutoUpdater.cs` (+88 -237) 📝 `ElectronNET.API/BridgeConnector.cs` (+515 -18) 📝 `ElectronNET.API/BridgeSettings.cs` (+11 -0) 📝 `ElectronNET.API/BrowserView.cs` (+10 -30) 📝 `ElectronNET.API/BrowserWindow.cs` (+337 -559) 📝 `ElectronNET.API/Clipboard.cs` (+24 -117) 📝 `ElectronNET.API/CommandLine.cs` (+6 -40) 📝 `ElectronNET.API/Cookies.cs` (+23 -27) ➕ `ElectronNET.API/DesktopCapturer.cs` (+38 -0) 📝 `ElectronNET.API/Dialog.cs` (+31 -40) 📝 `ElectronNET.API/Dock.cs` (+22 -80) 📝 `ElectronNET.API/Electron.cs` (+41 -1) 📝 `ElectronNET.API/ElectronNET.API.csproj` (+12 -8) 📝 `ElectronNET.API/Entities/BrowserWindowOptions.cs` (+49 -32) 📝 `ElectronNET.API/Entities/CookieChangedCause.cs` (+3 -1) ➕ `ElectronNET.API/Entities/CookieRemovedResponse.cs` (+10 -0) 📝 `ElectronNET.API/Entities/Data.cs` (+3 -1) ➕ `ElectronNET.API/Entities/DesktopCapturerSource.cs` (+15 -0) _...and 80 more files_ </details> ### 📄 Description electron app does not show anymore after update. it only can be shown in localhost:8001 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 16:58:50 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Electron.NET#1242