Credit more people (#491)

This commit is contained in:
2025-02-03 19:18:18 -06:00
committed by GitHub
parent bc5f42a870
commit 05e2ce17a7
6 changed files with 30 additions and 4 deletions

5
pkg/credits/Advice.txt Normal file
View File

@@ -0,0 +1,5 @@
Confirmed:
- The Almighty
Doer of Stuff
- Thuryl
- Slarty

View File

@@ -1,8 +1,11 @@
Confirmed:
- Khoth
- Niemand
- Ormus
- Ishad Nha
- Chokboyz
- Celtic Minstrel
- Stareye
- Ben Scott
- Sylae Corell
- xq

View File

@@ -31,6 +31,7 @@
<br/>
Programming: {{1}}
Graphics: {{2}}
Consulting: {{9}}
Testing and Troubleshooting: {{3}}
Funding: {{4}}
<br/><br/>
@@ -45,6 +46,7 @@
<br/><!-- OPEN SOURCE CREDITS --><br/>
<!-- Programming -->{{5}}
<!-- Graphics -->{{6}}
<!-- Consulting -->{{10}}
<!-- Testing and Troubleshooting -->{{7}}
<!-- Funding -->{{8}}
<br/><!-- SCENARIO FIXES AND UPDATES --><br/>

View File

@@ -57,6 +57,9 @@ def main():
# {{2}}: '<br/>' * (# of artists)
content = content.replace('{{2}}', '<br/>' * num_dict['Graphics'])
# {{9}}: '<br/>' * (# of consultants)
content = content.replace('{{9}}', '<br/>' * num_dict['Advice'])
# {{3}}: '<br/>' * (# of testers)
content = content.replace('{{3}}', '<br/>' * num_dict['Testing'])
@@ -73,6 +76,10 @@ def main():
name_lines = list_break.join(name_dict["Graphics"]) + list_break
content = replace_tabbed_lines('{{6}}', name_lines, 7)
# {{10}}: Consulting name lines
name_lines = list_break.join(name_dict["Advice"]) + list_break
content = replace_tabbed_lines('{{10}}', name_lines, 8)
# {{7}}: Tester name lines
name_lines = list_break.join(name_dict["Testing"]) + list_break
content = replace_tabbed_lines('{{7}}', name_lines, 12)
@@ -123,6 +130,7 @@ def main():
add_heading('Code')
add_heading('Graphics')
add_heading('Advice')
add_heading('Testing')
add_heading('Funding')

View File

@@ -18,11 +18,11 @@
<!-- The height of this text needs to be 10 times the number of lines. -->
<text top='52' left='50' width='400' height='240'>
ORIGINAL GAME: <br/><br/><br/><br/><br/><br/>
OPEN SOURCE CREDITS: <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
OPEN SOURCE CREDITS: <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
SCENARIO FIXES AND UPDATES: <br/><br/>
</text>
<!-- This text is right-aligned and fills out the above text with sub-headings -->
<text top='52' left='50' width='180' height='660' align='right'>
<text top='52' left='50' width='180' height='730' align='right'>
<br/>
Concept, Design, Programming: <br/>
Graphics: <br/>
@@ -30,14 +30,15 @@
Title/Splash Screens: <br/>
<br/>
<br/>
Programming: <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
Programming: <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
Graphics: <br/><br/><br/><br/><br/><br/>
Consulting: <br/><br/><br/><br/>
Testing and Troubleshooting: <br/><br/>
Funding: <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<br/><br/>
Bandit Busywork: <br/>
</text>
<text top='52' left='250' width='230' height='660'>
<text top='52' left='250' width='230' height='730'>
<!-- ORIGINAL GAME --><br/>
<!-- Concept, Design, Programming -->Jeff Vogel <br/>
<!-- Graphics -->Andrew Hunter <br/>
@@ -45,9 +46,12 @@
<!-- Title/Splash Screens -->James Ernest <br/>
<br/><!-- OPEN SOURCE CREDITS --><br/>
<!-- Programming -->Khoth <br/>
Niemand <br/>
Ormus <br/>
Ishad Nha <br/>
Chokboyz <br/>
Celtic Minstrel <br/>
Stareye <br/>
Ben Scott <br/>
Sylae Corell <br/>
xq <br/>
@@ -61,6 +65,10 @@
Celtic Minstrel <br/>
Kelyar-Ihrno <br/>
Jewels <br/>
<!-- Consulting -->The Almighty <br/>
Doer of Stuff <br/>
Thuryl <br/>
Slarty <br/>
<!-- Testing and Troubleshooting -->The Almighty <br/>
Doer of Stuff <br/>
<!-- Funding -->Alan Elkins <br/>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 24 KiB