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')