Skip to content

Commit

Permalink
Bump ClashOfClans to 8.8.3-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
tparviainen committed Dec 10, 2023
1 parent 660f970 commit 98f157f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ClashOfClans.App/ClashOfClans.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ClashOfClans" Version="8.8.2" />
<PackageReference Include="ClashOfClans" Version="8.8.3-rc1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/ClashOfClans.Blazor/ClashOfClans.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ClashOfClans" Version="8.8.2" />
<PackageReference Include="ClashOfClans" Version="8.8.3-rc1" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
</ItemGroup>

Expand Down
5 changes: 4 additions & 1 deletion src/ClashOfClans.Blazor/Pages/ClashClans.razor
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ else
<tr>
<th>Rank</th>
<th>League</th>
<th>Town Hall</th>
<th>ExpLevel</th>
<th>Player</th>
<th>Troops donated</th>
Expand All @@ -43,8 +44,10 @@ else
<tr>
<td class="text-center">@(member.ClanRank).</td>
<td class="text-center"><img src=@member.League.IconUrls.Small style="width:30px;height:30px;" /></td>
<td class="text-center">@member.TownHallLevel</td>
<td class="text-center">@member.ExpLevel</td>
<td class="@GetRoleDecorations(member.Role)" style="transform: rotate(0);"><a class="stretched-link" href="/player/@member.Tag.Substring(1)"></a>@member.Name</td>
<td class="@GetRoleDecorations(member.Role)" style="transform: rotate(0);"><a class="stretched-link"
href="/player/@member.Tag.Substring(1)"></a>@member.Name</td>
<td class="text-center">@member.Donations</td>
<td class="text-center">@member.DonationsReceived</td>
<td class="text-center">@DonationRatio(member)</td>
Expand Down

0 comments on commit 98f157f

Please sign in to comment.