diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | Makefile | 20 | ||||
-rw-r--r-- | README | 31 | ||||
-rw-r--r-- | backtrack.cpp | 20 | ||||
-rw-r--r-- | backtrack.h | 20 | ||||
-rw-r--r-- | bitmap.cpp | 20 | ||||
-rw-r--r-- | bitmap.h | 20 | ||||
-rw-r--r-- | generator.cpp | 20 | ||||
-rw-r--r-- | generator.h | 20 | ||||
-rw-r--r-- | i18n.cpp | 20 | ||||
-rw-r--r-- | i18n.h | 20 | ||||
-rw-r--r-- | menu.cpp | 20 | ||||
-rw-r--r-- | menu.h | 20 | ||||
-rw-r--r-- | puzzle.cpp | 20 | ||||
-rw-r--r-- | puzzle.h | 20 | ||||
-rw-r--r-- | setup.cpp | 20 | ||||
-rw-r--r-- | setup.h | 20 | ||||
-rw-r--r-- | solver.cpp | 20 | ||||
-rw-r--r-- | solver.h | 20 | ||||
-rw-r--r-- | sudoku.cpp | 20 | ||||
-rw-r--r-- | sudoku.h | 20 | ||||
-rw-r--r-- | tools/Makefile | 20 | ||||
-rw-r--r-- | tools/sudoku_generator.cpp | 20 |
23 files changed, 380 insertions, 72 deletions
@@ -28,3 +28,4 @@ ____-__-__: Version _._._ - Added gettext support (VDR >= 1.5.7). - Fixed compiler warnings with gcc-4.1.2. - Updated FSF address in the license information. +- Improved copyright and license information in the header of all source files. @@ -1,9 +1,23 @@ # -# Sudoku: A plugin for the Video Disk Recorder +# Sudoku: A plug-in for the Video Disk Recorder # -# See the README file for copyright information and how to reach the author. +# Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> # -# $Id: Makefile 102 2007-12-03 22:10:04Z tom $ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# $Id: Makefile 106 2007-12-03 23:28:24Z tom $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -1,12 +1,25 @@ -This is a "plugin" for the Video Disk Recorder (VDR). +Sudoku: A plug-in for the Video Disk Recorder +--------------------------------------------- -Written by: Thomas Günther <tom@toms-cafe.de> +Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> -Project's homepage: http://toms-cafe.de/vdr/sudoku +Project's homepage: http://toms-cafe.de/vdr/sudoku -Latest version available at: http://toms-cafe.de/vdr/sudoku +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. -See the file COPYING for license information. +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +See the file COPYING for the full license information. Requirements: @@ -18,7 +31,7 @@ Requirements: Description: ------------ -'Sudoku' is a VDR plugin to generate and solve Number Place puzzles, so called +'Sudoku' is a VDR plug-in to generate and solve Number Place puzzles, so called Sudokus. A Sudoku puzzle consists of 9 x 9 cells subdivided into 9 regions with 3 x 3 @@ -28,7 +41,7 @@ painted with cyan background color. The aim of the puzzle is to find the missing numbers. There is only one solution of a Sudoku puzzle. The Sudoku puzzles are generated on-the-fly. The number of givens can be set in -the plugin's setup page down to a minimum of 26 givens. The generation of +the plug-in's setup page down to a minimum of 26 givens. The generation of puzzles with less than 26 givens takes too long. By default the cells with givens are symmetrically ordered. But this can be disabled in the setup. @@ -39,7 +52,7 @@ background color. With the yellow key the cursor is moved to the next free cell with minimal possible numbers. The red key set the next possible number for the current cell. -Each time the plugin is started from the main menu the same puzzle is shown. A +Each time the plug-in is started from the main menu the same puzzle is shown. A new puzzle is only generated on VDR startup or if it has been requested by pressing the blue key. This key has two functions. If no numbers are set a new puzzle is generated. Otherwise all numbers are reset so that only the givens are @@ -77,7 +90,7 @@ Keys: reset the number if greater numbers are not possible. - Blue Reset the puzzle (if some numbers set). Start a new puzzle (if no numbers set). -- Back Quit the plugin. +- Back Quit the plug-in. Cell colors: diff --git a/backtrack.cpp b/backtrack.cpp index 963724a..297c254 100644 --- a/backtrack.cpp +++ b/backtrack.cpp @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: backtrack.cpp 11 2005-10-28 01:00:01Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: backtrack.cpp 106 2007-12-03 23:28:24Z tom $ */ #include "backtrack.h" diff --git a/backtrack.h b/backtrack.h index 92ff688..7c4dc70 100644 --- a/backtrack.h +++ b/backtrack.h @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: backtrack.h 18 2005-11-03 21:48:08Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: backtrack.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_BACKTRACK_H @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: bitmap.cpp 27 2006-04-25 00:08:15Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: bitmap.cpp 106 2007-12-03 23:28:24Z tom $ */ #include "bitmap.h" @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: bitmap.h 27 2006-04-25 00:08:15Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: bitmap.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_BITMAP_H diff --git a/generator.cpp b/generator.cpp index 47e5e35..7c8c295 100644 --- a/generator.cpp +++ b/generator.cpp @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: generator.cpp 11 2005-10-28 01:00:01Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: generator.cpp 106 2007-12-03 23:28:24Z tom $ */ #define USE_RAND diff --git a/generator.h b/generator.h index 8266b84..591d16a 100644 --- a/generator.h +++ b/generator.h @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: generator.h 11 2005-10-28 01:00:01Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: generator.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_GENERATOR_H @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: i18n.cpp 102 2007-12-03 22:10:04Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: i18n.cpp 106 2007-12-03 23:28:24Z tom $ * * * Translations provided by: @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: i18n.h 102 2007-12-03 22:10:04Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: i18n.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_I18N_H @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: menu.cpp 103 2007-12-03 22:26:42Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: menu.cpp 106 2007-12-03 23:28:24Z tom $ */ #include "menu.h" @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: menu.h 27 2006-04-25 00:08:15Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: menu.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_MENU_H @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: puzzle.cpp 16 2005-10-31 21:12:41Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: puzzle.cpp 106 2007-12-03 23:28:24Z tom $ */ #include "puzzle.h" @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: puzzle.h 16 2005-10-31 21:12:41Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: puzzle.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_PUZZLE_H @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: setup.cpp 19 2005-11-03 21:54:19Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * 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 106 2007-12-03 23:28:24Z tom $ */ #include "setup.h" @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: setup.h 19 2005-11-03 21:54:19Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: setup.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_SETUP_H @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: solver.cpp 11 2005-10-28 01:00:01Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: solver.cpp 106 2007-12-03 23:28:24Z tom $ */ #define USE_RAND @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: solver.h 18 2005-11-03 21:48:08Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: solver.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_SOLVER_H @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: sudoku.cpp 102 2007-12-03 22:10:04Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: sudoku.cpp 106 2007-12-03 23:28:24Z tom $ */ #include "sudoku.h" @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: sudoku.h 11 2005-10-28 01:00:01Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: sudoku.h 106 2007-12-03 23:28:24Z tom $ */ #ifndef VDR_SUDOKU_H diff --git a/tools/Makefile b/tools/Makefile index 3dbc685..ca9f65a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,9 +1,23 @@ # -# Sudoku: A plugin for the Video Disk Recorder +# Sudoku: A plug-in for the Video Disk Recorder # -# See the README file for copyright information and how to reach the author. +# Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> # -# $Id: Makefile 28 2006-04-25 00:09:14Z tom $ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# $Id: Makefile 106 2007-12-03 23:28:24Z tom $ # Define STATIC_LINK=1 to force static linking #STATIC_LINK = 1 diff --git a/tools/sudoku_generator.cpp b/tools/sudoku_generator.cpp index a0d3e4b..621440e 100644 --- a/tools/sudoku_generator.cpp +++ b/tools/sudoku_generator.cpp @@ -1,9 +1,23 @@ /* - * Sudoku: A plugin for the Video Disk Recorder + * Sudoku: A plug-in for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2005-2007, Thomas Günther <tom@toms-cafe.de> * - * $Id: sudoku_generator.cpp 11 2005-10-28 01:00:01Z tom $ + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * $Id: sudoku_generator.cpp 106 2007-12-03 23:28:24Z tom $ */ #include "../puzzle.h" |