Update version number for R14.0 development

pull/16/head
Timothy Pearson 13 years ago
parent 97f0944cf7
commit b4fdee3ff8

@ -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);

@ -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 \

Loading…
Cancel
Save