aboutsummaryrefslogtreecommitdiff
path: root/devtools/credits.pl
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/credits.pl')
-rwxr-xr-xdevtools/credits.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/devtools/credits.pl b/devtools/credits.pl
index 03585a5256..06df7fa50e 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();