Skip to content

Commit

Permalink
AboutDialog: Add missing people to thanks
Browse files Browse the repository at this point in the history
Remove roleAudacityThanks and combine all thanks credits into one
single section. Fixes #399.

Reference-to: https://codeberg.org/tenacityteam/tenacity/issues/399
Signed-off-by: Avery King <[email protected]>
  • Loading branch information
Avery King committed Mar 9, 2024
1 parent 4b0772f commit 9b8c7bf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 24 deletions.
44 changes: 22 additions & 22 deletions src/AboutDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -285,27 +285,27 @@ void AboutDialog::CreateCreditsList()

// Thanks

AddCredit(wxT("Dave Beydler"), roleAudacityThanks);
AddCredit(wxT("Brian Cameron"), roleAudacityThanks);
AddCredit(wxT("Jason Cohen"), roleAudacityThanks);
AddCredit(wxT("Dave Fancella"), roleAudacityThanks);
AddCredit(wxT("Steve Harris"), roleAudacityThanks);
AddCredit(wxT("Daniel James"), roleAudacityThanks);
AddCredit(wxT("Daniil Kolpakov"), roleAudacityThanks);
AddCredit(wxT("Robert Leidle"), roleAudacityThanks);
AddCredit(wxT("Logan Lewis"), roleAudacityThanks);
AddCredit(wxT("David Luff"), roleAudacityThanks);
AddCredit(wxT("Jason Pepas"), roleAudacityThanks);
AddCredit(wxT("Jonathan Ryshpan"), roleAudacityThanks);
AddCredit(wxT("Michael Schwendt"), roleAudacityThanks);
AddCredit(wxT("Patrick Shirkey"), roleAudacityThanks);
AddCredit(wxT("Tuomas Suutari"), roleAudacityThanks);
AddCredit(wxT("Mark Tomlinson"), roleAudacityThanks);
AddCredit(wxT("David Topper"), roleAudacityThanks);
AddCredit(wxT("Rudy Trubitt"), roleAudacityThanks);
AddCredit(wxT("StreetIQ.com"), roleAudacityThanks);
AddCredit(wxT("UmixIt Technologies, LLC"), roleAudacityThanks);
AddCredit(wxT("Verilogix, Inc."), roleAudacityThanks);
AddCredit(wxT("Dave Beydler"), roleThanks);
AddCredit(wxT("Brian Cameron"), roleThanks);
AddCredit(wxT("Jason Cohen"), roleThanks);
AddCredit(wxT("Dave Fancella"), roleThanks);
AddCredit(wxT("Steve Harris"), roleThanks);
AddCredit(wxT("Daniel James"), roleThanks);
AddCredit(wxT("Daniil Kolpakov"), roleThanks);
AddCredit(wxT("Robert Leidle"), roleThanks);
AddCredit(wxT("Logan Lewis"), roleThanks);
AddCredit(wxT("David Luff"), roleThanks);
AddCredit(wxT("Jason Pepas"), roleThanks);
AddCredit(wxT("Jonathan Ryshpan"), roleThanks);
AddCredit(wxT("Michael Schwendt"), roleThanks);
AddCredit(wxT("Patrick Shirkey"), roleThanks);
AddCredit(wxT("Tuomas Suutari"), roleThanks);
AddCredit(wxT("Mark Tomlinson"), roleThanks);
AddCredit(wxT("David Topper"), roleThanks);
AddCredit(wxT("Rudy Trubitt"), roleThanks);
AddCredit(wxT("StreetIQ.com"), roleThanks);
AddCredit(wxT("UmixIt Technologies, LLC"), roleThanks);
AddCredit(wxT("Verilogix, Inc."), roleThanks);
}

// ----------------------------------------------------------------------------
Expand Down Expand Up @@ -457,7 +457,7 @@ void AboutDialog::PopulateAudacityPage( ShuttleGui & S )
<< wxT("<h3>")
<< XO("Special thanks:")
<< wxT("</h3><br>")
<< GetCreditsByRole(roleAudacityThanks)
<< GetCreditsByRole(roleThanks)

<< wxT("<p><br><center>")
/* i18n-hint: The program's name substitutes for %s */
Expand Down
3 changes: 1 addition & 2 deletions src/AboutDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ class TENACITY_DLL_API AboutDialog final : public wxDialogWrapper {
roleAudacityEmeritusTeam,
roleAudacityDeceased,
roleAudacityContributor,
roleAudacityGraphics,
roleAudacityThanks
roleAudacityGraphics
};

AboutDialogCreditItemsList creditItems;
Expand Down

0 comments on commit 9b8c7bf

Please sign in to comment.