summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-15 19:10:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-15 19:10:08 -0600
commitb4fdee3ff89e0d05114d17b8e0f019a318047bbb (patch)
treefe77f52718f4b9e1748cdcefe8cbf24370563abd
parent97f0944cf74ef186aff1b083dd95c5c385b122fc (diff)
downloadtdelibs-b4fdee3f.tar.gz
tdelibs-b4fdee3f.zip
Update version number for R14.0 development
-rw-r--r--tdecore/kcmdlineargs.cpp2
-rw-r--r--tdecore/kdeversion.h16
2 files changed, 13 insertions, 5 deletions
diff --git a/tdecore/kcmdlineargs.cpp b/tdecore/kcmdlineargs.cpp
index f6b308b93..3c76feca1 100644
--- a/tdecore/kcmdlineargs.cpp
+++ b/tdecore/kcmdlineargs.cpp
@@ -594,7 +594,7 @@ KCmdLineArgs::parseAllArgs()
(::qstrcmp(option, "v") == 0))
{
printQ( TQString("Qt: %1\n").arg(qVersion()));
- printQ( TQString("KDE: %1\n").arg(TDE_VERSION_STRING));
+ printQ( TQString("TDE: %1\n").arg(TDE_VERSION_STRING));
printQ( TQString("%1: %2\n").
arg(about->programName()).arg(about->version()));
exit(0);
diff --git a/tdecore/kdeversion.h b/tdecore/kdeversion.h
index 1d087bb4c..a1060ea0c 100644
--- a/tdecore/kdeversion.h
+++ b/tdecore/kdeversion.h
@@ -22,10 +22,18 @@
#include "kdelibs_export.h"
-#define TDE_VERSION_STRING "3.5.13"
-#define TDE_VERSION_MAJOR 3
-#define TDE_VERSION_MINOR 5
-#define TDE_VERSION_RELEASE 13
+/*
+ R <ABI VERSION> . <BUGFIX REVISION> . <SECURITY PATCHLEVEL>
+ Security patchlevel is not present on initial release
+ It is added on the first security release, starting with ".a"
+ ".a" would correspond to a TDE_VERSION_RELEASE of 1, ".b" would be 2, etc.
+ A new bugfix revision resets the security level
+ A new ABI version resets both the bugfix revision and the security level
+*/
+#define TDE_VERSION_STRING "R14.0 [DEVELOPMENT]"
+#define TDE_VERSION_MAJOR 14
+#define TDE_VERSION_MINOR 0
+#define TDE_VERSION_RELEASE 0
#define KDE_MAKE_VERSION( a,b,c ) (((a) << 16) | ((b) << 8) | (c))
#define TDE_VERSION \