AutoUpdater.NET
AutoUpdater.NET copied to clipboard
AutoUpdater.NET is a class library that allows .NET developers to easily add auto update functionality to their classic desktop application projects.
Took a while but if you use a different port number in your url, webview needs to be unblocked for a different port number in your firewall, webview uses port...
Hi, I added a static property Timeout to the AutoUpdater class to configure the timeout in milliseconds for web requests made by WebClient, with a default value of 100,000 ms....
https://github.com/ravibpatel/AutoUpdater.NET/blob/f3f1bf2d756e7255c70c7b6f8aac744a0ecf631e/AutoUpdater.NET/DownloadUpdateDialog.cs#L247
My App get always cached changelog, when normal browser get last update, is possible setup something to avoid cache for changelog? Or something like changelog link + ? unixdatetime to...
This is the app configuration: ```csharp AutoUpdater.RunUpdateAsAdmin = true; AutoUpdater.Synchronous = true; AutoUpdater.Mandatory = true; AutoUpdater.UpdateMode = Mode.Forced; AutoUpdater.DownloadPath = Application.StartupPath; AutoUpdater.InstalledVersion = Assembly.GetExecutingAssembly().GetName().Version; ``` When trying to update automatically,...
Summary When a handler is attached to AutoUpdater.ParseUpdateInfoEvent — even if only for logging or inspection — the built-in XML deserialization logic is bypassed, causing UpdateInfoEventArgs to remain null unless...
When I store changelog.txt and update packages on HFS, the update packages download normally, but when displaying the update log, it still prompts for a username and password. What is...
Would be nice to have a rollback scenario available where we can downgrade to a lower version again if something turns out to be not working in the latest version....
- - code ``` c# private void button1_Click(object sender, EventArgs e) { AutoUpdater.DownloadPath = Application.StartupPath; AutoUpdater.ReportErrors = true; AutoUpdater.LetUserSelectRemindLater = false; AutoUpdater.RemindLaterTimeSpan = RemindLaterFormat.Days; AutoUpdater.RemindLaterAt = 2; AutoUpdater.OpenDownloadPage = true;...
Introduces a 'Silent' property to AutoUpdater for hiding the download dialog. When enabled, the DownloadUpdateDialog is minimized, hidden from the taskbar, and not visible, allowing updates to proceed without user...