2018-05-05 07:14:44 +00:00
|
|
|
|
/* Version.h
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
|
* distribution for more details. */
|
|
|
|
|
|
2011-12-16 12:11:33 +00:00
|
|
|
|
#ifndef VERSION_H
|
|
|
|
|
#define VERSION_H
|
|
|
|
|
|
|
|
|
|
#include <qglobal.h>
|
2014-07-09 03:49:20 +00:00
|
|
|
|
#include "build_number.h"
|
2011-12-16 12:11:33 +00:00
|
|
|
|
|
2016-03-03 13:26:08 +00:00
|
|
|
|
const int major_version = 1; // incompatible API changes
|
2018-04-22 12:06:48 +00:00
|
|
|
|
const int minor_version = 1; // new features that don't break things
|
2016-03-06 02:50:22 +00:00
|
|
|
|
const int revision_number = 0; // bugfixes, revisions
|
2018-04-22 12:06:48 +00:00
|
|
|
|
const QString ReleaseStatus = "unstable"; // testing/nightly/unstable, beta/untamed, rc/almost, r/stable
|
2016-03-03 13:26:08 +00:00
|
|
|
|
|
2016-03-06 02:50:22 +00:00
|
|
|
|
const QString VersionString = QString("%1.%2.%3-%4-%5").arg(major_version).arg(minor_version).arg(revision_number).arg(ReleaseStatus).arg(build_number);
|
2011-12-16 12:11:33 +00:00
|
|
|
|
|
2013-01-17 18:26:11 +00:00
|
|
|
|
#ifdef Q_OS_MAC
|
2014-04-17 05:52:25 +00:00
|
|
|
|
const QString PlatformString = "MacOSX";
|
2013-01-20 16:31:51 +00:00
|
|
|
|
#elif defined(Q_OS_WIN32)
|
2014-04-17 05:52:25 +00:00
|
|
|
|
const QString PlatformString = "Win32";
|
2018-05-05 07:14:44 +00:00
|
|
|
|
#elif defined(Q_OS_WIN64)
|
|
|
|
|
const QString PlatformString = "Win64";
|
2013-01-20 19:39:01 +00:00
|
|
|
|
#elif defined(Q_OS_LINUX)
|
2014-04-17 05:52:25 +00:00
|
|
|
|
const QString PlatformString = "Linux";
|
2016-01-05 06:06:32 +00:00
|
|
|
|
#elif defined(Q_OS_HAIKU)
|
|
|
|
|
const QString PlatformString = "Haiku";
|
2011-12-16 12:11:33 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // VERSION_H
|