Update Module
- 백신 회피를 위한 런처 수정
This commit is contained in:
@@ -23,13 +23,14 @@ namespace Mitria_Minecraft_Updater
|
||||
|
||||
config.LauncherSource = "/Launcher";
|
||||
config.LauncherUrl = "/Launcher";
|
||||
config.LauncherFileName = "MitriaMLauncher.exe";
|
||||
config.LauncherSourceFileName = "MitriaMLauncher.exe";
|
||||
config.LauncherFileName = "MitriaMLauncher.pack";
|
||||
config.RuntimeSource = "/Runtime";
|
||||
config.RuntimeUrl = "/Data/Runtime";
|
||||
config.RuntimeFilename = "Runtime.pack";
|
||||
config.RuntimeFileName = "Runtime.pack";
|
||||
config.PackageSource = "/Package";
|
||||
config.PackageUrl = "/Data/Package";
|
||||
config.PackageFilename = "Package.pack";
|
||||
config.PackageFileName = "Package.pack";
|
||||
config.ComponentSource = "/Component";
|
||||
config.ComponentUrl = "/Data/Component";
|
||||
}
|
||||
@@ -111,9 +112,9 @@ namespace Mitria_Minecraft_Updater
|
||||
dataPatchInformation.ComponentList = new System.Collections.Generic.List<CommonLibrary.FileDetail>();
|
||||
}
|
||||
dataPatchInformation.RuntimeUrl = config.RuntimeUrl;
|
||||
dataPatchInformation.RuntimeFileName = config.RuntimeFilename;
|
||||
dataPatchInformation.RuntimeFileName = config.RuntimeFileName;
|
||||
dataPatchInformation.PackageUrl = config.PackageUrl;
|
||||
dataPatchInformation.PackageFileName = config.PackageFilename;
|
||||
dataPatchInformation.PackageFileName = config.PackageFileName;
|
||||
dataPatchInformation.ComponentUrl = config.ComponentUrl;
|
||||
|
||||
return dataPatchInformation;
|
||||
@@ -142,15 +143,16 @@ namespace Mitria_Minecraft_Updater
|
||||
public string InformationToServer { get; set; }
|
||||
public string LauncherSource { get; set; } // {Source}/Launcher
|
||||
public string LauncherUrl { get; set; } // {Target}/Launcher
|
||||
public string LauncherSourceFileName { get; set; }
|
||||
public string LauncherFileName { get; set; } // 런처 파일이름
|
||||
|
||||
public string RuntimeSource { get; set; } // {Source}/Runtime
|
||||
public string RuntimeUrl { get; set; } // {Target}/Runtime
|
||||
public string RuntimeFilename { get; set; } // Runtime.pack
|
||||
public string RuntimeFileName { get; set; } // Runtime.pack
|
||||
|
||||
public string PackageSource { get; set; } // {Source}/Package
|
||||
public string PackageUrl { get; set; } // {Target}/Package
|
||||
public string PackageFilename { get; set; } // Package.pack
|
||||
public string PackageFileName { get; set; } // Package.pack
|
||||
|
||||
public string ComponentSource { get; set; } // {Source}/GameFile
|
||||
public string ComponentUrl { get; set; } // {Target}/GameFile
|
||||
|
Reference in New Issue
Block a user