mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
rbutil: Add erosqnative
- Give each brand its own entry, and make ranges of OF versions correspond to hardware changes. - Temporarily disabled target aigoerosq. - Post-install hint enabled. - Added pre-install hint function - Added optional parameter themename, in case the target name does not match the themesite name. - Made Port Status (statusAsString()) only care about platform string prior to first '.' - Manual: Remove note that rbutil does not support this model Issues: - Cannot uninstall the bootloader - manual instructions are available Change-Id: I574aad7943ea3d1e543e9449f68240446fec0709
This commit is contained in:
parent
f0c208554c
commit
5d2692375d
12 changed files with 170 additions and 12 deletions
|
|
@ -85,8 +85,13 @@ void ThemesInstallWindow::downloadInfo()
|
|||
themesInfo.close();
|
||||
|
||||
QString infoUrl = PlayerBuildInfo::instance()->value(PlayerBuildInfo::ThemesInfoUrl).toString();
|
||||
infoUrl.replace("%TARGET%",
|
||||
RbSettings::value(RbSettings::CurrentPlatform).toString().split(".").at(0));
|
||||
if (PlayerBuildInfo::instance()->value(PlayerBuildInfo::ThemeName).toString() != "") {
|
||||
infoUrl.replace("%TARGET%",
|
||||
PlayerBuildInfo::instance()->value(PlayerBuildInfo::ThemeName).toString());
|
||||
} else {
|
||||
infoUrl.replace("%TARGET%",
|
||||
RbSettings::value(RbSettings::CurrentPlatform).toString().split(".").at(0));
|
||||
}
|
||||
infoUrl.replace("%REVISION%", installInfo.revision());
|
||||
infoUrl.replace("%RELEASE%", installInfo.release());
|
||||
infoUrl.replace("%RBUTILVER%", VERSION);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue