Add info window which shows details about the currently installed files based on the installation log file. Rework the log file and save revision number / timestamps instead of an arbitrary number.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14461 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2007-08-26 16:03:56 +00:00
parent 663029ddfb
commit 848abc8037
8 changed files with 228 additions and 61 deletions

View file

@ -42,6 +42,8 @@ public:
void setProxy(QUrl proxy) {m_proxy= proxy;}
void setLogSection(QString name) {m_loglist = QStringList(name);}
void setLogSection(QStringList name) { m_loglist = name; }
void setLogVersion(QString v) { m_verlist = QStringList(v); qDebug() << m_verlist;}
void setLogVersion(QStringList v) { m_verlist = v; qDebug() << m_verlist;}
void setUnzip(bool i) { m_unzip = i; }
void setTarget(QString t) { m_target = t; }
@ -58,8 +60,8 @@ private slots:
private:
void installSingle(ProgressloggerInterface *dp);
QString m_url, m_file, m_mountpoint, m_logsection;
QStringList m_urllist, m_loglist;
QString m_url, m_file, m_mountpoint, m_logsection, m_logver;
QStringList m_urllist, m_loglist, m_verlist;
QUrl m_proxy;
bool m_unzip;
QString m_target;