Skip to content

Commit

Permalink
Main form and functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Manbocoon committed Jun 23, 2022
1 parent 5a2169c commit a9e94c1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1638,8 +1638,7 @@ private void check_version_Click(object sender, EventArgs e)

data = data.Remove(0, data.IndexOf('<') + 1);
data = data.Remove(0, data.IndexOf(' ') + 1);
data = data.Remove(data.IndexOf('·') - 1, data.Length - data.IndexOf('·') + 1);
data = data.Remove(0, 8);
data = data.Remove(data.IndexOf('·') - 1, data.Length - data.IndexOf('·') + 1);

DialogResult user_input = MessageBox.Show("현재 버전: " + app_version + "\r\n최신 버전: " + data + "\r\n\r\n최신버전 파일이 올려진 사이트로 이동할까요?", "알림", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

Expand Down

0 comments on commit a9e94c1

Please sign in to comment.