forked from len0rd/rockbox
Implement a first, simple changelog dialog.
When Rockbox Utility is started for the first time, a new version is started or the user selected to do so on startup a changelog window is shown. Change-Id: Ic223e092a09d31ccbbfcd9b973355225cac27632
This commit is contained in:
parent
1977281bb3
commit
8df12c63b8
11 changed files with 215 additions and 1 deletions
|
|
@ -31,6 +31,7 @@ const static struct {
|
|||
const char* def;
|
||||
} UserSettingsList[] = {
|
||||
{ RbSettings::RbutilVersion, "rbutil_version", "" },
|
||||
{ RbSettings::ShowChangelog, "show_changelog", "false" },
|
||||
{ RbSettings::CurrentPlatform, "platform", "" },
|
||||
{ RbSettings::Mountpoint, "mountpoint", "" },
|
||||
{ RbSettings::CachePath, "cachepath", "" },
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ class RbSettings : public QObject
|
|||
//! All user settings
|
||||
enum UserSettings {
|
||||
RbutilVersion,
|
||||
ShowChangelog,
|
||||
CurrentPlatform,
|
||||
Mountpoint,
|
||||
CachePath,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue