diff --git a/CMakeLists.txt b/CMakeLists.txt index 65c43187..fc3021f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,11 +41,11 @@ endif() # A project name is needed for CPack # Version can be overriden by git tags, see cmake/getversion.cmake -PROJECT("Cockatrice" VERSION 2.7.6) +PROJECT("Cockatrice" VERSION 2.8.0) # Set release name if not provided via env/cmake var if(NOT DEFINED GIT_TAG_RELEASENAME) - set(GIT_TAG_RELEASENAME "Blessed Sanctuary") + set(GIT_TAG_RELEASENAME "Prismatic Bridge") endif() # Use c++11 for all targets diff --git a/common/featureset.cpp b/common/featureset.cpp index cdd30f22..0151d5c0 100644 --- a/common/featureset.cpp +++ b/common/featureset.cpp @@ -26,8 +26,8 @@ void FeatureSet::initalizeFeatureList(QMap &featureList) featureList.insert("forgot_password", false); featureList.insert("websocket", false); // These are temp to force users onto a newer client - featureList.insert("2.6.1_min_version", false); featureList.insert("2.7.0_min_version", false); + featureList.insert("2.8.0_min_version", false); } void FeatureSet::enableRequiredFeature(QMap &featureList, QString featureName) diff --git a/webclient/src/websocket/WebClient.tsx b/webclient/src/websocket/WebClient.tsx index 13acffd3..b26c7b29 100644 --- a/webclient/src/websocket/WebClient.tsx +++ b/webclient/src/websocket/WebClient.tsx @@ -52,8 +52,8 @@ export class WebClient { "user_ban_history", // satisfy server reqs for POC "websocket", - "2.6.1_min_version", "2.7.0_min_version", + "2.8.0_min_version" ] };