2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* Version
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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-05-04 18:02:41 +00:00
|
|
|
const int major_version = 0; // incompatible API changes
|
|
|
|
const int minor_version = 9; // new features that don't break things
|
2014-07-02 16:16:12 +00:00
|
|
|
const int patch_number = 7; // bugfixes, revisions
|
2012-01-12 09:35:50 +00:00
|
|
|
|
2014-05-04 06:21:26 +00:00
|
|
|
#ifdef TEST_BUILD
|
|
|
|
const QString ReleaseStatus = "testing";
|
2013-10-18 04:56:44 +00:00
|
|
|
#else
|
2014-04-17 05:52:25 +00:00
|
|
|
const QString ReleaseStatus = "beta";
|
2013-10-18 04:56:44 +00:00
|
|
|
#endif
|
|
|
|
|
2014-05-04 18:02:41 +00:00
|
|
|
const QString VersionString = QString().sprintf("%i.%i.%i", major_version, minor_version, patch_number);
|
|
|
|
const QString FullVersionString = QString().sprintf("%i.%i.%i", major_version, minor_version, patch_number)+"-"+ReleaseStatus;
|
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";
|
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";
|
2011-12-16 12:11:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // VERSION_H
|