Skip to content

Commit

Permalink
Update Core dependency, add PS5 and Pico to platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-r-elp authored and cubicgraphics committed Aug 25, 2024
1 parent c8f0549 commit e63eefd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BeatTogether.Core" Version="1.0.3" />
<PackageReference Include="BeatTogether.Core" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BeatTogether.Core" Version="1.0.3" />
<PackageReference Include="BeatTogether.Core" Version="1.1.0" />
<PackageReference Include="BeatTogether.Core.Security" Version="1.2.0" />
<PackageReference Include="BeatTogether.Extensions.Serilog" Version="2.1.0" />
<PackageReference Include="System.Collections" Version="4.3.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ public static Platform Convert(this Core.Enums.Platform gamePlatform)
Core.Enums.Platform.Test => Platform.Unknown,
Core.Enums.Platform.OculusRift => Platform.OculusPC,
Core.Enums.Platform.OculusQuest => Platform.OculusQuest,
Core.Enums.Platform.Pico => Platform.Pico,
Core.Enums.Platform.Steam => Platform.Steam,
Core.Enums.Platform.PS4 or Core.Enums.Platform.PS4Dev or Core.Enums.Platform.PS4Cert => Platform.PS4,
Core.Enums.Platform.PS5 or Core.Enums.Platform.PS5Dev or Core.Enums.Platform.PS5Cert => Platform.PS5,
_ => 0,
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BeatTogether.Core" Version="1.0.3" />
<PackageReference Include="BeatTogether.Core.Messaging" Version="1.9.2" />
<PackageReference Include="BeatTogether.Core" Version="1.1.0" />
<PackageReference Include="BeatTogether.Core.Messaging" Version="1.10.0" />
<PackageReference Include="BeatTogether.Extensions.BinaryRecords" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ public enum Platform
Steam = 1,
OculusPC = 2,
OculusQuest = 3,
PS4 = 4
PS4 = 4,
PS5 = 5,
Pico = 6,
}

public sealed class MpPlayerData : INetSerializable
Expand Down

0 comments on commit e63eefd

Please sign in to comment.