summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY6
-rw-r--r--Makefile2
-rw-r--r--backtrack.cpp2
-rw-r--r--backtrack.h2
-rw-r--r--bitmap.cpp2
-rw-r--r--bitmap.h2
-rw-r--r--commands.cpp2
-rw-r--r--commands.h2
-rw-r--r--generator.cpp2
-rw-r--r--generator.h2
-rw-r--r--history.cpp2
-rw-r--r--history.h2
-rw-r--r--i18n.cpp2
-rw-r--r--i18n.h2
-rw-r--r--list.cpp2
-rw-r--r--list.h2
-rw-r--r--menu.cpp2
-rw-r--r--menu.h2
-rw-r--r--po/de_DE.po2
-rw-r--r--po/es_ES.po2
-rw-r--r--po/fi_FI.po2
-rw-r--r--po/fr_FR.po2
-rw-r--r--po/it_IT.po2
-rw-r--r--puzzle.cpp2
-rw-r--r--puzzle.h2
-rw-r--r--setup.cpp2
-rw-r--r--setup.h2
-rw-r--r--solver.cpp2
-rw-r--r--solver.h2
-rw-r--r--sudoku.cpp2
-rw-r--r--sudoku.h2
-rw-r--r--tools/Makefile2
-rw-r--r--tools/sudoku_generator.12
-rw-r--r--tools/sudoku_generator.cpp2
34 files changed, 6 insertions, 66 deletions
diff --git a/HISTORY b/HISTORY
index 1cc42c0..0066937 100644
--- a/HISTORY
+++ b/HISTORY
@@ -85,3 +85,9 @@ VDR plug-in 'Sudoku' Revision History
- Updated French language texts (thanks to NIVAL Michaël).
- Updated Italian language texts (thanks to Diego Pierotto).
- Updated Spanish language texts (thanks to Bittor Corl).
+
+____-__-__: Version 0.3.5
+
+- Moved to http://projects.vdr-developer.org/projects/show/plg-sudoku.
+- Changed repository from subversion to git.
+- Removed subversion keywords ($Id).
diff --git a/Makefile b/Makefile
index 064456a..7ff5b4f 100644
--- a/Makefile
+++ b/Makefile
@@ -16,8 +16,6 @@
# 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.
diff --git a/backtrack.cpp b/backtrack.cpp
index 297c254..028f305 100644
--- a/backtrack.cpp
+++ b/backtrack.cpp
@@ -16,8 +16,6 @@
* 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 7c4dc70..014b13f 100644
--- a/backtrack.h
+++ b/backtrack.h
@@ -16,8 +16,6 @@
* 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
diff --git a/bitmap.cpp b/bitmap.cpp
index aded0a1..d80992e 100644
--- a/bitmap.cpp
+++ b/bitmap.cpp
@@ -16,8 +16,6 @@
* 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 122 2008-03-22 00:38:13Z tom $
*/
#include "bitmap.h"
diff --git a/bitmap.h b/bitmap.h
index c04dfef..c261710 100644
--- a/bitmap.h
+++ b/bitmap.h
@@ -16,8 +16,6 @@
* 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/commands.cpp b/commands.cpp
index e9a9d91..82dca5d 100644
--- a/commands.cpp
+++ b/commands.cpp
@@ -16,8 +16,6 @@
* 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: commands.cpp 142 2008-07-06 15:50:02Z tom $
*/
#include "commands.h"
diff --git a/commands.h b/commands.h
index 2c81c6b..d5414d7 100644
--- a/commands.h
+++ b/commands.h
@@ -16,8 +16,6 @@
* 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: commands.h 142 2008-07-06 15:50:02Z tom $
*/
#ifndef VDR_SUDOKU_COMMANDS_H
diff --git a/generator.cpp b/generator.cpp
index 7c8c295..700a092 100644
--- a/generator.cpp
+++ b/generator.cpp
@@ -16,8 +16,6 @@
* 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 591d16a..0cea81d 100644
--- a/generator.h
+++ b/generator.h
@@ -16,8 +16,6 @@
* 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
diff --git a/history.cpp b/history.cpp
index f715c1f..77b3903 100644
--- a/history.cpp
+++ b/history.cpp
@@ -16,8 +16,6 @@
* 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: history.cpp 140 2008-06-30 22:10:38Z tom $
*/
#include "history.h"
diff --git a/history.h b/history.h
index f2af08f..a1ccf8f 100644
--- a/history.h
+++ b/history.h
@@ -16,8 +16,6 @@
* 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: history.h 140 2008-06-30 22:10:38Z tom $
*/
#ifndef VDR_SUDOKU_HISTORY_H
diff --git a/i18n.cpp b/i18n.cpp
index 8008c84..4b34ccf 100644
--- a/i18n.cpp
+++ b/i18n.cpp
@@ -17,8 +17,6 @@
* 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 164 2008-11-27 00:00:38Z tom $
- *
*
* Translations provided by:
*
diff --git a/i18n.h b/i18n.h
index 1814d9c..30c8dc8 100644
--- a/i18n.h
+++ b/i18n.h
@@ -16,8 +16,6 @@
* 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 117 2008-03-21 17:57:50Z tom $
*/
#ifndef VDR_SUDOKU_I18N_H
diff --git a/list.cpp b/list.cpp
index 81f3dcf..210f3d7 100644
--- a/list.cpp
+++ b/list.cpp
@@ -16,8 +16,6 @@
* 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: list.cpp 161 2008-11-23 00:18:02Z tom $
*/
#include "list.h"
diff --git a/list.h b/list.h
index a2d1c8d..c6a2045 100644
--- a/list.h
+++ b/list.h
@@ -16,8 +16,6 @@
* 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: list.h 114 2008-03-16 22:20:33Z tom $
*/
#ifndef VDR_SUDOKU_LIST_H
diff --git a/menu.cpp b/menu.cpp
index 3e94e68..f982ade 100644
--- a/menu.cpp
+++ b/menu.cpp
@@ -16,8 +16,6 @@
* 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 143 2008-07-26 18:38:59Z tom $
*/
#include "menu.h"
diff --git a/menu.h b/menu.h
index 3ad805c..9626030 100644
--- a/menu.h
+++ b/menu.h
@@ -16,8 +16,6 @@
* 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 142 2008-07-06 15:50:02Z tom $
*/
#ifndef VDR_SUDOKU_MENU_H
diff --git a/po/de_DE.po b/po/de_DE.po
index 159eac8..5d3f248 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -3,8 +3,6 @@
# This file is distributed under the same license as the vdr-sudoku package.
# Thomas Günther <tom@toms-cafe.de>, 2005, 2008.
#
-# $Id: de_DE.po 164 2008-11-27 00:00:38Z tom $
-#
msgid ""
msgstr ""
"Project-Id-Version: vdr-sudoku 0.3.4\n"
diff --git a/po/es_ES.po b/po/es_ES.po
index 85a5060..7cd874c 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -3,8 +3,6 @@
# This file is distributed under the same license as the vdr-sudoku package.
# Bittor Corl <bittor7x0 _at_ gmail.com>, 2007, 2008.
#
-# $Id: es_ES.po 164 2008-11-27 00:00:38Z tom $
-#
msgid ""
msgstr ""
"Project-Id-Version: vdr-sudoku 0.3.4\n"
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 388b8d4..c755b52 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -3,8 +3,6 @@
# This file is distributed under the same license as the vdr-sudoku package.
# Ville Skyttä <ville.skytta@iki.fi>, 2005, 2008.
#
-# $Id: fi_FI.po 164 2008-11-27 00:00:38Z tom $
-#
msgid ""
msgstr ""
"Project-Id-Version: vdr-sudoku 0.3.4\n"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 85e3b60..74149c0 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -4,8 +4,6 @@
# Patrice Staudt <patr.staudt@laposte.net>, 2008.
# NIVAL Michaël <mnival@vdrbox.lautre.net>, 2008.
#
-# $Id: fr_FR.po 164 2008-11-27 00:00:38Z tom $
-#
msgid ""
msgstr ""
"Project-Id-Version: vdr-sudoku 0.3.4\n"
diff --git a/po/it_IT.po b/po/it_IT.po
index 88cf0a4..98ddc32 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -3,8 +3,6 @@
# This file is distributed under the same license as the vdr-sudoku package.
# Diego Pierotto <vdr-italian@tiscali.it>, 2007, 2008.
#
-# $Id: it_IT.po 164 2008-11-27 00:00:38Z tom $
-#
msgid ""
msgstr ""
"Project-Id-Version: vdr-sudoku 0.3.4\n"
diff --git a/puzzle.cpp b/puzzle.cpp
index bdea467..120db9e 100644
--- a/puzzle.cpp
+++ b/puzzle.cpp
@@ -16,8 +16,6 @@
* 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 142 2008-07-06 15:50:02Z tom $
*/
#include "puzzle.h"
diff --git a/puzzle.h b/puzzle.h
index a84366b..ad47cf1 100644
--- a/puzzle.h
+++ b/puzzle.h
@@ -16,8 +16,6 @@
* 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 142 2008-07-06 15:50:02Z tom $
*/
#ifndef VDR_SUDOKU_PUZZLE_H
diff --git a/setup.cpp b/setup.cpp
index 532c9fe..a14a64c 100644
--- a/setup.cpp
+++ b/setup.cpp
@@ -16,8 +16,6 @@
* 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 151 2008-08-29 22:57:35Z tom $
*/
#include "setup.h"
diff --git a/setup.h b/setup.h
index 680ac9e..cc8243a 100644
--- a/setup.h
+++ b/setup.h
@@ -16,8 +16,6 @@
* 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 143 2008-07-26 18:38:59Z tom $
*/
#ifndef VDR_SUDOKU_SETUP_H
diff --git a/solver.cpp b/solver.cpp
index 1632069..b03d63d 100644
--- a/solver.cpp
+++ b/solver.cpp
@@ -16,8 +16,6 @@
* 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 142 2008-07-06 15:50:02Z tom $
*/
#define USE_RAND
diff --git a/solver.h b/solver.h
index 81d8216..cdfb24a 100644
--- a/solver.h
+++ b/solver.h
@@ -16,8 +16,6 @@
* 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
diff --git a/sudoku.cpp b/sudoku.cpp
index 315391e..a81bd5e 100644
--- a/sudoku.cpp
+++ b/sudoku.cpp
@@ -16,8 +16,6 @@
* 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 165 2008-11-29 00:09:41Z tom $
*/
#include "sudoku.h"
diff --git a/sudoku.h b/sudoku.h
index 3958dff..d6494be 100644
--- a/sudoku.h
+++ b/sudoku.h
@@ -16,8 +16,6 @@
* 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 140 2008-06-30 22:10:38Z tom $
*/
#ifndef VDR_SUDOKU_H
diff --git a/tools/Makefile b/tools/Makefile
index eb5f63c..e8f8be8 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -16,8 +16,6 @@
# 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 161 2008-11-23 00:18:02Z tom $
# Define STATIC_LINK=1 to force static linking
#STATIC_LINK = 1
diff --git a/tools/sudoku_generator.1 b/tools/sudoku_generator.1
index 621c417..07b657d 100644
--- a/tools/sudoku_generator.1
+++ b/tools/sudoku_generator.1
@@ -17,8 +17,6 @@
.\" 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.1 165 2008-11-29 00:09:41Z tom $
-.\"
.TH sudoku_generator "1" "November 2008" "sudoku_generator 0.3.4" "User Commands"
.SH NAME
diff --git a/tools/sudoku_generator.cpp b/tools/sudoku_generator.cpp
index 682a239..5f48f50 100644
--- a/tools/sudoku_generator.cpp
+++ b/tools/sudoku_generator.cpp
@@ -16,8 +16,6 @@
* 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 163 2008-11-26 23:53:04Z tom $
*/
#include "../puzzle.h"