First attempt at a more balanced Credits section:
* Changed the copyright line to say "The Haiku project", similar to the GNU and BSD copyrights. Then a clarifying sentence as discussed on the developer mailing list. * Removed the outdated Team list in favor of a "Most influential developers" list with the top contributors of the past and the present in order of SVN commit numbers. It could be argued that Travis should be part of this list but he is already mentioned later with a special note. I used this wording to indicate that it could also mention no longer active, but still "most influential" developers. "Lead developers" or "Core developers" would not have this aspect. * Created a new "Website, Marketing & Documentation" section which gives hopefully all or at least most people a more prominent mention which are contributing most in this area. Waldemar Kornewald could be moved to this list as well. Koki was not mentioned anywhere before, which definitely needed to be corrected! :-) * Maurice Kalinowski and Fredrik Modeen are now commiters. * Added Andrej Spielmann (Subpixel Anti-aliasing) to the developers list, since he has commit access too now. * Added David Powell to list of contributors, for his recent patch to the boot splash generator and boot loader. * Added Copyright for CQuantizer (part of the mentioned patch from David) If you have suggestions for improvements, please shoot, especially if I forgot someone! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27262 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
a61498c87d
commit
e03fa4888e
@ -201,7 +201,7 @@ AboutView::AboutView(const BRect &rect)
|
||||
r.OffsetBy(0, labelHeight);
|
||||
r.bottom = r.top + textHeight;
|
||||
|
||||
char string[256];
|
||||
char string[1024];
|
||||
strcpy(string, "Unknown");
|
||||
|
||||
// the version is stored in the BEOS:APP_VERSION attribute of libbe.so
|
||||
@ -354,44 +354,70 @@ AboutView::AboutView(const BRect &rect)
|
||||
B_PLAIN_BORDER);
|
||||
AddChild(creditsScroller);
|
||||
|
||||
// Haiku copyright
|
||||
BFont font(be_bold_font);
|
||||
font.SetSize(font.Size() + 4);
|
||||
|
||||
fCreditsView->SetFontAndColor(&font, B_FONT_ALL, &kHaikuGreen);
|
||||
fCreditsView->Insert("Haiku\n");
|
||||
|
||||
font.SetSize(be_bold_font->Size());
|
||||
font.SetFace(B_BOLD_FACE | B_ITALIC_FACE);
|
||||
|
||||
time_t time = ::time(NULL);
|
||||
struct tm* tm = localtime(&time);
|
||||
int32 year = tm->tm_year + 1900;
|
||||
if (year < 2007)
|
||||
year = 2007;
|
||||
if (year < 2008)
|
||||
year = 2008;
|
||||
snprintf(string, sizeof(string),
|
||||
"Copyright " B_UTF8_COPYRIGHT "2001-%ld Haiku, Inc.\n", year);
|
||||
"Copyright " B_UTF8_COPYRIGHT " 2001-%ld The Haiku project.", year);
|
||||
|
||||
fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kDarkGrey);
|
||||
fCreditsView->Insert(string);
|
||||
|
||||
fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kDarkGrey);
|
||||
fCreditsView->Insert("The copyright to the Haiku code is property of "
|
||||
"Haiku, Inc. or of the respective authors where expressly noted "
|
||||
"in the source."
|
||||
"\n\n");
|
||||
|
||||
|
||||
fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kLinkBlue);
|
||||
fCreditsView->InsertHyperText("http://haiku-os.org",
|
||||
new URLAction("http://haiku-os.org"));
|
||||
fCreditsView->InsertHyperText("http://www.haiku-os.org",
|
||||
new URLAction("http://www.haiku-os.org"));
|
||||
fCreditsView->Insert("\n\n");
|
||||
|
||||
font.SetSize(be_bold_font->Size());
|
||||
font.SetFace(B_BOLD_FACE | B_ITALIC_FACE);
|
||||
|
||||
fCreditsView->SetFontAndColor(&font, B_FONT_ALL, &kHaikuOrange);
|
||||
fCreditsView->Insert("Team Leads:\n");
|
||||
fCreditsView->Insert("Most influential developers:\n");
|
||||
|
||||
fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kDarkGrey);
|
||||
fCreditsView->Insert(
|
||||
"Axel Dörfler\n"
|
||||
"Phil Greenway\n"
|
||||
"Philippe Houdoin\n"
|
||||
"Marcus Overhagen\n"
|
||||
"Ingo Weinhold\n"
|
||||
"Stephan Aßmus\n"
|
||||
"Jérôme Duval\n"
|
||||
"Stefano Ceccherini\n"
|
||||
"François Revol\n"
|
||||
"Marcus Overhagen\n"
|
||||
"Michael Lotz\n"
|
||||
"Rudolf Cornelissen\n"
|
||||
"\n");
|
||||
|
||||
|
||||
fCreditsView->SetFontAndColor(&font, B_FONT_ALL, &kHaikuOrange);
|
||||
fCreditsView->Insert("Website, Marketing & Documention:\n");
|
||||
|
||||
fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kDarkGrey);
|
||||
fCreditsView->Insert(
|
||||
"Phil Greenway\n"
|
||||
"Gavin James\n"
|
||||
"Jorge G. Mare\n"
|
||||
"Urias McCullough\n"
|
||||
"Niels Sascha Reedijk\n"
|
||||
"Jonathan Yoder\n"
|
||||
"\n");
|
||||
|
||||
|
||||
fCreditsView->SetFontAndColor(&font, B_FONT_ALL, &kHaikuOrange);
|
||||
fCreditsView->Insert("Developers:\n");
|
||||
|
||||
@ -399,26 +425,23 @@ AboutView::AboutView(const BRect &rect)
|
||||
fCreditsView->Insert(
|
||||
"Ithamar R. Adema\n"
|
||||
"Bruno G. Albuquerque\n"
|
||||
"Stephan Aßmus\n"
|
||||
"Andrew Bachmann\n"
|
||||
"Salvatore Benedetto\n"
|
||||
"Stefano Ceccherini\n"
|
||||
"Rudolf Cornelissen\n"
|
||||
"Alexandre Deckner\n"
|
||||
"Oliver Ruiz Dorantes\n"
|
||||
"Jérôme Duval\n"
|
||||
"Andre Alves Garzia\n"
|
||||
"René Gollent\n"
|
||||
"Karsten Heimrich\n"
|
||||
"Philippe Houdoin\n"
|
||||
"Maurice Kalinowski\n"
|
||||
"Euan Kirkhope\n"
|
||||
"Waldemar Kornewald\n"
|
||||
"Ryan Leavengood\n"
|
||||
"Michael Lotz\n"
|
||||
"David McPaul\n"
|
||||
"Fredrik Modéen\n"
|
||||
"Michael Pfeiffer\n"
|
||||
"Niels Sascha Reedijk\n"
|
||||
"François Revol\n"
|
||||
"Hugo Santos\n"
|
||||
"Andrej Spielmann\n"
|
||||
"Jonas Sundström\n"
|
||||
"Gerasim Troeglazov\n"
|
||||
"Bryan Varner\n"
|
||||
@ -447,7 +470,6 @@ AboutView::AboutView(const BRect &rect)
|
||||
"Morgan Howe\n"
|
||||
"Erik Jaesler\n"
|
||||
"Carwyn Jones\n"
|
||||
"Maurice Kalinowski\n"
|
||||
"Vasilis Kaoutsis\n"
|
||||
"James Kim\n"
|
||||
"Shintaro Kinugawa\n"
|
||||
@ -471,12 +493,10 @@ AboutView::AboutView(const BRect &rect)
|
||||
"Christopher ML Zumwalt May\n"
|
||||
"Andrew McCall\n"
|
||||
"Scott McCreary\n"
|
||||
"Urias McCullough\n"
|
||||
"Michele (zuMi)\n"
|
||||
"Marius Middelthon\n"
|
||||
"Marco Minutoli\n"
|
||||
"Misza\n"
|
||||
"Fredrik Modéen\n"
|
||||
"MrSiggler\n"
|
||||
"Alan Murta\n"
|
||||
"Frans Van Nispen\n"
|
||||
@ -484,6 +504,7 @@ AboutView::AboutView(const BRect &rect)
|
||||
"Pahtz\n"
|
||||
"Michael Paine\n"
|
||||
"Michael Phipps\n"
|
||||
"David Powell\n"
|
||||
"Jeremy Rand\n"
|
||||
"Hartmut Reh\n"
|
||||
"David Reid\n"
|
||||
@ -728,6 +749,11 @@ AboutView::AboutView(const BRect &rect)
|
||||
"All rights reserved.",
|
||||
"http://www.matroska.org");
|
||||
|
||||
// BColorQuantizer (originally CQuantizer code)
|
||||
AddCopyrightEntry("CQuantizer",
|
||||
"Copyright " B_UTF8_COPYRIGHT " 1996-1997 Jeff Prosise. "
|
||||
"All rights reserved.");
|
||||
|
||||
// OpenSound
|
||||
// AddCopyrightEntry("OpenSound",
|
||||
// "Copyright " B_UTF8_COPYRIGHT " 1996-2008 4Front Technologies ",
|
||||
|
Loading…
Reference in New Issue
Block a user