Skip to content

Commit

Permalink
Merge pull request #527 from ipax77/dev
Browse files Browse the repository at this point in the history
s2protocol.NET  v0.8.4 / disable review on maui
  • Loading branch information
ipax77 authored Dec 13, 2024
2 parents 4f81770 + d893553 commit 5ddffcb
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">

<Identity Name="29898PhilippHetzner.141231D0ED353" Publisher="CN=592AF738-4E2A-4BF3-87A7-D07953D08DE9" Version="2.0.6.0" />
<Identity Name="29898PhilippHetzner.141231D0ED353" Publisher="CN=592AF738-4E2A-4BF3-87A7-D07953D08DE9" Version="2.0.7.0" />

<Properties>
<DisplayName>$placeholder$</DisplayName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace dsstats.maui8.Services;
public class GitHubUpdateService(ILogger<GitHubUpdateService> logger) : IUpdateService
{
private static readonly string packageUri = "https://github.com/ipax77/dsstats/releases/latest/download/";
public static readonly Version CurrentVersion = new Version(2, 0, 6, 0);
public static readonly Version CurrentVersion = new Version(2, 0, 7, 0);
private Version latestVersion = new Version(0, 0, 0, 0);
private readonly object lockobject = new();
private readonly bool logToFile = false;
Expand Down
1 change: 0 additions & 1 deletion src/dsstats.maui/dsstats.maui8/dsstats.maui8.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
<PackageReference Include="IronPython.StdLib" Version="2.7.12" />
<PackageReference Include="Blazored.Toast" Version="4.2.1" />
<PackageReference Include="CommunityToolkit.Maui" Version="9.1.1" />
<PackageReference Include="s2protocol.NET" Version="0.8.3" />
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.11" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ItemGroup>
<PackageReference Include="CsvHelper" Version="33.0.1" />
<PackageReference Include="IronPython.StdLib" Version="2.7.12" />
<PackageReference Include="s2protocol.NET" Version="0.8.3" />
<PackageReference Include="s2protocol.NET" Version="0.8.4" />
<PackageReference Include="System.Drawing.Common" Version="8.0.11" />
</ItemGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/dsstats.razorlib/Players/Profile/ProfileComponent.razor
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@
}
</div>

@if (isUploader)
@if (!RemoteToggleService.IsMaui && isUploader)
{
<div class="mt-1 mb-1">
<button type="button" class="btn btn-outline-light btn-lg text-warning fw-bold bgchart"
@onclick="ShowReview">
@onclick="ShowReview">
<span class="bi bi-person-plus-fill"></span> Player review
</button>
</div>
Expand Down Expand Up @@ -143,7 +143,7 @@
<div class="col-auto">
<div class="bgchart p-1 border border-secondary rounded ms-lg-2"
style="position: relative; width: 30vw; min-width: 600px; max-width: 1200px; height: calc(30vw * 0.5); min-height: 300px; max-height: 600px;">
<PlayerRatingDetailChart @ref="playerRatingDetailChart" PlayerId="PlayerId"
<PlayerRatingDetailChart @ref="playerRatingDetailChart" PlayerId="PlayerId"
RatingType="RatingType"
RatingCalcType="RatingCalcType"
CurrentRating="RatingCalcType == RatingCalcType.Combo ? 0 : interestRating.Rating"
Expand Down
2 changes: 1 addition & 1 deletion src/dsstats.shared/Data.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,7 @@ public static (GameMode gameMode, int totalBans, int totalPicks) GetPickBanModeS

public const string ReplayBlobDir = "/data/ds/replayblobs";
public const string MysqlFilesDir = "/data/mysqlfiles";
public const string WasmVersion = "2.0.5";
public const string WasmVersion = "2.0.7";
}

public class LatestReplayEventArgs : EventArgs
Expand Down

0 comments on commit 5ddffcb

Please sign in to comment.