Version 1.2.0

This commit is contained in:
Junior 2024-01-04 22:59:30 -03:00
parent 9b3a0e00a2
commit e74d93fab9
83 changed files with 110087 additions and 47507 deletions

View file

@ -6,7 +6,7 @@ public class Configuration
public static readonly Configuration Default = new();
private readonly IniFile iniFile = new(DefaultIniFilePath);
public readonly IniFile iniFile = new(DefaultIniFilePath);
public Configuration()
{
@ -27,6 +27,10 @@ public class Configuration
LauncherNewsUrl = $"{apiUrl}/launcher/news";
AgreementUrl = $"{apiUrl}/launcher/agreement";
//Client download endpoints
ClientPartsListUrl = $"{apiUrl}/launcher/client/download/filelist.txt";
DownloadClientPartUrl = $"{apiUrl}/launcher/client/download";
//Client update endpoints
FileListUrl = $"{apiUrl}/launcher/patch/filelist.txt";
DownloadUpdateFileUrl = $"{apiUrl}/launcher/patch";
@ -55,6 +59,8 @@ public class Configuration
public string GetLauncherVersion { get; set; }
public string UpdateLauncherVersion { get; set; }
public string DownloadUpdateFileUrl { get; set; }
public string ClientPartsListUrl { get; set; }
public string DownloadClientPartUrl { get; set; }
public string Lang { get; set; }
}