Skip to content

Commit

Permalink
Merge branch 'master' into texture-handling-rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
colinator27 authored Aug 22, 2024
2 parents e8e036f + 16679bd commit bcdaf41
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_gui_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
with:
tag_name: bleeding-edge
name: Bleeding Edge
prerelease: false
prerelease: true
fail_on_unmatched_files: true
files: |
*/*
Expand Down
2 changes: 1 addition & 1 deletion UndertaleModCli/UndertaleModCli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.10.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.11.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="runtime.osx.10.10-x64.CoreCompat.System.Drawing" Version="6.0.5.128" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" />
Expand Down
2 changes: 1 addition & 1 deletion UndertaleModLib/Models/UndertaleFont.cs
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public void Unserialize(UndertaleReader reader)
// since the float is always written negated, it has the first bit set.
if ((readEmSize & (1 << 31)) != 0)
{
float fsize = -BitConverter.ToSingle(BitConverter.GetBytes(EmSize), 0);
float fsize = -BitConverter.ToSingle(BitConverter.GetBytes(readEmSize), 0);
EmSize = fsize;
EmSizeIsFloat = true;
}
Expand Down
4 changes: 2 additions & 2 deletions UndertaleModLibTests/UndertaleModLibTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0"/>
<PackageReference Include="xunit" Version="2.9.0"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
6 changes: 3 additions & 3 deletions UndertaleModTests/UndertaleModTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting">
<Version>4.10.0</Version>
<Version>4.11.0</Version>
</PackageReference>
<PackageReference Include="MSTest.TestFramework">
<Version>3.5.0</Version>
<Version>3.5.2</Version>
</PackageReference>
<PackageReference Include="System.ComponentModel.Composition" Version="8.0.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.5.2" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion UndertaleModTool/UndertaleModTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting">
<Version>4.10.0</Version>
<Version>4.11.0</Version>
</PackageReference>
<PackageReference Include="NAudio">
<Version>2.2.1</Version>
Expand Down

0 comments on commit bcdaf41

Please sign in to comment.