[Scummvm-cvs-logs] scummvm master -> 6d18bddbb5d2b6f61edbf6a1b7014ca1fbca81a9

sev- sev at scummvm.org
Fri Jul 20 20:54:24 CEST 2012


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:
6d18bddbb5 CREDITS: Credits for original sources


Commit: 6d18bddbb5d2b6f61edbf6a1b7014ca1fbca81a9
    https://github.com/scummvm/scummvm/commit/6d18bddbb5d2b6f61edbf6a1b7014ca1fbca81a9
Author: Eugene Sandulenko (sev.mail at gmail.com)
Date: 2012-07-20T11:52:39-07:00

Commit Message:
CREDITS: Credits for original sources

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



diff --git a/AUTHORS b/AUTHORS
index 387c602..7272d6b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -597,3 +597,10 @@ Special thanks to
    Broken Sword 2.5 team for providing sources of their engine and their
    great support.
 
+   Neil Dodwell and David Dew from Creative Reality for providing the source
+   of Dreamweb and for their tremendous support.
+
+   Janusz Wisniewski and Miroslaw Liminowicz from Laboratorium Komputerowe
+   Avalon for providing full source code for Soltys and letting us to
+   redistribute the game.
+
diff --git a/devtools/credits.pl b/devtools/credits.pl
index 411ec3c..7a77666 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -69,6 +69,7 @@ sub html_entities_to_ascii {
 	# å   -> aa
 	# &     -> &
 	# ł    -> l
+	# ś    -> s
 	# Š  -> S
 	$text =~ s/á/a/g;
 	$text =~ s/é/e/g;
@@ -76,6 +77,7 @@ sub html_entities_to_ascii {
 	$text =~ s/ó/o/g;
 	$text =~ s/ø/o/g;
 	$text =~ s/ł/l/g;
+	$text =~ s/ś/s/g;
 	$text =~ s/Š/S/g;
 	$text =~ s/å/aa/g;
 
@@ -101,6 +103,7 @@ sub html_entities_to_cpp {
 	$text =~ s/ó/\\363/g;
 	$text =~ s/ø/\\370/g;
 	$text =~ s/ł/l/g;
+	$text =~ s/ś/s/g;
 	$text =~ s/Š/S/g;
 	$text =~ s/å/\\345/g;
 
@@ -1127,6 +1130,14 @@ begin_credits("Credits");
     "Broken Sword 2.5 team for providing sources of their engine and their great ".
     "support.");
 
+	add_paragraph(
+    "Neil Dodwell and David Dew from Creative Reality for providing the source ".
+    "of Dreamweb and for their tremendous support.");
+
+	add_paragraph(
+    "Janusz Wiśniewski and Miroslaw Liminowicz from Laboratorium Komputerowe Avalon ".
+    "for providing full source code for Sołtys and letting us to redistribute the game.");
+
 	end_section();
 
 end_credits();
diff --git a/gui/credits.h b/gui/credits.h
index 7226864..1b3ba82 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -710,5 +710,9 @@ static const char *credits[] = {
 "C0""",
 "C0""Broken Sword 2.5 team for providing sources of their engine and their great support.",
 "C0""",
+"C0""Neil Dodwell and David Dew from Creative Reality for providing the source of Dreamweb and for their tremendous support.",
+"C0""",
+"C0""Janusz Wisniewski and Miroslaw Liminowicz from Laboratorium Komputerowe Avalon for providing full source code for Soltys and letting us to redistribute the game.",
+"C0""",
 "",
 };






More information about the Scummvm-git-logs mailing list