We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f9fad8 commit 0b60a4cCopy full SHA for 0b60a4c
Meowlicious/Utils/AutoUpdater.cs
@@ -1,11 +1,12 @@
1
using System.Threading.Tasks;
2
using Velopack;
3
+using Velopack.Sources;
4
5
namespace Meowlicious.Utils
6
{
7
public class AutoUpdater
8
- public static UpdateManager UpdateManager = new(Constants.GitHubRepoUrl);
9
+ public static UpdateManager UpdateManager = new UpdateManager(new GithubSource(Constants.GitHubRepoUrl, null, false));
10
public static UpdateInfo? NewVersion;
11
public static bool UpdateAvailable => NewVersion != null;
12
0 commit comments