aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCameron Cawley2018-11-15 06:31:19 +0000
committerFilippos Karapetis2018-11-15 08:31:19 +0200
commit0c21b31be5ba0396f1b6daae9d9e372608ce783c (patch)
tree377c531fefa174e5aa2e3229d1bb2b61c43c86fe
parente5b73b28998330af5ed0062b2ae4d49655246e93 (diff)
downloadscummvm-rg350-0c21b31be5ba0396f1b6daae9d9e372608ce783c.tar.gz
scummvm-rg350-0c21b31be5ba0396f1b6daae9d9e372608ce783c.tar.bz2
scummvm-rg350-0c21b31be5ba0396f1b6daae9d9e372608ce783c.zip
CREDITS: Add credits for DM, Prince, Illusions and MutationOfJB (#1394)
-rw-r--r--AUTHORS18
-rwxr-xr-xdevtools/credits.pl37
-rw-r--r--gui/credits.h20
3 files changed, 75 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index 79d60d728b..93191ea899 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -107,6 +107,10 @@ ScummVM Team
Pawel Kolodziejski
Thierry Crozat
+ DM:
+ Arnaud Boutonne
+ Bendeguz Nagy
+
DreamWeb:
Torbjorn Andersson
Bertrand Augereau
@@ -141,6 +145,10 @@ ScummVM Team
Oystein Eftevaag
Eugene Sandulenko
+ Illusions:
+ Benjamin Haisch
+ Eric Fry
+
Kyra:
Torbjorn Andersson - VQA Player
Oystein Eftevaag
@@ -184,6 +192,10 @@ ScummVM Team
Arnaud Boutonne
Paul Gilbert
+ MutationOfJB:
+ Lubomir Remak
+ Miroslav Remak
+
Neverhood:
Benjamin Haisch
Filippos Karapetis
@@ -194,6 +206,11 @@ ScummVM Team
Pegasus:
Matthew Hoops - (retired)
+ Prince:
+ Eugene Sandulenko
+ Lukasz Watka
+ Kamil Zbrog
+
Queen:
David Eriksson - (retired)
Gregory Montoir - (retired)
@@ -426,6 +443,7 @@ ScummVM Team
Eugene Sandulenko - Forum, IRC channel, Screen Shots and
Mailing list maintainer
John Willis
+ Matan Bareket - Site maintainer
Website (content)
-----------------
diff --git a/devtools/credits.pl b/devtools/credits.pl
index bad241f0b3..ad011b7248 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -64,15 +64,19 @@ sub html_entities_to_ascii {
# ì -> i
# ó -> o
# ø -> o
+ # ú -> u
# ö -> o / oe
# ä -> a
# ë -> e
# ü -> ue
# å -> aa
# & -> &
+ # ą -> a
+ # Ł -> L
# ł -> l
# ś -> s
# Š -> S
+ # Ľ -> L
# ñ -> n
$text =~ s/á/a/g;
$text =~ s/é/e/g;
@@ -80,8 +84,12 @@ sub html_entities_to_ascii {
$text =~ s/ì/i/g;
$text =~ s/ó/o/g;
$text =~ s/ø/o/g;
+ $text =~ s/ú/u/g;
+ $text =~ s/ą/a/g;
+ $text =~ s/Ł/L/g;
$text =~ s/ł/l/g;
$text =~ s/ś/s/g;
+ $text =~ s/Ľ/L/g;
$text =~ s/Š/S/g;
$text =~ s/å/aa/g;
$text =~ s/ñ/n/g;
@@ -109,8 +117,12 @@ sub html_entities_to_cpp {
$text =~ s/ì/\\354/g;
$text =~ s/ó/\\363/g;
$text =~ s/ø/\\370/g;
+ $text =~ s/ú/\\372/g;
+ $text =~ s/ą/a/g;
+ $text =~ s/Ł/L/g;
$text =~ s/ł/l/g;
$text =~ s/ś/s/g;
+ $text =~ s/Ľ/L/g;
$text =~ s/Š/S/g;
$text =~ s/å/\\345/g;
$text =~ s/ñ/\\361/g;
@@ -136,10 +148,14 @@ sub html_entities_to_rtf {
$text =~ s/ì/\\'93/g;
$text =~ s/ó/\\'97/g;
$text =~ s/ø/\\'bf/g;
+ $text =~ s/ú/\\'9c/g;
$text =~ s/å/\\'8c/g;
# The following numerical values are decimal!
+ $text =~ s/ą/\\uc0\\u261 /g;
+ $text =~ s/Ł/\\uc0\\u321 /g;
$text =~ s/ł/\\uc0\\u322 /g;
$text =~ s/ś/\\uc0\\u347 /g;
+ $text =~ s/Ľ/\\uc0\\u317 /g;
$text =~ s/Š/\\uc0\\u352 /g;
# Back to hex numbers
@@ -591,6 +607,11 @@ begin_credits("Credits");
add_person("Thierry Crozat", "criezy", "");
end_section();
+ begin_section("DM");
+ add_person("Arnaud Boutonné", "Strangerke", "");
+ add_person("Bendegúz Nagy", "WinterGrascph", "");
+ end_section();
+
begin_section("DreamWeb");
add_person("Torbjörn Andersson", "eriktorbjorn", "");
add_person("Bertrand Augereau", "Tramb", "");
@@ -632,6 +653,11 @@ begin_credits("Credits");
add_person("Eugene Sandulenko", "sev", "");
end_section();
+ begin_section("Illusions");
+ add_person("Benjamin Haisch", "john_doe", "");
+ add_person("Eric Fry", "yuv422", "");
+ end_section();
+
begin_section("Kyra");
add_person("Torbjörn Andersson", "eriktorbjorn", "VQA Player");
add_person("Oystein Eftevaag", "vinterstum", "");
@@ -683,6 +709,11 @@ begin_credits("Credits");
add_person("Paul Gilbert", "dreammaster", "");
end_section();
+ begin_section("MutationOfJB");
+ add_person("Ľubomír Remák", "LubomirR", "");
+ add_person("Miroslav Remák", "MiroslavR", "");
+ end_section();
+
begin_section("Neverhood");
add_person("Benjamin Haisch", "john_doe", "");
add_person("Filippos Karapetis", "[md5]", "");
@@ -696,6 +727,12 @@ begin_credits("Credits");
add_person("Matthew Hoops", "clone2727", "(retired)");
end_section();
+ begin_section("Prince");
+ add_person("Eugene Sandulenko", "sev", "");
+ add_person("Łukasz Wątka", "lukaslw", "");
+ add_person("Kamil Zbróg", "", "");
+ end_section();
+
begin_section("Queen");
add_person("David Eriksson", "twogood", "(retired)");
add_person("Gregory Montoir", "cyx", "(retired)");
diff --git a/gui/credits.h b/gui/credits.h
index 5281726f09..6dd3480e3e 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -132,6 +132,12 @@ static const char *credits[] = {
"C0""Pawel Kolodziejski",
"C0""Thierry Crozat",
"",
+"C1""DM",
+"A0""Arnaud Boutonne",
+"C0""Arnaud Boutonn\351",
+"A0""Bendeguz Nagy",
+"C0""Bendeg\372z Nagy",
+"",
"C1""DreamWeb",
"A0""Torbjorn Andersson",
"C0""Torbj\366rn Andersson",
@@ -229,6 +235,12 @@ static const char *credits[] = {
"C0""Arnaud Boutonn\351",
"C0""Paul Gilbert",
"",
+"C1""MutationOfJB",
+"A0""Lubomir Remak",
+"C0""Lubom\355r Rem\341k",
+"A0""Miroslav Remak",
+"C0""Miroslav Rem\341k",
+"",
"C1""Neverhood",
"C0""Benjamin Haisch",
"C0""Filippos Karapetis",
@@ -240,6 +252,12 @@ static const char *credits[] = {
"C0""Matthew Hoops",
"C2""(retired)",
"",
+"C1""Prince",
+"C0""Eugene Sandulenko",
+"C0""Lukasz Watka",
+"A0""Kamil Zbrog",
+"C0""Kamil Zbr\363g",
+"",
"C1""Queen",
"C0""David Eriksson",
"C2""(retired)",
@@ -517,6 +535,8 @@ static const char *credits[] = {
"C0""Eugene Sandulenko",
"C2""Forum, IRC channel, Screen Shots and Mailing list maintainer",
"C0""John Willis",
+"C0""Matan Bareket",
+"C2""Site maintainer",
"",
"C1""Website (content)",
"C0""All active team members",