mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
rbutil: fix URL to build-info for dailies and releases. And hide targets which are not in the stable or unstable category.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22705 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a2c9440eed
commit
0695b1af6c
2 changed files with 14 additions and 3 deletions
|
@ -244,11 +244,14 @@ QStringList RbSettings::platforms()
|
||||||
QStringList result;
|
QStringList result;
|
||||||
systemSettings->beginGroup("platforms");
|
systemSettings->beginGroup("platforms");
|
||||||
QStringList a = systemSettings->childKeys();
|
QStringList a = systemSettings->childKeys();
|
||||||
|
systemSettings->endGroup();
|
||||||
for(int i = 0; i < a.size(); i++)
|
for(int i = 0; i < a.size(); i++)
|
||||||
{
|
{
|
||||||
result.append(systemSettings->value(a.at(i), "null").toString());
|
//only add not disabled targets
|
||||||
|
QString target = systemSettings->value("platforms/"+a.at(i), "null").toString();
|
||||||
|
if(systemSettings->value(target+"/status").toString() != "disabled")
|
||||||
|
result.append(target);
|
||||||
}
|
}
|
||||||
systemSettings->endGroup();
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
release_url=http://download.rockbox.org/release/%RELVERSION%/rockbox-%MODEL%-%RELVERSION%.zip
|
release_url=http://download.rockbox.org/release/%RELVERSION%/rockbox-%MODEL%-%RELVERSION%.zip
|
||||||
daily_url=http://download.rockbox.org/daily/%MODEL%/rockbox-%MODEL%.zip
|
daily_url=http://download.rockbox.org/daily/%MODEL%/rockbox-%MODEL%.zip
|
||||||
bleeding_url=http://build.rockbox.org/data/rockbox-%MODEL%.zip
|
bleeding_url=http://build.rockbox.org/data/rockbox-%MODEL%.zip
|
||||||
server_conf_url=http://www.rockbox.org/daily/build-info
|
server_conf_url=http://download.rockbox.org/daily/build-info
|
||||||
bootloader_info_url=http://download.rockbox.org/bootloader/bootloaders-info
|
bootloader_info_url=http://download.rockbox.org/bootloader/bootloaders-info
|
||||||
bleeding_info=http://build.rockbox.org/cvsmod/build-info
|
bleeding_info=http://build.rockbox.org/cvsmod/build-info
|
||||||
font_url=http://www.rockbox.org/daily/fonts/rockbox-fonts.zip
|
font_url=http://www.rockbox.org/daily/fonts/rockbox-fonts.zip
|
||||||
|
@ -422,6 +422,7 @@ usbid=
|
||||||
usberror=
|
usberror=
|
||||||
configure_modelname=m200v4
|
configure_modelname=m200v4
|
||||||
encoder=rbspeex
|
encoder=rbspeex
|
||||||
|
status=disabled
|
||||||
|
|
||||||
[sansaclip]
|
[sansaclip]
|
||||||
name="Sansa Clip"
|
name="Sansa Clip"
|
||||||
|
@ -435,6 +436,7 @@ usbid=0x07817433
|
||||||
usberror=0x07817432
|
usberror=0x07817432
|
||||||
configure_modelname=clip
|
configure_modelname=clip
|
||||||
encoder=rbspeex
|
encoder=rbspeex
|
||||||
|
status=disabled
|
||||||
|
|
||||||
[mrobe100]
|
[mrobe100]
|
||||||
name="m:robe100"
|
name="m:robe100"
|
||||||
|
@ -459,6 +461,7 @@ brand=Onda
|
||||||
usbid=0x07c4a4a5
|
usbid=0x07c4a4a5
|
||||||
configure_modelname=ondavx747
|
configure_modelname=ondavx747
|
||||||
encoder=rbspeex
|
encoder=rbspeex
|
||||||
|
status=disabled
|
||||||
|
|
||||||
[ondavx747p]
|
[ondavx747p]
|
||||||
name="VX747+"
|
name="VX747+"
|
||||||
|
@ -471,6 +474,7 @@ brand=Onda
|
||||||
usbid=0x07c4a4a5
|
usbid=0x07c4a4a5
|
||||||
configure_modelname=ondavx747p
|
configure_modelname=ondavx747p
|
||||||
encoder=rbspeex
|
encoder=rbspeex
|
||||||
|
status=disabled
|
||||||
|
|
||||||
[ondavx777]
|
[ondavx777]
|
||||||
name="VX777"
|
name="VX777"
|
||||||
|
@ -483,6 +487,7 @@ brand=Onda
|
||||||
usbid=0x07c4a4a5
|
usbid=0x07c4a4a5
|
||||||
configure_modelname=ondavx777
|
configure_modelname=ondavx777
|
||||||
encoder=rbspeex
|
encoder=rbspeex
|
||||||
|
status=disabled
|
||||||
|
|
||||||
[smsgyh820]
|
[smsgyh820]
|
||||||
name="YH-820"
|
name="YH-820"
|
||||||
|
@ -495,6 +500,7 @@ brand=Samsung
|
||||||
usbid=0x04e85023
|
usbid=0x04e85023
|
||||||
configure_modelname=yh820
|
configure_modelname=yh820
|
||||||
encoder=rbspeex
|
encoder=rbspeex
|
||||||
|
status=disabled
|
||||||
|
|
||||||
[smsgyh920]
|
[smsgyh920]
|
||||||
name="YH-920"
|
name="YH-920"
|
||||||
|
@ -507,6 +513,7 @@ brand=Samsung
|
||||||
usbid=0x04e85022, 0x04e8501d
|
usbid=0x04e85022, 0x04e8501d
|
||||||
configure_modelname=yh920
|
configure_modelname=yh920
|
||||||
encoder=rbspeex
|
encoder=rbspeex
|
||||||
|
status=disabled
|
||||||
|
|
||||||
[smsgyh925]
|
[smsgyh925]
|
||||||
name="YH-925"
|
name="YH-925"
|
||||||
|
@ -519,6 +526,7 @@ brand=Samsung
|
||||||
usbid=0x04e85024
|
usbid=0x04e85024
|
||||||
configure_modelname=yh925
|
configure_modelname=yh925
|
||||||
encoder=rbspeex
|
encoder=rbspeex
|
||||||
|
status=disabled
|
||||||
|
|
||||||
[05ac1260]
|
[05ac1260]
|
||||||
name="Apple Ipod Nano (Second Generation)"
|
name="Apple Ipod Nano (Second Generation)"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue