Skip to content

Commit

Permalink
Change release name/number for 2.8.0 and make it a forced update
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeldaZach committed Jan 26, 2021
1 parent 6fa5f4f commit 00c0162
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion common/featureset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ void FeatureSet::initalizeFeatureList(QMap<QString, bool> &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<QString, bool> &featureList, QString featureName)
Expand Down
2 changes: 1 addition & 1 deletion webclient/src/websocket/WebClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
};

Expand Down

0 comments on commit 00c0162

Please sign in to comment.