업데이트 분리 작업
- 패키지 업데이트 분리 작업 - 라이센스 정리 작업 - 타겟 프레임워크 정리
This commit is contained in:
@@ -118,11 +118,11 @@ namespace Mitria_Minecraft_Launcher
|
||||
}
|
||||
}
|
||||
|
||||
private void GameUpdateManager_GameUpdateManagerMessage(object sender, Updater.GameUpdateManagerMessageEventArgs e)
|
||||
private void GameUpdateManager_GameUpdateManagerMessage(object sender, GameUpdateManagerMessageEventArgs e)
|
||||
{
|
||||
switch (e.MessageType)
|
||||
{
|
||||
case Updater.GameUpdateManagerMessageType.First:
|
||||
case GameUpdateManagerMessageType.First:
|
||||
this.Invoke(new MethodInvoker(
|
||||
delegate ()
|
||||
{
|
||||
@@ -139,7 +139,7 @@ namespace Mitria_Minecraft_Launcher
|
||||
|
||||
break;
|
||||
|
||||
case Updater.GameUpdateManagerMessageType.Second:
|
||||
case GameUpdateManagerMessageType.Second:
|
||||
this.Invoke(new MethodInvoker(delegate ()
|
||||
{
|
||||
label_Second.Text = "[" + e.MinValue.UnitSeparator() + "/" + e.MaxValue.UnitSeparator() + "]";
|
||||
@@ -149,7 +149,7 @@ namespace Mitria_Minecraft_Launcher
|
||||
}));
|
||||
break;
|
||||
|
||||
case Updater.GameUpdateManagerMessageType.Message:
|
||||
case GameUpdateManagerMessageType.Message:
|
||||
this.Invoke(new MethodInvoker(delegate ()
|
||||
{
|
||||
textBox_ProgressLog.Text += e.Message + Environment.NewLine;
|
||||
|
Reference in New Issue
Block a user