add feature list requirement (#3287)
* add feature list requirement * version update * version bump
This commit is contained in:
parent
d36f86c523
commit
e147bd6cea
3 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
version: 2.5.2-branch-{branch}-build-{build}
|
||||
version: 2.6.0-branch-{branch}-build-{build}
|
||||
|
||||
# Skipping commits affecting specific files (GitHub only).
|
||||
# More details here: https://www.appveyor.com/docs/appveyor-yml and https://www.appveyor.com/docs/how-to/filtering-commits
|
||||
|
|
|
@ -34,7 +34,7 @@ endif()
|
|||
|
||||
# A project name is needed for CPack
|
||||
# Version can be overriden by git tags, see cmake/getversion.cmake
|
||||
PROJECT("Cockatrice" VERSION 2.5.2)
|
||||
PROJECT("Cockatrice" VERSION 2.6.0)
|
||||
|
||||
# Use c++11 for all targets
|
||||
set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ ISO Standard")
|
||||
|
|
|
@ -23,6 +23,7 @@ void FeatureSet::initalizeFeatureList(QMap<QString, bool> &featureList)
|
|||
featureList.insert("mod_log_lookup", false);
|
||||
featureList.insert("idle_client", false);
|
||||
featureList.insert("forgot_password", false);
|
||||
featureList.insert("2.6.0_min_version", false); // This is temp to force users onto a newer client
|
||||
}
|
||||
|
||||
void FeatureSet::enableRequiredFeature(QMap<QString, bool> &featureList, QString featureName)
|
||||
|
|
Loading…
Reference in a new issue