업데이트 분리 작업

- 패키지 업데이트 분리 작업
- 라이센스 정리 작업
- 타겟 프레임워크 정리
This commit is contained in:
2025-09-05 17:51:06 +09:00
parent 4f0f099c91
commit 513d841f80
17 changed files with 79 additions and 127 deletions

View File

@@ -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;