Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for TR1X 4.6 #799

Merged
merged 2 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## [Unreleased](https://github.com/LostArtefacts/TR-Rando/compare/V1.10.1...master) - xxxx-xx-xx
## [Unreleased](https://github.com/LostArtefacts/TR-Rando/compare/V1.10.2...master) - xxxx-xx-xx

## [Unreleased](https://github.com/LostArtefacts/TR-Rando/compare/V1.10.0...V1.10.1) - 2024-12-01
## [V1.10.2](https://github.com/LostArtefacts/TR-Rando/compare/V1.10.1...V1.10.2) - 2024-12-06
- added support for TR1X 4.6 (#796)

## [V1.10.1](https://github.com/LostArtefacts/TR-Rando/compare/V1.10.0...V1.10.1) - 2024-12-01
- fixed too many pickups on the same tile in TR2R patch 4 causing a crash (#793)

## [V1.10.0](https://github.com/LostArtefacts/TR-Rando/compare/V1.9.3...V1.10.0) - 2024-11-05
Expand Down
Binary file modified Deps/TRGE.Coord.dll
Binary file not shown.
Binary file modified Deps/TRGE.Core.dll
Binary file not shown.
3 changes: 3 additions & 0 deletions TRRandomizerCore/Helpers/TR1XInjectionType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ public enum TR1XInjectionType
LaraJumps,
ItemRotation,
PS1Enemy,
DisableAnimSprite,
Skybox,
PSCrystal,
}
2 changes: 2 additions & 0 deletions TRRandomizerCore/Processors/TR1/TR1InjectionProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public class TR1InjectionProcessor : TR1LevelProcessor
{
TR1XInjectionType.LaraAnims,
TR1XInjectionType.LaraJumps,
TR1XInjectionType.Skybox,
TR1XInjectionType.PSCrystal,
};

public void Run()
Expand Down
2 changes: 1 addition & 1 deletion TRRandomizerView/TRRandomizerView.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<SelfContained>false</SelfContained>
<ApplicationIcon>Resources\rando.ico</ApplicationIcon>

<Version>1.10.1</Version>
<Version>1.10.2</Version>
<Product>Tomb Raider Randomizer</Product>
<Copyright>Copyright © Tomb Raider Community 2024</Copyright>
</PropertyGroup>
Expand Down