forked from len0rd/rockbox
Remove "daily builds" from Rockbox Utility.
Since Rockbox Utility could only install the most recent "daily build" there is not much difference to the most recent development build so the option was not really useful. Additionally update naming. Former "daily" builds are now "archived builds" and can get installed manually (if necessary), and "current" builds are renamed to "development build". Change-Id: I748688d544b6d9868f7495f30933637bf9ff5e50
This commit is contained in:
parent
12c64a4b79
commit
45782df278
5 changed files with 8 additions and 57 deletions
|
|
@ -32,7 +32,6 @@ const static struct {
|
|||
} ServerInfoList[] = {
|
||||
{ ServerInfo::CurReleaseVersion, ":platform:/releaseversion", "" },
|
||||
{ ServerInfo::CurStatus, ":platform:/status", "Unknown" },
|
||||
{ ServerInfo::DailyRevision, "dailyrev", "" },
|
||||
{ ServerInfo::DailyDate, "dailydate", "" },
|
||||
{ ServerInfo::BleedingRevision, "bleedingrev", "" },
|
||||
{ ServerInfo::BleedingDate, "bleedingdate", "" },
|
||||
|
|
@ -44,7 +43,6 @@ void ServerInfo::readBuildInfo(QString file)
|
|||
{
|
||||
QSettings info(file, QSettings::IniFormat);
|
||||
|
||||
setValue(ServerInfo::DailyRevision,info.value("dailies/rev"));
|
||||
QDate date = QDate::fromString(info.value("dailies/date").toString(), "yyyyMMdd");
|
||||
setValue(ServerInfo::DailyDate,date.toString(Qt::ISODate));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue