Skip to content

Commit

Permalink
Merge pull request #48 from OpenSpartan/release-1.0.8
Browse files Browse the repository at this point in the history
Update version configuration
  • Loading branch information
dend authored Jul 30, 2024
2 parents d9f298d + d527146 commit fd34d2c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CURRENTRELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# OpenSpartan Workshop 1.0.8 (`SLIPSPACE-06282024`)

This is a **hotfix release** meant to address minor stability issues caused by the operation changeover.

- Individual match stats acquisition now supports retries, in case the initial call fails and we still need to obtain proper match data. This is helpful for scenarios where we're using loose match searches and need to make sure that the proper data is captured when inserting in the DB.
- Update the logic for date parsing in operations to avoid a mislabeled operation timeframe.
- Ensure that percentages render correctly across cultures.

Refer to [**getting started guide**](https://openspartan.com/docs/workshop/guides/get-started/) to start using OpenSpartan Workshop.
10 changes: 5 additions & 5 deletions src/OpenSpartan.Workshop/Core/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ internal sealed class Configuration
internal const string HaloWaypointCsrImageEndpoint = "https://www.halowaypoint.com/images/halo-infinite/csr/";

// Build-related metadata.
internal const string Version = "1.0.7";
internal const string BuildId = "CYLIX-06082024";
internal const string Version = "1.0.8";
internal const string BuildId = "SLIPSPACE-06282024";
internal const string PackageName = "OpenSpartan.Workshop";

// Authentication and setting-related metadata.
Expand All @@ -23,11 +23,11 @@ internal sealed class Configuration
internal static readonly string AppDataDirectory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), PackageName);

// API-related default metadata.
internal const string DefaultRelease = "1.7";
internal const string DefaultRelease = "1.8";
internal const string DefaultAPIVersion = "1";
internal const string DefaultHeaderImage = "progression/Switcher/Season_Switcher_S7_AVL.png";
internal const string DefaultHeaderImage = "progression/Switcher/Season_Switcher_S8_Fleetcom.png";
internal const string DefaultSandbox = "UNUSED";
internal const string DefaultBuild = "258337.24.06.12.2052-2";
internal const string DefaultBuild = "259234.24.07.25.1725-2";

// Rank markers used to download the rank images.
internal static readonly string[] HaloInfiniteRanks =
Expand Down
4 changes: 2 additions & 2 deletions src/OpenSpartan.Workshop/OpenSpartan.Workshop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<WindowsPackageType>None</WindowsPackageType>
<EnableMsixTooling>true</EnableMsixTooling>
<AnalysisMode>All</AnalysisMode>
<AssemblyVersion>1.0.7.0</AssemblyVersion>
<FileVersion>1.0.7.0</FileVersion>
<AssemblyVersion>1.0.8.0</AssemblyVersion>
<FileVersion>1.0.8.0</FileVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit fd34d2c

Please sign in to comment.