From f607112da03d56329cfd0a62e47db6f4b9e145e1 Mon Sep 17 00:00:00 2001 From: Einar Johan Trøan Sømåen Date: Thu, 6 Sep 2012 16:47:33 +0200 Subject: CREDITS: Add myself to credits for the Wintermute-engine --- devtools/credits.pl | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'devtools/credits.pl') diff --git a/devtools/credits.pl b/devtools/credits.pl index 7ce17a9df6..b1a73caad7 100755 --- a/devtools/credits.pl +++ b/devtools/credits.pl @@ -697,6 +697,10 @@ begin_credits("Credits"); add_person("Gregory Montoir", "cyx", "(retired)"); end_section(); + begin_section("Wintermute"); + add_person("Einar Johan T. Sømåen", "somaen", ""); + end_section(); + end_section(); -- cgit v1.2.3 From 3513f3870de3d99fafd7625120e5bf68436dd15d Mon Sep 17 00:00:00 2001 From: Einar Johan Trøan Sømåen Date: Thu, 6 Sep 2012 16:53:01 +0200 Subject: CREDITS: Thank Jan Nedoma (Mnemonic) for sources/assistance with WME. --- devtools/credits.pl | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'devtools/credits.pl') diff --git a/devtools/credits.pl b/devtools/credits.pl index b1a73caad7..e022e1a4dc 100755 --- a/devtools/credits.pl +++ b/devtools/credits.pl @@ -1147,6 +1147,10 @@ begin_credits("Credits"); "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."); + add_paragraph( + "Jan Nedoma for providing the sources to the Wintermute-engine, and for providing ". + "support while porting the engine to ScummVM"); + end_section(); end_credits(); -- cgit v1.2.3 From 1ea69b53cec1ed1dffab05a20d8df6bae074c2bb Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Thu, 6 Sep 2012 17:19:22 +0200 Subject: CREDITS: Minor tweaks --- devtools/credits.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'devtools/credits.pl') diff --git a/devtools/credits.pl b/devtools/credits.pl index e022e1a4dc..1fd40dbab2 100755 --- a/devtools/credits.pl +++ b/devtools/credits.pl @@ -1145,11 +1145,11 @@ begin_credits("Credits"); 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."); + "for providing full source code for Sołtys and letting us redistribute the game."); add_paragraph( - "Jan Nedoma for providing the sources to the Wintermute-engine, and for providing ". - "support while porting the engine to ScummVM"); + "Jan Nedoma for providing the sources to the Wintermute-engine, and for his ". + "support while porting the engine to ScummVM."); end_section(); -- cgit v1.2.3 From 033e75e6260c4cb42317c1e965d1610b6dde331b Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Thu, 6 Sep 2012 17:44:52 +0200 Subject: CREDITS: Output warning if name is too wide for text output --- devtools/credits.pl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'devtools/credits.pl') diff --git a/devtools/credits.pl b/devtools/credits.pl index 1fd40dbab2..e8cb1154e7 100755 --- a/devtools/credits.pl +++ b/devtools/credits.pl @@ -359,6 +359,9 @@ sub add_person { my $min_name_width = length $desc > 0 ? $max_name_width : 0; $name = $nick if $name eq ""; $name = html_entities_to_ascii($name); + if (length $name > $max_name_width) { + print STDERR "Warning: max_name_width is too small (" . $max_name_width . " < " . (length $name) . " for \"" . $name. "\")\n"; + } $desc = html_entities_to_ascii($desc); $tab = " " x ($section_level * 2 + 1); -- cgit v1.2.3 From 952a41abe2911500fe9c3d2663b5cac9b4f9b3dd Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Thu, 6 Sep 2012 17:45:44 +0200 Subject: CREDITS: Reshuffle special thanks --- devtools/credits.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'devtools/credits.pl') diff --git a/devtools/credits.pl b/devtools/credits.pl index e8cb1154e7..b993bb12f3 100755 --- a/devtools/credits.pl +++ b/devtools/credits.pl @@ -1087,6 +1087,7 @@ begin_credits("Credits"); add_person("Ivan Dubrov", "", "For contributing the initial version of the Gobliiins engine"); add_person("Henrik Engqvist", "qvist", "For generously providing hosting for our buildbot, SVN repository, planet and doxygen sites as well as tons of HD space"); add_person("DOSBox Team", "", "For their awesome OPL2 and OPL3 emulator"); + add_person("Yusuke Kamiyamane", "", "For contributing some GUI icons "); add_person("Till Kresslein", "Krest", "For design of modern ScummVM GUI"); add_person("", "Jezar", "For his freeverb filter implementation"); add_person("Jim Leiterman", "", "Various info on his FM-TOWNS/Marty SCUMM ports"); @@ -1097,8 +1098,6 @@ begin_credits("Credits"); add_person("James Woodcock", "", "Soundtrack enhancements"); end_persons(); - add_paragraph("Some icons by Yusuke Kamiyamane"); - add_paragraph( "Tony Warriner and everyone at Revolution Software Ltd. for sharing ". "with us the source of some of their brilliant games, allowing us to ". -- cgit v1.2.3 From 6fada6722eaceccdf02a925556ff032795ccd17f Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Thu, 6 Sep 2012 17:46:28 +0200 Subject: CREDITS: Increase name widths to avoid cut off names Unfortunately this does introduce extra line breaks. --- devtools/credits.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'devtools/credits.pl') diff --git a/devtools/credits.pl b/devtools/credits.pl index b993bb12f3..f7efa59d2f 100755 --- a/devtools/credits.pl +++ b/devtools/credits.pl @@ -48,7 +48,7 @@ if ($mode eq "") { $Text::Wrap::unexpand = 0; if ($mode eq "TEXT") { $Text::Wrap::columns = 78; - $max_name_width = 21; # The maximal width of a name. + $max_name_width = 23; # The maximal width of a name. } elsif ($mode eq "CPP") { $Text::Wrap::columns = 48; # Approx. } @@ -1074,7 +1074,7 @@ begin_credits("Credits"); # HACK! - $max_name_width = 16; + $max_name_width = 17; begin_section("Special thanks to"); begin_persons(); -- cgit v1.2.3