diff options
author | Thomas Günther <tom@toms-cafe.de> | 2008-04-05 22:23:44 +0200 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2008-04-05 22:23:44 +0200 |
commit | 38cc57b2e3f537d28bb05cf570d3d68f19f2f63a (patch) | |
tree | 1441d2cc68a1520c1f0e0f0ff9efe010b5ae8cdf | |
parent | 4e5312d5a211e35bce5f4fb89a2fe54a43edc9a4 (diff) | |
download | vdr-plugin-sudoku-38cc57b2e3f537d28bb05cf570d3d68f19f2f63a.tar.gz vdr-plugin-sudoku-38cc57b2e3f537d28bb05cf570d3d68f19f2f63a.tar.bz2 |
Set default values for "Show possible numbers as pattern/digits" to No
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | README | 32 | ||||
-rw-r--r-- | setup.cpp | 6 |
3 files changed, 21 insertions, 19 deletions
@@ -47,3 +47,5 @@ ____-__-__: Version 0.2.1 - Fixed crash after exit command (thanks to Ville Skyttä for reporting this). - Updated Finnish language texts (thanks to Ville Skyttä). - Updated Italian language texts (thanks to Diego Pierotto). +- Set default values for "Show possible numbers as pattern/digits" to No, + because of problems with DXR3 (thanks to Ville Skyttä for reporting this). @@ -78,15 +78,15 @@ used to structure the dump, e.g. plus signs after each 9 digits/underlines. Setup: ------ -- Givens count Givens count of the generated puzzles (26-81). - Default is 36. -- Symmetric givens Cells with givens are symmetrically ordered (yes/no). - Default is yes. -- Mark errors Incorrect cells are marked with red color (yes/no). - Default is yes. +- Givens count Givens count of the generated puzzles. + Values: 26-81. Default: 36. +- Symmetric givens Cells with givens are symmetrically ordered. + Values: yes/no. Default: yes. +- Mark errors Incorrect cells are marked with red color. + Values: yes/no. Default: yes. - Mark ambiguous numbers Cells with ambiguous numbers are marked with magenta - color (yes/no). - Default is yes. + color. + Values: yes/no. Default: yes. - Show possible numbers as pattern Show a pattern in all empty cells representing the possible numbers. The pattern is structured by a small @@ -94,15 +94,15 @@ Setup: left to bottom right. If a number is possible in this cell the background of the corresponding grid section is colored. - Default is yes. + Values: yes/no. Default: no. - Show possible numbers as digits (VDR >= 1.5.4) - Show digits in all empty cells representing the possible - numbers (yes/no). - Default is yes. -- Clear marks on reset Unmark all cells when the puzzle is reset (yes/no). - Default is no. -- Transparency (%) Set the transparency of the menu (0-100). - Default is 50. + Show digits in all empty cells representing the + possible numbers. + Values: yes/no. Default: no. +- Clear marks on reset Unmark all cells when the puzzle is reset. + Values: yes/no. Default: no. +- Transparency (%) Set the transparency of the menu. + Values: 0-100. Default: 50. Keys: @@ -17,7 +17,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * $Id: setup.cpp 117 2008-03-21 17:57:50Z tom $ + * $Id: setup.cpp 135 2008-04-05 20:23:44Z tom $ */ #include "setup.h" @@ -39,8 +39,8 @@ SetupData::SetupData() symmetric = 1; mark_errors = 1; mark_ambiguous = 1; - show_possibles_pattern = 1; - show_possibles_digits = 1; + show_possibles_pattern = 0; + show_possibles_digits = 0; clear_marks = 0; transparency = 50; } |