AboutSystem: some updates to the contributors list

- Move Kyle Ambroff-Kao to the maintainers
- Add Diver, Vidrep and Luroh as bug triaging and testing team (your
  work deserves more credit, thanks a lot!)
- Move Koki back into "past website/marketing team"

Change-Id: I3f198277804aaa2dedf0551ced65e5f94393f3ea
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2624
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Adrien Destugues
2020-05-09 19:28:44 +00:00
committed by waddlesplash
parent fc86ef2cef
commit 566914fad4
2 changed files with 16 additions and 5 deletions
+8 -1
View File
@@ -594,6 +594,7 @@ AboutView::AboutView()
.Add(_CreateLabel("uptimelabel", .Add(_CreateLabel("uptimelabel",
B_TRANSLATE("Time running:"))) B_TRANSLATE("Time running:")))
.Add(fUptimeView) .Add(fUptimeView)
.AddGlue()
.SetInsets(5, 5, 5, 5) .SetInsets(5, 5, 5, 5)
.End() .End()
// TODO: investigate: adding this causes the time to be cut // TODO: investigate: adding this causes the time to be cut
@@ -602,7 +603,7 @@ AboutView::AboutView()
.Add(_CreateCreditsView()); .Add(_CreateCreditsView());
float min = fMemView->MinSize().width * 1.1f; float min = fMemView->MinSize().width * 1.1f;
fCreditsView->SetExplicitMinSize(BSize(min, min)); fCreditsView->SetExplicitMinSize(BSize(min * 3, min));
} }
@@ -956,6 +957,12 @@ AboutView::_CreateCreditsView()
fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kDarkGrey); fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kDarkGrey);
fCreditsView->Insert(kPastWebsiteTeam); fCreditsView->Insert(kPastWebsiteTeam);
fCreditsView->SetFontAndColor(&font, B_FONT_ALL, &kHaikuOrange);
fCreditsView->Insert(B_TRANSLATE("Testing and bug triaging:\n"));
fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kDarkGrey);
fCreditsView->Insert(kTestingTeam);
fCreditsView->SetFontAndColor(&font, B_FONT_ALL, &kHaikuOrange); fCreditsView->SetFontAndColor(&font, B_FONT_ALL, &kHaikuOrange);
fCreditsView->Insert(B_TRANSLATE("Contributors:\n")); fCreditsView->Insert(B_TRANSLATE("Contributors:\n"));
+8 -4
View File
@@ -380,6 +380,7 @@ static const Translation kTranslations[] = {
#define kNumberOfTranslations (sizeof(kTranslations) / sizeof(Translation)) #define kNumberOfTranslations (sizeof(kTranslations) / sizeof(Translation))
#define kCurrentMaintainers \ #define kCurrentMaintainers \
"Kyle Ambroff-Kao\n" \
"Stephan Aßmus\n" \ "Stephan Aßmus\n" \
"Augustin Cavalier\n" \ "Augustin Cavalier\n" \
"Stefano Ceccherini\n" \ "Stefano Ceccherini\n" \
@@ -459,8 +460,13 @@ static const Translation kTranslations[] = {
"Siarzhuk Zharski\n" \ "Siarzhuk Zharski\n" \
"\n" "\n"
#define kTestingTeam \
"luroh\n" \
"Robert Mercer (Vidrep)\n" \
"Sergei Reznikov\n" \
"\n"
#define kContributors \ #define kContributors \
"Kyle Ambroff-Kao\n" \
"Andrea Anzani\n" \ "Andrea Anzani\n" \
"Sean Bartell\n" \ "Sean Bartell\n" \
"Sambuddha Basu\n" \ "Sambuddha Basu\n" \
@@ -521,13 +527,11 @@ static const Translation kTranslations[] = {
"Brian Luft\n" \ "Brian Luft\n" \
"Christof Lutteroth\n" \ "Christof Lutteroth\n" \
"Graham MacDonald\n" \ "Graham MacDonald\n" \
"Jorge G. Mare (Koki)\n" \
"Jan Matějek\n" \ "Jan Matějek\n" \
"Brian Matzon\n" \ "Brian Matzon\n" \
"Christopher ML Zumwalt May\n" \ "Christopher ML Zumwalt May\n" \
"Andrew McCall\n" \ "Andrew McCall\n" \
"Nathan Mentley\n" \ "Nathan Mentley\n" \
"Robert Mercer (Vidrep)\n" \
"Marius Middelthon\n" \ "Marius Middelthon\n" \
"Marco Minutoli\n" \ "Marco Minutoli\n" \
"Misza\n" \ "Misza\n" \
@@ -548,7 +552,6 @@ static const Translation kTranslations[] = {
"Jeremy Rand\n" \ "Jeremy Rand\n" \
"Hartmut Reh\n" \ "Hartmut Reh\n" \
"Daniel Reinhold\n" \ "Daniel Reinhold\n" \
"Sergei Reznikov\n" \
"Chris Roberts\n" \ "Chris Roberts\n" \
"Samuel Rodríguez Pérez\n" \ "Samuel Rodríguez Pérez\n" \
"Thomas Roell\n" \ "Thomas Roell\n" \
@@ -583,6 +586,7 @@ static const Translation kTranslations[] = {
#define kPastWebsiteTeam \ #define kPastWebsiteTeam \
"Phil Greenway\n" \ "Phil Greenway\n" \
"Gavin James\n" \ "Gavin James\n" \
"Jorge G. Mare (Koki)\n" \
"Urias McCullough\n" \ "Urias McCullough\n" \
"Richie Nyhus\n" \ "Richie Nyhus\n" \
"Jonathan Yoder\n" \ "Jonathan Yoder\n" \