mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
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
|
Tse-Hsien Chiang
|
||||||
Szymon Dziok
|
Szymon Dziok
|
||||||
Domenico Di Misa
|
Domenico Di Misa
|
||||||
|
Delyan Kratunov
|
||||||
|
|
||||||
The libmad team
|
The libmad team
|
||||||
The wavpack team
|
The wavpack team
|
||||||
|
|
|
@ -89,6 +89,7 @@ svnpaths = [ "rbutil/",
|
||||||
"tools/rbspeex",
|
"tools/rbspeex",
|
||||||
"apps/codecs/libspeex",
|
"apps/codecs/libspeex",
|
||||||
"docs/COPYING",
|
"docs/COPYING",
|
||||||
|
"docs/CREDITS",
|
||||||
"tools/iriver.c",
|
"tools/iriver.c",
|
||||||
"tools/Makefile",
|
"tools/Makefile",
|
||||||
"tools/mkboot.h",
|
"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);
|
credits.open(QIODevice::ReadOnly);
|
||||||
QTextStream r(&credits);
|
QTextStream r(&credits);
|
||||||
r.setCodec(QTextCodec::codecForName("UTF-8"));
|
r.setCodec(QTextCodec::codecForName("UTF-8"));
|
||||||
QString rline = r.readAll();
|
while(!r.atEnd()) {
|
||||||
about.browserCredits->insertPlainText(rline);
|
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);
|
about.browserCredits->moveCursor(QTextCursor::Start, QTextCursor::MoveAnchor);
|
||||||
QString title = QString("<b>The Rockbox Utility</b><br/>Version %1").arg(FULLVERSION);
|
QString title = QString("<b>The Rockbox Utility</b><br/>Version %1").arg(FULLVERSION);
|
||||||
about.labelTitle->setText(title);
|
about.labelTitle->setText(title);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<RCC>
|
<RCC>
|
||||||
<qresource prefix="/" >
|
<qresource prefix="/" >
|
||||||
<file>docs/CREDITS</file>
|
<file>../../docs/CREDITS</file>
|
||||||
<file>docs/gpl-2.0.html</file>
|
<file>docs/gpl-2.0.html</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource>
|
<qresource>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue