From 8e7c4df49c8544f2d21a7e62f1b7addeba9afc25 Mon Sep 17 00:00:00 2001 From: Tracy Ward Date: Fri, 4 Oct 2019 10:37:07 -0400 Subject: [PATCH] backport legacy credits from master (#1906) * Restore lost Stepmania Team credits Back in 2009, an overhaul was made to the theme to replace the credits screen. That new screen had a short list of credits, along with a note to "remake this list". That never happened, and over time, the original credits list was lost in the shuffle. People that worked on Stepmania in the past, who felt their contributions were enough to warrant credit, should still get credit. This list was pulled directly from the git history under hash fb1165e6be1cd1e40193b7d6a100c2525a670e04 It could probably be cleaned up a bit. (For instance, the theme has been completely redone. Should we still include the Graphics and Theme sections? Also, the web section. And the thanks section? Those are pretty much just shoutouts.) * Name change. Deal with it >8) * Change encoding of restored credits to utf-8 The list used "fancy" quotes. I should have saved this at utf-8 to begin with. --- Docs/credits.txt | 1 + Docs/credits_old_Stepmania_Team.txt | 112 ++++++++++++++++++++++++++++ src/BeginnerHelper.cpp | 2 +- src/BeginnerHelper.h | 2 +- src/ScreenHowToPlay.cpp | 2 +- src/ScreenHowToPlay.h | 2 +- stepmania.nsi | 1 + 7 files changed, 118 insertions(+), 4 deletions(-) create mode 100644 Docs/credits_old_Stepmania_Team.txt diff --git a/Docs/credits.txt b/Docs/credits.txt index 0c7e7ddd79..96f229f08b 100644 --- a/Docs/credits.txt +++ b/Docs/credits.txt @@ -4,6 +4,7 @@ If you have any corrections to this list, let us know (via forums or IRC). ==StepMania Team== Chris Danford, Glenn Maynard, Steve Checkoway, et al + ( see credits_old_Stepmania_Team for full list ) * Keeping StepMania 5 alive with changes, and providing a nice codebase for us to work with. diff --git a/Docs/credits_old_Stepmania_Team.txt b/Docs/credits_old_Stepmania_Team.txt new file mode 100644 index 0000000000..a80428c798 --- /dev/null +++ b/Docs/credits_old_Stepmania_Team.txt @@ -0,0 +1,112 @@ +These were the Stepmania Team credits as of April 15, 2009, when they were +wiped with a todo message of "remake this list". That never happened and +anybody that was not in that initial list got lost in the shuffle over the +years. + +git commit fb1165e6be1cd1e40193b7d6a100c2525a670e04 contains this list in +lua format. + + +=== GRAPHICS === + +Lucas “v1ral” Tang +SPiGuMuS +Visage +Ryan “Plaguefox” McKanna +Lamden “Cloud34” Travis +Michael “Redcrusher” Curry +Steve “healing_vision” Klise +Mauro Panichella +Popnko +Griever (Julian) +Miguel Moore +Dj “AeON ExOdus” Washington +Xelf +James “SPDS” Sanders +k0ldx +Daisuke Master + +=== THEME === + +AJ Kelly +Dan “dieKatze88” Colardeau +Mike “mDaWg” Calfin + +=== WEB === + +Brian “Bork” Bugh + +=== SOUND === + +Kyle “KeeL” Ward +Jim “Izlude” Cabeen +Sanxion7 + +=== PROGRAMMING === + +Chris Danford +Frieza +Glenn Maynard +Bruno Figueiredo +Peter “Dro Kulix” May +Jared “nmspaz” Roberts +Brendan “binarys” Walker +Lance “Neovanglist” Gilbert +Michel Donais +Ben “Mantis” Nordstrom +Chris “Parasyte” Gomez +Michael “dirkthedaring” Patterson +Sauleil “angedelamort” Lamarre +Edwin Evans +Brian “Bork” Bugh +Joel “Elvis314” Maher +Garth “Kefabi” Smith +Pkillah +Robert Kemmetmueller +Ben “Shabach” Andersen +Will “SlinkyWizard” Valladao +TheChip +David “WarriorBob” H +Mike Waltson +Kevin “Miryokuteki” Slaughter +Tracy “Coderjo” Ward +Steve Checkoway +Sean Burke +XPort +Charles Lohr +Josh “Axlecrusher” Allen +Jason “Wolfman2000” Felds +Eric “Subwire” Gustafson +Mike “Archer” Hawkins +Colby “shakesoda“ Klein + +=== THANKS === + +SimWolf +DJ DraftHorse +Dance With Intensity +BeMaNiRuler +DDRLlama +DDRManiaX +NMR +DJ Paranoia +DJ Yuz +Reo +Random Hajile +Chocobo Ghost +Tyma +Deluxe +Lagged +The Melting Pot +DDRJamz Global BBS +Eric “WaffleKing” Webster +Gotetsu +Mark “Foobly” Verrey +Mandarin Blue +Kenny “AngelTK” Lai +curewater +Bill “DMAshura” Shillito +Illusionz - Issaquah, WA +Quarters - Kirkland, WA +Pier Amusements - Bournemouth, UK +Westcliff Amusements - Bournemouth, UK diff --git a/src/BeginnerHelper.cpp b/src/BeginnerHelper.cpp index 2fcc92faec..5f6b5fe45e 100644 --- a/src/BeginnerHelper.cpp +++ b/src/BeginnerHelper.cpp @@ -388,7 +388,7 @@ void BeginnerHelper::Update( float fDeltaTime ) } /* - * (c) 2003 Kevin Slaughter, Thad Ward + * (c) 2003 Kevin Slaughter, Tracy Ward * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a diff --git a/src/BeginnerHelper.h b/src/BeginnerHelper.h index 4cfb5e5295..973b1afb9b 100644 --- a/src/BeginnerHelper.h +++ b/src/BeginnerHelper.h @@ -50,7 +50,7 @@ protected: /** * @file - * @author Kevin Slaughter, Thad Ward (c) 2003 + * @author Kevin Slaughter, Tracy Ward (c) 2003 * @section LICENSE * All rights reserved. * diff --git a/src/ScreenHowToPlay.cpp b/src/ScreenHowToPlay.cpp index 83f878133d..5e2a7ac1fe 100644 --- a/src/ScreenHowToPlay.cpp +++ b/src/ScreenHowToPlay.cpp @@ -328,7 +328,7 @@ LUA_REGISTER_DERIVED_CLASS( ScreenHowToPlay, ScreenAttract ) // lua end /* - * (c) 2001-2004 Chris Danford, Thad Ward + * (c) 2001-2004 Chris Danford, Tracy Ward * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a diff --git a/src/ScreenHowToPlay.h b/src/ScreenHowToPlay.h index ea75881df5..626dc6c4f0 100644 --- a/src/ScreenHowToPlay.h +++ b/src/ScreenHowToPlay.h @@ -37,7 +37,7 @@ protected: #endif /* - * (c) 2001-2004 Chris Danford, Thad Ward + * (c) 2001-2004 Chris Danford, Tracy Ward * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a diff --git a/stepmania.nsi b/stepmania.nsi index 293f612668..086d5e2f40 100644 --- a/stepmania.nsi +++ b/stepmania.nsi @@ -469,6 +469,7 @@ Section "Main Section" SecMain SetOutPath "$INSTDIR\Docs" File "Docs\Licenses.txt" File "Docs\credits.txt" + File "Docs\credits_old_Stepmania_Team.txt" File "Docs\Changelog_sm-ssc.txt" File "Docs\Changelog_sm5.txt" File "Docs\Changelog_SSCformat.txt"