개정판 ffddbe4e
issue #660: Version check 로직 수정.
Change-Id: I3f08587b1580063d3cdd57a534490c2f1e60c240
KCOM/MainWindow.xaml.cs | ||
---|---|---|
407 | 407 |
string updateurl = string.Empty; |
408 | 408 |
try |
409 | 409 |
{ |
410 |
updateurl = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetVersionData(Environment.Is64BitProcess, Assembly.GetExecutingAssembly().GetName().Version.ToString()); |
|
410 |
bool is64bit = Environment.Is64BitProcess; |
|
411 |
string clientversion = Assembly.GetExecutingAssembly().GetName().Version.ToString(); |
|
412 |
updateurl = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetVersionData(is64bit, clientversion); |
|
411 | 413 |
|
412 |
if (Check_Uri.UriCheckBool(updateurl))
|
|
414 |
if (Check_Uri.isUri(updateurl))
|
|
413 | 415 |
{ |
414 | 416 |
DialogParameters parameters = new DialogParameters() |
415 | 417 |
{ |
... | ... | |
428 | 430 |
{ |
429 | 431 |
if (e.DialogResult == true) |
430 | 432 |
{ |
431 |
isUpdateCheck = true; |
|
432 |
|
|
433 |
//this.Close(); |
|
433 |
isUpdateCheck = true; |
|
434 | 434 |
} |
435 | 435 |
else |
436 | 436 |
{ |
내보내기 Unified diff