Electron.NET icon indicating copy to clipboard operation
Electron.NET copied to clipboard

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

Open edotappstore opened this issue 3 years ago • 2 comments

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<IHubContext>().Clients.All.SendAsync("ReceiveDownloadProgress", percentage.ToString(), downloadspeedinmb, transfereedinmb, totalsizeinmb); };

edotappstore avatar Jul 28 '22 05:07 edotappstore

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:

  • https://github.com/electron-userland/electron-builder/issues/4919
  • https://github.com/Cypherock/cypherock-cysync/pull/259

I will keep trying to solve

arthurvalentereis avatar Apr 24 '24 20:04 arthurvalentereis

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

Matsu-v avatar Jun 23 '24 14:06 Matsu-v

Outdated - use ElectronNET.Core and ElectronNET.Core.AspNet.

See Wiki / What's New.

FlorianRappl avatar Oct 31 '25 17:10 FlorianRappl