Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
Support new leagues & release!
Browse files Browse the repository at this point in the history
  • Loading branch information
xyzz committed Mar 24, 2015
1 parent fe02a39 commit 2ce297b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/logindialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void LoginDialog::OnLeaguesRequestFinished() {
// But let's do our best and try to add at least some leagues!
// It's in case GGG's API is broken and suddenly starts returning empty pages,
// which of course will never happen.
leagues_ = { "Torment", "Bloodlines", "Standard", "Hardcore" };
leagues_ = { "Torment/Bloodlines", "Torment/Bloodlines HC", "Standard", "Hardcore" };
} else {
for (auto &league : doc)
leagues_.push_back(league["id"].GetString());
Expand Down
8 changes: 4 additions & 4 deletions src/version_defines.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#pragma once

#define VER_CODE 7
#define VER_STR "0.2a"
#define VER_FILEVERSION 0,2,1,0
#define VER_FILEVERSION_STR "0.2.1.0"
#define VER_CODE 8
#define VER_STR "0.2b"
#define VER_FILEVERSION 0,2,2,0
#define VER_FILEVERSION_STR "0.2.2.0"

#define VER_PRODUCTVERSION VER_FILEVERSION
#define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
Expand Down

0 comments on commit 2ce297b

Please sign in to comment.