Skip to content

Commit

Permalink
v1.9:
Browse files Browse the repository at this point in the history
- Added support for RimWorld 1.5
  • Loading branch information
Jaxe-Dev committed Apr 14, 2024
1 parent 33bf4c5 commit c8053ce
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Toggle Harvest
![Mod Version](https://img.shields.io/badge/Mod_Version-1.8-blue.svg)
![RimWorld Version](https://img.shields.io/badge/Built_for_RimWorld-1.4-blue.svg)
![Harmony Version](https://img.shields.io/badge/Powered_by_Harmony-2.2-blue.svg)\
![Mod Version](https://img.shields.io/badge/Mod_Version-1.9-blue.svg)
![RimWorld Version](https://img.shields.io/badge/Built_for_RimWorld-1.5-blue.svg)
![Harmony Version](https://img.shields.io/badge/Powered_by_Harmony-2.3-blue.svg)\
![Steam Subscribers](https://img.shields.io/badge/dynamic/xml.svg?label=Steam+Subscribers&query=//table/tr[2]/td[1]&colorB=blue&url=https://steamcommunity.com/sharedfiles/filedetails/%3Fid=1499848654&suffix=+total)
![GitHub Downloads](https://img.shields.io/github/downloads/Jaxe-Dev/ToggleHarvest/total.svg?colorB=blue&label=GitHub+Downloads)

Expand Down
1 change: 1 addition & 0 deletions source/-/About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<li>1.2</li>
<li>1.3</li>
<li>1.4</li>
<li>1.5</li>
</supportedVersions>
<modDependencies>
<li>
Expand Down
Binary file not shown.
5 changes: 4 additions & 1 deletion source/-/LoadFolders.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
<li>Legacy/1.1-1.3</li>
</v1.3>
<v1.4>
<li>/</li>
<li>Legacy/1.4</li>
</v1.4>
<v1.5>
<li>/</li>
</v1.5>
</loadFolders>
2 changes: 1 addition & 1 deletion source/Mod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ internal static class Mod
{
public const string Id = "ToggleHarvest";
public const string Name = "Toggle Harvest";
public const string Version = "1.8";
public const string Version = "1.9";

static Mod() => new Harmony(Id).PatchAll();
}
Expand Down
8 changes: 3 additions & 5 deletions source/ToggleHarvest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony, Version=2.2.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Lib.Harmony.2.2.1\lib\net472\0Harmony.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Reference Include="0Harmony, Version=2.3.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Lib.Harmony.2.3.3\lib\net472\0Harmony.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Assembly-CSharp, Version=1.4.8330.30233, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="Assembly-CSharp, Version=1.5.8868.32164, Culture=neutral, processorArchitecture=MSIL">
<HintPath>Assembly-CSharp.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Private>False</Private>
Expand Down Expand Up @@ -65,7 +64,6 @@
<None Include="-\About\PublishedFileId.txt" />
<None Include="-\Languages\English\Keyed\ToggleHarvest.xml" />
<None Include="-\LoadFolders.xml" />
<None Include="-\Legacy\1.1-1.3\Assemblies\ToggleHarvest.dll" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(ProjectDir)release.targets" />
Expand Down
4 changes: 2 additions & 2 deletions source/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Lib.Harmony" version="2.2.1" targetFramework="net472" />
</packages>
<package id="Lib.Harmony" version="2.3.3" targetFramework="net472" />
</packages>

0 comments on commit c8053ce

Please sign in to comment.