Skip to content

Commit

Permalink
Updated UnityDoorstop.
Browse files Browse the repository at this point in the history
  • Loading branch information
CptMoore committed May 19, 2024
1 parent 2e41fc0 commit 0f56720
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ Since v2, ModTek adheres to [Semantic Versioning](http://semver.org/).
however injected assemblies are now found under `Mods/.modtek/AssembliesInjected` or loaded directly into memory after injection.
- The HarmonyX feature works well, however some mods might rely on some buggy Harmony 1.2 behaviors that HarmonyX shims don't replicate.

## Latest - CptMoore
## Upcoming - CptMoore

For users:
- Updated UnityDoorstop to latest version + still including a steamfix.

For modders:
- Moved all ModTek dlls (ModTek, HarmonyX, MonoMod, etc..) to `ModTek/lib`.
Expand Down
4 changes: 2 additions & 2 deletions ModTekPreloader/ModTekPreloader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@

<Target Name="DoorstopFetch" BeforeTargets="CopyFilesToGame" Condition="!Exists('$(BattleTechGameDir)\winhttp.dll')">
<PropertyGroup>
<DoorstopUrl>https://github.com/CptMoore/UnityDoorstop/releases/download/latest/doorstop_all_in_one_4.0.1steamfix.zip</DoorstopUrl>
<DoorstopUrl>https://github.com/BattletechModders/UnityDoorstop/releases/download/4.2.0steamfix/doorstop_all_4.2.0steamfix.zip</DoorstopUrl>
<DoorstopIntDir>$(MSBuildProjectExtensionsPath)\doorstop</DoorstopIntDir>
</PropertyGroup>
<DownloadFile SourceUrl="$(DoorstopUrl)" DestinationFolder="$(DoorstopIntDir)" />
<Unzip SourceFiles="$(DoorstopIntDir)\doorstop_all_in_one_4.0.1steamfix.zip" DestinationFolder="$(DoorstopIntDir)" />
<Unzip SourceFiles="$(DoorstopIntDir)\doorstop_all_4.2.0steamfix.zip" DestinationFolder="$(DoorstopIntDir)" />
<Copy SourceFiles="$(DoorstopIntDir)\doorstop_win_release\x64\winhttp.dll" DestinationFolder="$(BattleTechGameDir)" />
<Copy SourceFiles="$(DoorstopIntDir)\doorstop_linux_release\x64\libdoorstop.so" DestinationFolder="$(BattleTechGameDir)" />
<Copy SourceFiles="$(DoorstopIntDir)\doorstop_macos_release\x64\libdoorstop.dylib" DestinationFolder="$(BattleTechGameDir)" />
Expand Down

0 comments on commit 0f56720

Please sign in to comment.