ElectronNET / Electron.NET

:electron: Build cross platform desktop apps with ASP.NET Core (Razor Pages, MVC, Blazor).
https://gitter.im/ElectronNET/community
MIT License
7.2k stars 719 forks source link

Electron.AutoUpdater.OnDownloadProgress not getting called during differential update download #715

Open edotappstore opened 2 years ago

edotappstore commented 2 years ago

We are using SignalR package to show the download progress to our electron desktop application. But it was found that the Electron.AutoUpdater.OnDownloadProgress was not getting called during differential update download after Electron.AutoUpdater.DownloadUpdateAsync(); was called.

electron1

However after deleting all the files inside C:\Users\username\AppData\Local\electron-updater and calling DownloadUpdateAsync(); the OnDownloadProgress works. electron3

electron2

Electron Package: ElectronNET.API Version:13.5.1

.Net Version: 5.0 Node Version: v14.15.0

Electron.AutoUpdater.OnDownloadProgress += async (info) => { var percentage = Math.Round(Convert.ToDouble(info.Percent), 1); var totalsizeinmb = FormatSize(Convert.ToInt64(info.Total), "MB"); var downloadspeedinmb = FormatSize(Convert.ToInt64(info.BytesPerSecond), "MB"); var transfereedinmb = FormatSize(Convert.ToInt64(info.Transferred), "MB"); Console.WriteLine("percentage: " + percentage + "totalSize: " + totalsizeinmb + "downloadspeed: " + downloadspeedinmb + "transferSpeed: " + transfereedinmb); await app.ApplicationServices.GetRequiredService().Clients.All.SendAsync("ReceiveDownloadProgress", percentage.ToString(), downloadspeedinmb, transfereedinmb, totalsizeinmb); };

arthurvalentereis commented 3 months ago

I have the same problem, is there any solution? When I manually delete installer.exe it works for me too. I'm researching this and found this:

I will keep trying to solve

Matsu-v commented 1 month ago

Is there any solution yet? As far as I could find it looks like that when updating with differential updater the messages will not emit. There is this package that fixes that for electron, maybe worth a shot to implement it in electron.NET? Electron Differential Updater