[Scummvm-cvs-logs] scummvm master -> 4c16ba6636589d8cb8dccc44022ab13bcfba1115

sev- sev at scummvm.org
Mon Mar 4 09:58:20 CET 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
4c16ba6636 CREDITS: Added NoiZe


Commit: 4c16ba6636589d8cb8dccc44022ab13bcfba1115
    https://github.com/scummvm/scummvm/commit/4c16ba6636589d8cb8dccc44022ab13bcfba1115
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-03-04T00:54:02-08:00

Commit Message:
CREDITS: Added NoiZe

Changed paths:
    AUTHORS
    devtools/credits.pl
    gui/credits.h



diff --git a/AUTHORS b/AUTHORS
index 003fd9a..e6a25b5 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -315,6 +315,8 @@ ScummVM Team
        Benjamin Haisch         - Heavily improved de-/encoder for DXA videos
        Jochen Hoenicke         - Speaker & PCjr sound support, AdLib work
                                  (retired)
+       Daniel ter Laan         - Restoring original Drascula tracks, and
+                                 writing convert_dxa.bat
        Chris Page              - Return to launcher, savestate improvements,
                                  leak fixes, ... (GSoC 2008 task) (retired)
        Robin Watts             - ARM assembly routines for nice speedups on
diff --git a/devtools/credits.pl b/devtools/credits.pl
index 03585a5..06df7fa 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -65,6 +65,7 @@ sub html_entities_to_ascii {
 	# ø  -> o
 	# ö    -> o / oe
 	# ä    -> a
+	# ë    -> e
 	# ü    -> ue
 	# å   -> aa
 	# &     -> &
@@ -82,6 +83,7 @@ sub html_entities_to_ascii {
 	$text =~ s/å/aa/g;
 
 	$text =~ s/ä/a/g;
+	$text =~ s/ë/e/g;
 	$text =~ s/ü/ue/g;
 	# HACK: Torbj*o*rn but G*oe*ffringmann and R*oe*ver and J*oe*rg
 	$text =~ s/Torbjörn/Torbjorn/g;
@@ -108,6 +110,7 @@ sub html_entities_to_cpp {
 	$text =~ s/å/\\345/g;
 
 	$text =~ s/ä/\\344/g;
+	$text =~ s/ë/\\353/g;
 	$text =~ s/ö/\\366/g;
 	$text =~ s/ü/\\374/g;
 
@@ -133,6 +136,7 @@ sub html_entities_to_rtf {
 
 	# Back to hex numbers
 	$text =~ s/ä/\\'8a/g;
+	$text =~ s/ë/\\'eb/g;
 	$text =~ s/ö/\\'9a/g;
 	$text =~ s/ü/\\'9f/g;
 
@@ -156,6 +160,7 @@ sub html_entities_to_tex {
 
 	$text =~ s/ä/\\"a/g;
 	$text =~ s/ö/\\"o/g;
+	$text =~ s/ë/\\"e/g;
 	$text =~ s/ü/\\"u/g;
 
 	$text =~ s/&/\\&/g;
@@ -841,6 +846,7 @@ begin_credits("Credits");
 				add_person("Jerome Fisher", "KingGuppy", "MT-32 emulator");
 				add_person("Benjamin Haisch", "john_doe", "Heavily improved de-/encoder for DXA videos");
 				add_person("Jochen Hoenicke", "hoenicke", "Speaker & PCjr sound support, AdLib work (retired)");
+				add_person("Daniël ter Laan", "NoiZe", "Restoring original Drascula tracks, and writing convert_dxa.bat");
 				add_person("Chris Page", "cp88", "Return to launcher, savestate improvements, leak fixes, ... (GSoC 2008 task) (retired)");
 				add_person("Robin Watts", "robinwatts", "ARM assembly routines for nice speedups on several ports; improvements to the sound mixer");
 			end_section();
diff --git a/gui/credits.h b/gui/credits.h
index da47cb2..81d46b2 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -380,6 +380,9 @@ static const char *credits[] = {
 "C2""Heavily improved de-/encoder for DXA videos",
 "C0""Jochen Hoenicke",
 "C2""Speaker & PCjr sound support, AdLib work (retired)",
+"A0""Daniel ter Laan",
+"C0""Dani\353l ter Laan",
+"C2""Restoring original Drascula tracks, and writing convert_dxa.bat",
 "C0""Chris Page",
 "C2""Return to launcher, savestate improvements, leak fixes, ... (GSoC 2008 task) (retired)",
 "C0""Robin Watts",






More information about the Scummvm-git-logs mailing list