mirror of
https://github.com/JuniorDark/RustyHearts-Launcher.git
synced 2026-05-07 05:21:44 -04:00
Version 1.2.0
This commit is contained in:
parent
9b3a0e00a2
commit
e74d93fab9
83 changed files with 110087 additions and 47507 deletions
|
|
@ -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; }
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue