Updated credits
svn-id: r23430
This commit is contained in:
parent
b7997a7231
commit
03ef03887a
4 changed files with 9 additions and 8 deletions
2
AUTHORS
2
AUTHORS
|
@ -201,7 +201,7 @@ Other contributions
|
||||||
Daniel Schepler - Final MI1 CD music support, initial Ogg Vorbis
|
Daniel Schepler - Final MI1 CD music support, initial Ogg Vorbis
|
||||||
support
|
support
|
||||||
Andre Souza - SDL-based OpenGL renderer
|
Andre Souza - SDL-based OpenGL renderer
|
||||||
Tim ??? - Initial MI1 CD music support
|
Tim Phillips - Initial MI1 CD music support
|
||||||
|
|
||||||
And to all the contributors, users, and beta testers we've missed. Thanks!
|
And to all the contributors, users, and beta testers we've missed. Thanks!
|
||||||
|
|
||||||
|
|
|
@ -201,7 +201,7 @@ All active team members
|
||||||
Ralph Brorsen & \textit{Help with GUI implementation}\\
|
Ralph Brorsen & \textit{Help with GUI implementation}\\
|
||||||
Jamieson Christian & \textit{iMUSE, MIDI, all things musical}\\
|
Jamieson Christian & \textit{iMUSE, MIDI, all things musical}\\
|
||||||
Vincent Hamm & \textit{Co-Founder, original CinE engine author}\\
|
Vincent Hamm & \textit{Co-Founder, original CinE engine author}\\
|
||||||
Ruediger Hanke & \textit{Port: MorphOS}\\
|
R\"udiger Hanke & \textit{Port: MorphOS}\\
|
||||||
Felix Jakschitsch & \textit{Zak256 reverse engineering}\\
|
Felix Jakschitsch & \textit{Zak256 reverse engineering}\\
|
||||||
Mutwin Kraus & \textit{Original MacOS porter}\\
|
Mutwin Kraus & \textit{Original MacOS porter}\\
|
||||||
Peter Moraliyski & \textit{Port: GP32}\\
|
Peter Moraliyski & \textit{Port: GP32}\\
|
||||||
|
@ -314,7 +314,7 @@ All active team members
|
||||||
Edward Rudd & \textit{Fixes for playing MP3 versions of MI1/Loom audio}\\
|
Edward Rudd & \textit{Fixes for playing MP3 versions of MI1/Loom audio}\\
|
||||||
Daniel Schepler & \textit{Final MI1 CD music support, initial Ogg Vorbis support}\\
|
Daniel Schepler & \textit{Final MI1 CD music support, initial Ogg Vorbis support}\\
|
||||||
Andr\'e Souza & \textit{SDL-based OpenGL renderer}\\
|
Andr\'e Souza & \textit{SDL-based OpenGL renderer}\\
|
||||||
Tim ??? & \textit{Initial MI1 CD music support}\\
|
Tim Phillips & \textit{Initial MI1 CD music support}\\
|
||||||
\end{tabular}
|
\end{tabular}
|
||||||
\end{list}
|
\end{list}
|
||||||
\item
|
\item
|
||||||
|
|
|
@ -133,7 +133,7 @@ static const char *credits[] = {
|
||||||
"\\C\\c2""iMUSE, MIDI, all things musical",
|
"\\C\\c2""iMUSE, MIDI, all things musical",
|
||||||
"\\C\\c0""Vincent Hamm",
|
"\\C\\c0""Vincent Hamm",
|
||||||
"\\C\\c2""Co-Founder, original CinE engine author",
|
"\\C\\c2""Co-Founder, original CinE engine author",
|
||||||
"\\C\\c0""Ruediger Hanke",
|
"\\C\\c0""R\374diger Hanke",
|
||||||
"\\C\\c2""Port: MorphOS",
|
"\\C\\c2""Port: MorphOS",
|
||||||
"\\C\\c0""Felix Jakschitsch",
|
"\\C\\c0""Felix Jakschitsch",
|
||||||
"\\C\\c2""Zak256 reverse engineering",
|
"\\C\\c2""Zak256 reverse engineering",
|
||||||
|
@ -236,7 +236,7 @@ static const char *credits[] = {
|
||||||
"\\C\\c2""Final MI1 CD music support, initial Ogg Vorbis support",
|
"\\C\\c2""Final MI1 CD music support, initial Ogg Vorbis support",
|
||||||
"\\C\\c0""Andr\351 Souza",
|
"\\C\\c0""Andr\351 Souza",
|
||||||
"\\C\\c2""SDL-based OpenGL renderer",
|
"\\C\\c2""SDL-based OpenGL renderer",
|
||||||
"\\C\\c0""Tim ???",
|
"\\C\\c0""Tim Phillips",
|
||||||
"\\C\\c2""Initial MI1 CD music support",
|
"\\C\\c2""Initial MI1 CD music support",
|
||||||
"\\C\\c0""",
|
"\\C\\c0""",
|
||||||
"\\C\\c0""And to all the contributors, users, and beta testers we've missed. Thanks!",
|
"\\C\\c0""And to all the contributors, users, and beta testers we've missed. Thanks!",
|
||||||
|
|
|
@ -66,6 +66,7 @@ sub html_entities_to_ascii {
|
||||||
# ø -> o
|
# ø -> o
|
||||||
# ö -> o / oe
|
# ö -> o / oe
|
||||||
# ä -> a
|
# ä -> a
|
||||||
|
# ü -> ue
|
||||||
# & -> &
|
# & -> &
|
||||||
# ł -> l
|
# ł -> l
|
||||||
$text =~ s/á/a/g;
|
$text =~ s/á/a/g;
|
||||||
|
@ -75,7 +76,7 @@ sub html_entities_to_ascii {
|
||||||
$text =~ s/ł/l/g;
|
$text =~ s/ł/l/g;
|
||||||
|
|
||||||
$text =~ s/ä/a/g;
|
$text =~ s/ä/a/g;
|
||||||
$text =~ s/ü/u/g;
|
$text =~ s/ü/ue/g;
|
||||||
# HACK: Torbj*o*rn but G*oe*ffringmann and R*oe*ver
|
# HACK: Torbj*o*rn but G*oe*ffringmann and R*oe*ver
|
||||||
$text =~ s/ör/or/g;
|
$text =~ s/ör/or/g;
|
||||||
$text =~ s/ö/oe/g;
|
$text =~ s/ö/oe/g;
|
||||||
|
@ -602,7 +603,7 @@ begin_credits("Credits");
|
||||||
add_person("Ralph Brorsen", "painelf", "Help with GUI implementation");
|
add_person("Ralph Brorsen", "painelf", "Help with GUI implementation");
|
||||||
add_person("Jamieson Christian", "jamieson630", "iMUSE, MIDI, all things musical");
|
add_person("Jamieson Christian", "jamieson630", "iMUSE, MIDI, all things musical");
|
||||||
add_person('Vincent Hamm', 'yazoo', "Co-Founder, original CinE engine author");
|
add_person('Vincent Hamm', 'yazoo', "Co-Founder, original CinE engine author");
|
||||||
add_person("Ruediger Hanke", "", "Port: MorphOS");
|
add_person("Rüdiger Hanke", "", "Port: MorphOS");
|
||||||
add_person("Felix Jakschitsch", "yot", "Zak256 reverse engineering");
|
add_person("Felix Jakschitsch", "yot", "Zak256 reverse engineering");
|
||||||
add_person("Mutwin Kraus", "mutle", "Original MacOS porter");
|
add_person("Mutwin Kraus", "mutle", "Original MacOS porter");
|
||||||
add_person("Peter Moraliyski", "ph0x", "Port: GP32");
|
add_person("Peter Moraliyski", "ph0x", "Port: GP32");
|
||||||
|
@ -693,7 +694,7 @@ begin_credits("Credits");
|
||||||
add_person("Edward Rudd", "", "Fixes for playing MP3 versions of MI1/Loom audio");
|
add_person("Edward Rudd", "", "Fixes for playing MP3 versions of MI1/Loom audio");
|
||||||
add_person("Daniel Schepler", "", "Final MI1 CD music support, initial Ogg Vorbis support");
|
add_person("Daniel Schepler", "", "Final MI1 CD music support, initial Ogg Vorbis support");
|
||||||
add_person("André Souza", "", "SDL-based OpenGL renderer");
|
add_person("André Souza", "", "SDL-based OpenGL renderer");
|
||||||
add_person("Tim ???", "realmz", "Initial MI1 CD music support");
|
add_person("Tim Phillips", "realmz", "Initial MI1 CD music support");
|
||||||
end_persons();
|
end_persons();
|
||||||
end_section();
|
end_section();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue