1
0
Fork 0
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:
Dominik Riebeling 2013-09-20 23:03:56 +02:00
parent 1977281bb3
commit 8df12c63b8
11 changed files with 215 additions and 1 deletions

View file

@ -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", "" },

View file

@ -31,6 +31,7 @@ class RbSettings : public QObject
//! All user settings
enum UserSettings {
RbutilVersion,
ShowChangelog,
CurrentPlatform,
Mountpoint,
CachePath,