-Bug Fix
Ran_agro 제보 루트로 지정했을시 폴더 구분자가 중복되어 에러가 나던 문제 해결
This commit is contained in:
@@ -24,7 +24,7 @@ namespace Mitria_Minecraft_Launcher
|
|||||||
DialogResult result = folderBrowserDialog.ShowDialog();
|
DialogResult result = folderBrowserDialog.ShowDialog();
|
||||||
if(result == DialogResult.OK)
|
if(result == DialogResult.OK)
|
||||||
{
|
{
|
||||||
textBox_GameDirectory.Text = folderBrowserDialog.SelectedPath + "\\Mitria";
|
textBox_GameDirectory.Text = CommonLibrary.Extensions.PathCombineW(folderBrowserDialog.SelectedPath,"Mitria");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -23,9 +23,6 @@ namespace Mitria_Minecraft_Launcher.Updater
|
|||||||
CommonLibrary.Log.INFO("Launcher Version : " + thisVersion);
|
CommonLibrary.Log.INFO("Launcher Version : " + thisVersion);
|
||||||
CommonLibrary.Log.INFO("Remote Launcher Version : " + remoteVersion);
|
CommonLibrary.Log.INFO("Remote Launcher Version : " + remoteVersion);
|
||||||
int result = remoteVersion.CompareTo(thisVersion);
|
int result = remoteVersion.CompareTo(thisVersion);
|
||||||
#if DEBUG
|
|
||||||
result =1;
|
|
||||||
#endif
|
|
||||||
if (result <= 0)
|
if (result <= 0)
|
||||||
{
|
{
|
||||||
CommonLibrary.Log.INFO("Version Same");
|
CommonLibrary.Log.INFO("Version Same");
|
||||||
|
Reference in New Issue
Block a user