Skip to content

Commit

Permalink
Version 2.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoraes74 committed Feb 14, 2024
1 parent c36a248 commit 9e04ae2
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 2.6.7
## New
- Updated for Hearthstone 28.6.0
- There are likely still issues with some new cards in Bob's Buddy. We will update these in the coming days.
- The Battlegrounds Quest Picking Overlay will return as soon as there's enough data for quests.
## Fixes
- Fixed an issue where secrets would be incorrectly grayed out when dormant minions or portals were on the board.
- Fixed an issue where Plagues moving into the opponent's hand through effects such as Sir Finley, Sea Guide were unintentionally revealed.
- Fix authorization token automatic renewal not working and requiring a restart to solve

# 2.6.6
## New
- Updated for Hearthstone 28.4.1
Expand Down
4 changes: 2 additions & 2 deletions HSTracker.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3987,7 +3987,7 @@
);
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/downloaded-frameworks/mono/runtimes/osx-x64/native";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 2.6.6;
MARKETING_VERSION = 2.6.7;
OTHER_CFLAGS = "$(inherited)";
OTHER_CODE_SIGN_FLAGS = "--deep";
OTHER_LDFLAGS = (
Expand Down Expand Up @@ -4035,7 +4035,7 @@
);
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/downloaded-frameworks/mono/runtimes/osx-x64/native";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 2.6.6;
MARKETING_VERSION = 2.6.7;
OTHER_CODE_SIGN_FLAGS = "--deep";
OTHER_LDFLAGS = (
"$(inherited)",
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.15.2
1.16.0
10 changes: 7 additions & 3 deletions HSTracker/Logging/Enums/CardSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ enum CardSet: String, CaseIterable {
titans,
wild_west,
whizbangs_workshop,
wonders
wonders,
tutorial,
event

static func deckManagerValidCardSets() -> [CardSet] {
return [.all, .vanilla, .core, .basic, .expert1, .naxx, .gvg, .brm, .tgt,
Expand All @@ -85,7 +87,7 @@ enum CardSet: String, CaseIterable {
.basic, .expert1, .legacy,
.black_temple, .scholomance, .darkmoon_faire,
.the_barrens, .stormwind, .alterac_valley,
.placeholder_202204, .wonders, .whizbangs_workshop]
.placeholder_202204, .wonders]
}

static func classicSets() -> [CardSet] {
Expand Down Expand Up @@ -164,5 +166,7 @@ public enum CardSetInt: Int {
path_of_arthas = 1869,
wild_west = 1892,
whizbangs_workshop = 1897,
wonders = 1898
wonders = 1898,
tutorial = 1904,
event = 1941
}
2 changes: 1 addition & 1 deletion HSTracker/cards-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
193128
193541
2 changes: 1 addition & 1 deletion HSTracker/mono-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.0.15
7.0.16

0 comments on commit 9e04ae2

Please sign in to comment.