forked from len0rd/rockbox
Distinguish between release and current build when installing voice files.
Check the installed Rockbox and install release voice file if a release is found. Fixes wrong voice file getting installed for releases, which especially showed up with the recent lang file cleanup. This is likely to be the cause for FS#11362. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26637 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b2998ef6c7
commit
56fea4f74d
4 changed files with 43 additions and 12 deletions
|
|
@ -39,6 +39,7 @@ const static struct {
|
|||
{ SystemInfo::BootloaderInfoUrl, "bootloader_info_url", "" },
|
||||
{ SystemInfo::FontUrl, "font_url", "" },
|
||||
{ SystemInfo::VoiceUrl, "voice_url", "" },
|
||||
{ SystemInfo::ReleaseVoiceUrl, "release_voice_url", "" },
|
||||
{ SystemInfo::DoomUrl, "doom_url", "" },
|
||||
{ SystemInfo::ReleaseUrl, "release_url", "" },
|
||||
{ SystemInfo::DailyUrl, "daily_url", "" },
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ class SystemInfo : public QObject
|
|||
VoiceUrl,
|
||||
DoomUrl,
|
||||
ReleaseUrl,
|
||||
ReleaseVoiceUrl,
|
||||
DailyUrl,
|
||||
ServerConfUrl,
|
||||
GenlangUrl,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue