-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathUpdateChecker.cs
30 lines (27 loc) · 1022 Bytes
/
UpdateChecker.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace PatreonDownloader.App
{
internal class UpdateChecker
{
private readonly HttpClient _httpClient;
private const string UpdateUrl = "https://alexcsdev.github.io/pd_version.txt";
public UpdateChecker()
{
_httpClient = new HttpClient();
}
public async Task<(bool, string)> IsNewVersionAvailable()
{
string[] remoteVersionData = (await _httpClient.GetStringAsync(UpdateUrl)).Split("|");
string remoteVersion = remoteVersionData[0];
string message = remoteVersionData.Length > 1 ? remoteVersionData[1] : null;
Version currentVersion = Assembly.GetEntryAssembly().GetName().Version;
return (remoteVersion != currentVersion.Major.ToString(), !string.IsNullOrWhiteSpace(message) ? message : null);
}
}
}