Skip to content

Latest commit

 

History

History
109 lines (70 loc) · 3.79 KB

CHANGELOG.md

File metadata and controls

109 lines (70 loc) · 3.79 KB

0.0.12 (27-05-2022)

Populated:

  • Data dictionary

image

0.0.11 (16-05-2022)

Added:

  • DFD diagram

Fixed:

  • Context diagram visibility for light mode users 💀

0.0.10 (11-03-2022)

WIP:

  • Printable score board created but requires additional work.

Added:

  • Gantt Chart
  • Changed some links in the readme.md

0.0.9 (9-03-2022)

Added:

  • Help ('how to play') page populated

- ReturnAns() function added to allow users to undo an answer selection by clicking an answer.

HSCSDD-T2-4P1W/4P1W/Game.cs

Lines 322 to 358 in 0f85c4c

public void returnAns(Button c)
{
// checks for an empty guess btn, and fills from left to right when a answer is clicked
if (g1.Text.Equals(""))
{
g1.Text = c.Text;
}
else if (g2.Text.Equals(""))
{
g2.Text = c.Text;
}
else if (g3.Text.Equals(""))
{
g3.Text = c.Text;
}
else if (g4.Text.Equals(""))
{
g4.Text = c.Text;
}
else if (g5.Text.Equals(""))
{
g5.Text = c.Text;
}
else if (g6.Text.Equals(""))
{
g6.Text = c.Text;
}
else if (g7.Text.Equals(""))
{
g7.Text = c.Text;
}
else if (g8.Text.Equals(""))
{
g8.Text = c.Text;
}
}

0.0.8 (8-03-2022)

Fixed/Added:

  • Method to add random letters into empty guess boxes when a word is < 8 characters long.
    // Filling in empty user guess boxes
    string wordWithExtras = word[index];
    while (wordWithExtras.Length < 8)
    {
    wordWithExtras = wordWithExtras + (char)random.Next('a', 'z');
    }

0.0.7 (2-03-2022)

Documentation added:

WIP:

  • Method to add random letters into unfilled guess boxes when a word is < 8 characters long, Currenly non functional causing game to crash...

0.0.6 (25-02-2022)

Documentation added:

0.0.5 (16-02-2022)

Documentation added:

0.0.4 (3-01-2022)

Features added:

  • Clear function created, clicking answer buttons to return the letter still WIP.

0.0.3 (14-12-2021)

Backend started:

  • Character ranomisation, and basic game mechanics started.

0.0.2 (14-12-2021)

Form Created:

  • form created and UI inserted.

0.0.1 (13-12-2021)

Repo initialization: