Skip to content

Commit

Permalink
v1.35.2
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMCesar committed Oct 17, 2024
1 parent 9b1b9b2 commit 04794a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## **Release v1.35.2 - 2024-10-17**
**Updated for Hearthstone 30.6.2**

## **Release v1.35.1 - 2024-10-11**

**Hearthstone**:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public bool ConstructedCardLimits
}
}

public string CardCount => $"{Deck.Cards.Sum(x => x.Count)} / {(Cards.Any(x => x.Id is HearthDb.CardIds.Collectible.Neutral.PrinceRenathalREVENDRETH or HearthDb.CardIds.Collectible.Neutral.PrinceRenathalInvalid) ? 40 : 30)}";
public string CardCount => $"{Deck.Cards.Sum(x => x.Count)} / {(Cards.Any(x => x.Id is HearthDb.CardIds.Collectible.Neutral.PrinceRenathal or HearthDb.CardIds.Collectible.Neutral.PrinceRenathalCore) ? 40 : 30)}";

public CostFilter SelectedCostFilter
{
Expand Down Expand Up @@ -425,7 +425,7 @@ private void AddCardToDeck(Card card)
private void UpdateCardCountWarning()
{
var count = Cards.Sum(x => x.Count);
if(Cards.Any(x => x.Id is HearthDb.CardIds.Collectible.Neutral.PrinceRenathalREVENDRETH or HearthDb.CardIds.Collectible.Neutral.PrinceRenathalInvalid))
if(Cards.Any(x => x.Id is HearthDb.CardIds.Collectible.Neutral.PrinceRenathal or HearthDb.CardIds.Collectible.Neutral.PrinceRenathalCore))
{
Warnings &= ~(DeckEditorWarnings.LessThan30Cards | DeckEditorWarnings.MoreThan30Cards);
if(count == 40)
Expand Down
4 changes: 2 additions & 2 deletions Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<NeutralLanguage>en</NeutralLanguage>
<Description>Hearthstone Deck Tracker</Description>
<Copyright>Copyright © HearthSim 2024</Copyright>
<AssemblyVersion>1.35.1</AssemblyVersion>
<FileVersion>1.35.1</FileVersion>
<AssemblyVersion>1.35.2</AssemblyVersion>
<FileVersion>1.35.2</FileVersion>
<UseWPF>true</UseWPF>
<PlatformTarget>x86</PlatformTarget>
<Platforms>x86</Platforms>
Expand Down

0 comments on commit 04794a7

Please sign in to comment.