diff --git a/README.md b/README.md index eca8dbb..42c00e9 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,6 @@ Out of the well known [Sudoku Solving Techniques](https://sudoku9x9.com/sudoku_s * Naked Pair * Naked Triple * Naked Quad +* Hidden Pair +* Hidden Triple +* Hidden Quad diff --git a/SimpleSudokuSolver.UI/MainWindow.xaml b/SimpleSudokuSolver.UI/MainWindow.xaml index 04a86fb..6e35341 100644 --- a/SimpleSudokuSolver.UI/MainWindow.xaml +++ b/SimpleSudokuSolver.UI/MainWindow.xaml @@ -5,9 +5,9 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="clr-namespace:SimpleSudokuSolver.UI" mc:Ignorable="d" - Title="Sudoku" Height="610" Width="550" + Title="Sudoku" Height="634" Width="566" WindowStartupLocation="CenterScreen" ResizeMode="NoResize" - WindowStyle="ToolWindow"> + WindowStyle="SingleBorderWindow"> diff --git a/SimpleSudokuSolver.UI/Properties/AssemblyInfo.cs b/SimpleSudokuSolver.UI/Properties/AssemblyInfo.cs index 6bcf7b7..9a32a35 100644 --- a/SimpleSudokuSolver.UI/Properties/AssemblyInfo.cs +++ b/SimpleSudokuSolver.UI/Properties/AssemblyInfo.cs @@ -55,6 +55,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.6.0.0")] -[assembly: AssemblyFileVersion("0.6.0.0")] -[assembly: AssemblyInformationalVersion("0.6.0.0")] +[assembly: AssemblyVersion("0.7.0.0")] +[assembly: AssemblyFileVersion("0.7.0.0")] +[assembly: AssemblyInformationalVersion("0.7.0.0")] diff --git a/SimpleSudokuSolver.UI/SimpleSudokuSolver.UI.csproj b/SimpleSudokuSolver.UI/SimpleSudokuSolver.UI.csproj index 5f89345..b6f13e8 100644 --- a/SimpleSudokuSolver.UI/SimpleSudokuSolver.UI.csproj +++ b/SimpleSudokuSolver.UI/SimpleSudokuSolver.UI.csproj @@ -34,6 +34,9 @@ prompt 4 + + icon.ico + @@ -104,5 +107,8 @@ SimpleSudokuSolver + + + \ No newline at end of file diff --git a/SimpleSudokuSolver.UI/SudokuBoard.xaml b/SimpleSudokuSolver.UI/SudokuBoard.xaml index 6a8fd95..72c4db2 100644 --- a/SimpleSudokuSolver.UI/SudokuBoard.xaml +++ b/SimpleSudokuSolver.UI/SudokuBoard.xaml @@ -7,16 +7,59 @@ mc:Ignorable="d" d:DesignHeight="540" d:DesignWidth="540"> - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SimpleSudokuSolver.UI/icon.ico b/SimpleSudokuSolver.UI/icon.ico new file mode 100644 index 0000000..ce9b3c7 Binary files /dev/null and b/SimpleSudokuSolver.UI/icon.ico differ diff --git a/SimpleSudokuSolver/SimpleSudokuSolver.csproj b/SimpleSudokuSolver/SimpleSudokuSolver.csproj index 115f188..843b80a 100644 --- a/SimpleSudokuSolver/SimpleSudokuSolver.csproj +++ b/SimpleSudokuSolver/SimpleSudokuSolver.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.6.0 + 0.7.0 Robert Kurtanjek MIT https://github.com/kurtanr/SimpleSudokuSolver diff --git a/images/SimpleSudokuSolver.UI.png b/images/SimpleSudokuSolver.UI.png index d313a18..ee878a2 100644 Binary files a/images/SimpleSudokuSolver.UI.png and b/images/SimpleSudokuSolver.UI.png differ