Skip to content

Commit

Permalink
Update V1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Potato-Y committed Aug 21, 2020
1 parent cec9990 commit 55f9b61
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private void win_Click(object sender, EventArgs e)
savedata += "\r\n";
}
match++;
textBox1.Text += match + "번째 판, " + comboBox1.Text + " 승리";
textBox1.Text += DateTime.Now.ToString("[hh시mm분] ") + match + "번째 판, " + comboBox1.Text + " '승리'";
myscore++;
if (myscore >= 10)
{
Expand Down Expand Up @@ -235,7 +235,7 @@ private void lose_Click(object sender, EventArgs e)
savedata += "\r\n";
}
match++;
textBox2.Text += match + "번째 판, " + comboBox1.Text + " '승리'";
textBox2.Text += DateTime.Now.ToString("[hh시mm분] ") + match + "번째 판, " + comboBox1.Text + " '승리'";
yourscore++;
label5.Text = Convert.ToString(yourscore);
label8.Text = Convert.ToString(match);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,11 @@ private void Save_Content_Click(object sender, EventArgs e)
private void Win_Button_Click(object sender, EventArgs e)
{
myTeamScore++;
if (myTeamScore != 0 || rivalTeamScore != 0)
if (myTeamScore != 0 && rivalTeamScore != 0)
{
textBox2.Text += "\r\n";
}
textBox2.Text += comboBox1.Text + " '승리' " + myTeamScore + ":" + rivalTeamScore;
textBox2.Text += DateTime.Now.ToString("[hh시mm분]") + comboBox1.Text + " '승리' " + myTeamScore + ":" + rivalTeamScore;
this.textBox2.SelectionStart = textBox2.Text.Length;
this.textBox2.ScrollToCaret();

Expand All @@ -218,11 +218,11 @@ private void Win_Button_Click(object sender, EventArgs e)
private void lose_Button_Click(object sender, EventArgs e)
{
rivalTeamScore++;
if (myTeamScore != 0 || rivalTeamScore != 0)
if (myTeamScore != 0 && rivalTeamScore != 0)
{
textBox2.Text += "\r\n";
}
textBox2.Text += comboBox1.Text + " '패배' " + myTeamScore + ":" + rivalTeamScore;
textBox2.Text += DateTime.Now.ToString("[hh시mm분]") + comboBox1.Text + " '패배' " + myTeamScore + ":" + rivalTeamScore;
this.textBox2.SelectionStart = textBox2.Text.Length;
this.textBox2.ScrollToCaret();

Expand Down
2 changes: 1 addition & 1 deletion Game Utility App/MainForm/Setting/MainSetting.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Game Utility App/Notice/Patch notes.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Game Utility App/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.3.0")]
[assembly: AssemblyFileVersion("1.5.3.0")]
[assembly: AssemblyVersion("1.5.4.0")]
[assembly: AssemblyFileVersion("1.5.4.0")]

0 comments on commit 55f9b61

Please sign in to comment.