Skip to content

Commit

Permalink
HSTracker version 2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoraes74 committed Aug 24, 2023
1 parent 24ab1f1 commit 4caa804
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.5.3
## New
**Bob's Buddy**
- Fixed further issues related to cards and mechanics added with Hearthstone 27.2.0.

# 2.5.2
## New
- Updated for patch 27.2.0
Expand Down
4 changes: 2 additions & 2 deletions HSTracker.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3946,7 +3946,7 @@
);
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/downloaded-frameworks/mono/runtimes/osx-x64/native";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 2.5.2;
MARKETING_VERSION = 2.5.3;
OTHER_CFLAGS = "$(inherited)";
OTHER_CODE_SIGN_FLAGS = "--deep";
OTHER_LDFLAGS = "$(inherited)";
Expand Down Expand Up @@ -3991,7 +3991,7 @@
);
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/downloaded-frameworks/mono/runtimes/osx-x64/native";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 2.5.2;
MARKETING_VERSION = 2.5.3;
OTHER_CODE_SIGN_FLAGS = "--deep";
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = net.hearthsim.hstracker;
Expand Down
2 changes: 1 addition & 1 deletion HSTracker/BobsBuddy-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0
1.12.2
2 changes: 1 addition & 1 deletion HSTracker/Logging/Game.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ class Game: NSObject, PowerEventHandler {
if let races = MirrorHelper.getAvailableBattlegroundsRaces() {
let newRaces = races.compactMap({ x in x.intValue > 0 && x.intValue < Race.allCases.count ? Race.allCases[x.intValue] : nil })
logger.info("Battlegrounds available races: \(newRaces) - from mirror \(races)")
if newRaces.count == races.count {
if newRaces.count > 0 && newRaces.count == races.count{
_availableRaces = newRaces
return _availableRaces
}
Expand Down

0 comments on commit 4caa804

Please sign in to comment.