Skip to content

Commit

Permalink
Prepare for v3.2.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
IntelOrca committed Aug 31, 2024
1 parent ef5aa6f commit ca32730
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
BioRand v3.2.7 (2024-08-31)

* [Feature] RE 1, add Donna, Helena, and Yoko as playable characters.
* [Feature] RE 2, add Angie, Bela, Cassandra, Daniela, Donna, Excella, Helena, and Yoko as playable characters.
* [Feature] RE 3, add Bela, Cassandra, Daniela, Excella, Helena, and Yoko as playable characters.
* [Enhancement] Increase playable character dropdown limit to 128.
* [Fix] #889: RE 2, valve handle can be placed in helicopter fire.

BioRand v3.2.6 (2024-02-21)

* [Fix] Randy Rando when Japanese text is enabled.
Expand Down
3 changes: 2 additions & 1 deletion IntelOrca.Biohazard.BioRand/RE2/Re2NpcHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@ public void CreateEmdFile(byte type, string pldPath, string baseEmdPath, string
var offset = edd.Animations[22].Offset;
var eddBuilder = edd.ToBuilder();
eddBuilder.Animations[0] = eddBuilder.Animations[22];
eddBuilder.Animations[0].Frames = eddBuilder.Animations[0].Frames.Take(1).ToArray();
eddBuilder.Animations[0].Frames.Clear();
eddBuilder.Animations[0].Frames.Add(eddBuilder.Animations[0].Frames[0]);
eddBuilder.Animations.RemoveRange(1, eddBuilder.Animations.Count - 1);
emdFile.SetEdd(0, eddBuilder.ToEdd());
var emr = pldFile.GetEmr(0)
Expand Down
2 changes: 1 addition & 1 deletion biohazard-utils
6 changes: 3 additions & 3 deletions biorand/biorand.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<Copyright>Copyright (C) Ted John 2022-2024</Copyright>
<Product>Resident Evil Randomizer</Product>
<Version>3.2.6</Version>
<Version>3.2.7</Version>
<RootNamespace>IntelOrca.Biohazard.BioRand</RootNamespace>
<ApplicationIcon>biorand.ico</ApplicationIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>DISABLE_CVX;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Content Include="biorand.ico" />
Expand All @@ -29,8 +30,7 @@
<Resource Include="resources\*.png" />
</ItemGroup>
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation">
<Exec Command="git describe --long --always --exclude=* --abbrev=7" ConsoleToMSBuild="True"
IgnoreExitCode="False">
<Exec Command="git describe --long --always --exclude=* --abbrev=7" ConsoleToMSBuild="True" IgnoreExitCode="False">
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput" />
</Exec>
</Target>
Expand Down

0 comments on commit ca32730

Please sign in to comment.