ravibpatel / AutoUpdater.NET

AutoUpdater.NET is a class library that allows .NET developers to easily add auto update functionality to their classic desktop application projects.
MIT License
3.09k stars 771 forks source link

Could it be possible to remove the "No new update. Retry later" type messagebox for a silent check #718

Closed roscofil closed 3 weeks ago

roscofil commented 3 weeks ago

I am successfully using the forced install so that new versions get installed ok. Only thing that bothers me a bit is to see the "No new updates available" messagebox when starting the application. Could there be a way to optionally disable displaying this messagebox? Looks like it's located in lines 542+ in AutoUpdater.cs...So, for now, should I just comment these lines out? Thx

ravibpatel commented 3 weeks ago

Set ReportErrors to false and it should be silent.

roscofil commented 3 weeks ago

Thank you!