2013-01-29 05:31:20 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#pragma once
|
2013-01-29 05:31:20 +05:30
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2013-02-26 00:54:46 +05:30
|
|
|
/*!
|
|
|
|
* \brief The Version class represents a MultiMC version number.
|
|
|
|
*/
|
2013-08-03 19:27:33 +05:30
|
|
|
class AppVersion : public QObject
|
2013-01-29 05:31:20 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-08-03 19:27:33 +05:30
|
|
|
explicit AppVersion(int major = 0, int minor = 0, int revision = 0,
|
2013-01-29 05:31:20 +05:30
|
|
|
int build = 0, QObject *parent = 0);
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
AppVersion(const AppVersion& ver);
|
2013-02-01 04:24:06 +05:30
|
|
|
|
2013-02-26 00:54:46 +05:30
|
|
|
/*!
|
|
|
|
* \brief Converts the Version to a string.
|
|
|
|
* \return The version number in string format (major.minor.revision.build).
|
|
|
|
*/
|
2013-01-29 05:31:20 +05:30
|
|
|
QString toString() const;
|
|
|
|
|
2013-02-26 00:54:46 +05:30
|
|
|
/*!
|
|
|
|
* \brief The major version number.
|
|
|
|
* For MultiMC 5, this will always be 5.
|
|
|
|
*/
|
2013-01-29 05:31:20 +05:30
|
|
|
int major;
|
2013-02-26 00:54:46 +05:30
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief The minor version number.
|
|
|
|
* This number is incremented when major features are added.
|
|
|
|
*/
|
2013-01-29 05:31:20 +05:30
|
|
|
int minor;
|
2013-02-26 00:54:46 +05:30
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief The revision number.
|
|
|
|
* This number is incremented for bugfixes and small features.
|
|
|
|
*/
|
2013-01-29 05:31:20 +05:30
|
|
|
int revision;
|
2013-02-26 00:54:46 +05:30
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief The build number.
|
|
|
|
* This number is automatically set by Jenkins. It is incremented every time
|
|
|
|
* a new build is run.
|
|
|
|
*/
|
2013-01-29 05:31:20 +05:30
|
|
|
int build;
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
static AppVersion current;
|
2013-01-29 05:31:20 +05:30
|
|
|
};
|
|
|
|
|