Merge rbutil CREDITS file with main one and use that.
Similar to removing the separate CREDITS file for the manual remove the rbutil one as discussed on IRC. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24329 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2910f91804
commit
0f6bfdb4c3
5 changed files with 10 additions and 16 deletions
|
@ -521,6 +521,7 @@ Phinitnun Chanasabaeng
|
|||
Tse-Hsien Chiang
|
||||
Szymon Dziok
|
||||
Domenico Di Misa
|
||||
Delyan Kratunov
|
||||
|
||||
The libmad team
|
||||
The wavpack team
|
||||
|
|
|
@ -89,6 +89,7 @@ svnpaths = [ "rbutil/",
|
|||
"tools/rbspeex",
|
||||
"apps/codecs/libspeex",
|
||||
"docs/COPYING",
|
||||
"docs/CREDITS",
|
||||
"tools/iriver.c",
|
||||
"tools/Makefile",
|
||||
"tools/mkboot.h",
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
Christi Alice Scarborough
|
||||
Dave Chapman
|
||||
Dominik Wenger
|
||||
Bryan Childs
|
||||
Dave Hooper
|
||||
Dominik Riebeling
|
||||
Tomer Shalev
|
||||
Yoshihisa Uchida
|
||||
Alexander Spyridakis
|
||||
Rui Araújo
|
||||
Delyan Kratunov
|
||||
Adilson Xavier
|
||||
Pavel Rzehák
|
|
@ -287,8 +287,13 @@ void RbUtilQt::about()
|
|||
credits.open(QIODevice::ReadOnly);
|
||||
QTextStream r(&credits);
|
||||
r.setCodec(QTextCodec::codecForName("UTF-8"));
|
||||
QString rline = r.readAll();
|
||||
about.browserCredits->insertPlainText(rline);
|
||||
while(!r.atEnd()) {
|
||||
QString line = r.readLine();
|
||||
// filter out header.
|
||||
line.remove(QRegExp("^[^A-Z]+.*"));
|
||||
line.remove(QRegExp("^People.*"));
|
||||
about.browserCredits->append(line);
|
||||
}
|
||||
about.browserCredits->moveCursor(QTextCursor::Start, QTextCursor::MoveAnchor);
|
||||
QString title = QString("<b>The Rockbox Utility</b><br/>Version %1").arg(FULLVERSION);
|
||||
about.labelTitle->setText(title);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<RCC>
|
||||
<qresource prefix="/" >
|
||||
<file>docs/CREDITS</file>
|
||||
<file>../../docs/CREDITS</file>
|
||||
<file>docs/gpl-2.0.html</file>
|
||||
</qresource>
|
||||
<qresource>
|
||||
|
|
Loading…
Reference in a new issue