Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
System
Kup
Commits
d7aa7360
Commit
d7aa7360
authored
Feb 19, 2013
by
Simon Persson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set version to 0.3.
parent
2754ffff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
daemon/main.cpp
daemon/main.cpp
+1
-1
kcm/kupkcm.cpp
kcm/kupkcm.cpp
+3
-1
No files found.
daemon/main.cpp
View file @
d7aa7360
...
...
@@ -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
();
...
...
kcm/kupkcm.cpp
View file @
d7aa7360
...
...
@@ -42,11 +42,13 @@
K_PLUGIN_FACTORY
(
KupKcmFactory
,
registerPlugin
<
KupKcm
>
();)
K_EXPORT_PLUGIN
(
KupKcmFactory
(
"kcm_kup"
,
"kup"
))
static
const
char
version
[]
=
"0.3"
;
KupKcm
::
KupKcm
(
QWidget
*
pParent
,
const
QList
<
QVariant
>
&
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment