aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2005-11-13 03:33:20 +0000
committerEugene Sandulenko2005-11-13 03:33:20 +0000
commite41e31c34f9278cf8d393569e8f772e5cfc3fa0a (patch)
tree377b21bb6cb6a0f0e147941d9cdc45090b18b62d
parent84ec0ce807886c42068c3f4c0ce7984e87de5076 (diff)
downloadscummvm-rg350-e41e31c34f9278cf8d393569e8f772e5cfc3fa0a.tar.gz
scummvm-rg350-e41e31c34f9278cf8d393569e8f772e5cfc3fa0a.tar.bz2
scummvm-rg350-e41e31c34f9278cf8d393569e8f772e5cfc3fa0a.zip
Add our website designer and HTML/CSS coder to list of contributors.
svn-id: r19579
-rw-r--r--AUTHORS2
-rw-r--r--doc/10.tex2
-rw-r--r--gui/credits.h4
-rwxr-xr-xtools/credits.pl4
4 files changed, 12 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index d8137564ef..5aee6b0cc7 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -37,7 +37,9 @@ Retired Team Members:
Contributors:
Tore Anderson - Packaging for Debian GNU/Linux
+ Dobo Balazs - Website design
Stuart Caie - Decoders for Simon 1 Amiga data files
+ Yaroslav Fedevych - HTML/CSS for the website
Janne Huttunen - V3 actor mask support, Dig/FT SMUSH audio
Kovacs Endre Janos - Several fixes for Simon1
Jeroen Janssen - Numerous readability and bugfix patches
diff --git a/doc/10.tex b/doc/10.tex
index 53513903cd..e7c5a03c2c 100644
--- a/doc/10.tex
+++ b/doc/10.tex
@@ -42,7 +42,9 @@
\item \textbf{Contributors}\\
\begin{tabular}[h]{p{4cm}l}
Tore Anderson & Packaging for Debian GNU/Linux\\
+ Dobó Bal\'azs & Website design\\
Stuart Caie & Decoders for Simon 1 Amiga data files\\
+ Yaroslav Fedevych & HTML/CSS for the website\\
Janne Huttunen & V3 actor mask support, Dig/FT SMUSH audio\\
Kov\'acs Endre J\'anos & Several fixes for Simon1\\
Jeroen Janssen & Numerous readability and bugfix patches\\
diff --git a/gui/credits.h b/gui/credits.h
index 6a8cc6f112..3ff9737569 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -73,8 +73,12 @@ static const char *credits[] = {
"\\C\\c1""Contributors:",
"\\L\\c0"" Tore Anderson",
"\\L\\c2"" Packaging for Debian GNU/Linux",
+"\\L\\c0"" Dobo Balazs",
+"\\L\\c2"" Website design",
"\\L\\c0"" Stuart Caie",
"\\L\\c2"" Decoders for Simon 1 Amiga data files",
+"\\L\\c0"" Yaroslav Fedevych",
+"\\L\\c2"" HTML/CSS for the website",
"\\L\\c0"" Janne Huttunen",
"\\L\\c2"" V3 actor mask support, Dig/FT SMUSH audio",
"\\L\\c0"" Kovacs Endre Janos",
diff --git a/tools/credits.pl b/tools/credits.pl
index 6b2c96677e..ec2c8a1b64 100755
--- a/tools/credits.pl
+++ b/tools/credits.pl
@@ -59,6 +59,7 @@ sub html_entities_to_ascii {
# For now we hardcode these mappings
# á -> a
# é -> e
+ # ó -> o
# ø -> o
# ö -> o / oe
# ä -> a
@@ -66,6 +67,7 @@ sub html_entities_to_ascii {
# ł -> l
$text =~ s/á/a/g;
$text =~ s/é/e/g;
+ $text =~ s/ó/o/g;
$text =~ s/ø/o/g;
$text =~ s/ł/l/g;
@@ -359,7 +361,9 @@ begin_credits("Credits");
begin_section("Contributors");
add_person("Tore Anderson", "tore", "Packaging for Debian GNU/Linux");
+ add_person("Dobó Balázs", "draven", "Website design");
add_person("Stuart Caie", "", "Decoders for Simon 1 Amiga data files");
+ add_person("Yaroslav Fedevych", "jafd", "HTML/CSS for the website");
add_person("Janne Huttunen", "", "V3 actor mask support, Dig/FT SMUSH audio");
add_person("Kovács Endre János", "", "Several fixes for Simon1");
add_person("Jeroen Janssen", "", "Numerous readability and bugfix patches");