From d7aa7360e6ce067a39238e75662b55406370e6cf Mon Sep 17 00:00:00 2001 From: Simon Persson Date: Tue, 19 Feb 2013 19:01:56 +0800 Subject: [PATCH] Set version to 0.3. --- daemon/main.cpp | 2 +- kcm/kupkcm.cpp | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/daemon/main.cpp b/daemon/main.cpp index 9389bfc..6dd7891 100644 --- a/daemon/main.cpp +++ b/daemon/main.cpp @@ -32,7 +32,7 @@ static const char description[] = I18N_NOOP("Kup is a flexible backup solution u "This allows it to quickly perform incremental backups, only saving the " "parts of files that has actually changed since last backup was taken."); -static const char version[] = "0.1"; +static const char version[] = "0.3"; int main(int argc, char **argv) { KupDaemon *lDaemon = new KupDaemon(); diff --git a/kcm/kupkcm.cpp b/kcm/kupkcm.cpp index ee68639..a1b8f25 100644 --- a/kcm/kupkcm.cpp +++ b/kcm/kupkcm.cpp @@ -42,11 +42,13 @@ K_PLUGIN_FACTORY(KupKcmFactory, registerPlugin();) K_EXPORT_PLUGIN(KupKcmFactory("kcm_kup", "kup")) +static const char version[] = "0.3"; + KupKcm::KupKcm(QWidget *pParent, const QList &pArgs) : KCModule(KupKcmFactory::componentData(), pParent, pArgs) { KAboutData *lAboutData = new KAboutData("kcm_kup", 0, ki18n("Kup Configuration Module"), - "0.1.0", ki18n("Configuration of backup plans for the Kup backup system"), + version, ki18n("Configuration of backup plans for the Kup backup system"), KAboutData::License_GPL, ki18n("Copyright 2011 Simon Persson")); lAboutData->addAuthor(ki18n("Simon Persson"), ki18n("Maintainer"), "simonpersson1@gmail.com"); setAboutData(lAboutData); -- GitLab