summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-07-12 23:03:13 +0000
committerStijn Buys <ingar@osirion.org>2013-07-12 23:03:13 +0000
commitb494d943fc6330a3b52f7ec173ffbfeaec654bf1 (patch)
treefc001c0f6329cb476986d05e9936f424adc0c220
parent1a75aa1c451f0010cac32e0f441a8f1a2e86d961 (diff)
Renames the resulting binary to 'sudokusolver', updates the README accordingly,
updates the TODO list.
-rw-r--r--README4
-rw-r--r--TODO9
-rw-r--r--src/Makefile.am6
3 files changed, 11 insertions, 8 deletions
diff --git a/README b/README
index c038caa..88794da 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-INGAR'S SUDOKU SOLVER - README
+SUDOKU SOLVER - README
I'm not a fervent sudoku solver but I always wanted to try implementing
a program to solve the puzzles faster than I can. This is my first attempt.
@@ -17,7 +17,7 @@ BUILDING INSTRUCTIONS
../configure
make
- The binary will be called 'sudoku' and be located in the 'src' directory.
+ The binary will be called 'sudokusolver' and be located in the 'src' directory.
You can run it from within the build directory:
src/sudoku
diff --git a/TODO b/TODO
index ac47e11..0ffe961 100644
--- a/TODO
+++ b/TODO
@@ -1,8 +1,10 @@
-INGAR'S SUDOKU SOLVER - TODO
+SUDOKU SOLVER - TODO
- Add Game->Settings (colors, homepath)
- - Fixed homedir business on WIN32 (e.g. use Aplication data)
+ - Add status bar
+ - Fix homedir business on WIN32 (e.g. use Aplication data)
+ - Add windows exe icon
- [SOLVED] Add confirm dialgs on Quit and New
- [SOLVED] Remove sidebar buttons
@@ -11,4 +13,5 @@ INGAR'S SUDOKU SOLVER - TODO
- [SOLVED] Mark invalid input
- [SOLVED] Add Help->About
- [SOLVED] Incorporate validate() into the menu
- - [SOLVED] Incorporate validate() into the menuHave the options in the Move menu call validate() before solving
+ - [SOLVED] Incorporate validate() into the menu
+ - [SOLVED] Have the options in the Move menu call validate() before solving
diff --git a/src/Makefile.am b/src/Makefile.am
index 88b0054..f5a5841 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,7 +1,7 @@
-bin_PROGRAMS = sudoku
+bin_PROGRAMS = sudokusolver
# Project C++ source files
-sudoku_SOURCES = \
+sudokusolver_SOURCES = \
cell.cc \
main.cc \
mainwindow.cc \
@@ -10,7 +10,7 @@ sudoku_SOURCES = \
sudokuwidget.cc
# moc generated C++ source files
-nodist_sudoku_SOURCES = \
+nodist_sudokusolver_SOURCES = \
moc_mainwindow.cc \
moc_solverwindow.cc \
moc_sudokuwidget.cc