Skip to content

Commit

Permalink
chore: prepare v0.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyvion committed May 23, 2024
1 parent 5bcd186 commit 89af481
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x

- name: Build Mod for 1.3
env:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/mod.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<RootNamespace>FarmingHysteresis</RootNamespace>
<AssemblyName>FarmingHysteresis</AssemblyName>
<VersionPrefix>0.8.0</VersionPrefix>
<VersionPrefix>0.8.1</VersionPrefix>

<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>

Expand Down
2 changes: 1 addition & 1 deletion .vscode/vanillaplantsexpandedmoreplants.interop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<RootNamespace>FarmingHysteresis.VanillaPlantsExpandedMorePlants</RootNamespace>
<AssemblyName>FarmingHysteresis.VanillaPlantsExpandedMorePlants</AssemblyName>
<VersionPrefix>0.8.0</VersionPrefix>
<VersionPrefix>0.8.1</VersionPrefix>

<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>

Expand Down
14 changes: 7 additions & 7 deletions About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
<author>ilyvion</author>
<description>Farming Hysteresis lets you automate enabling and disabling growing zones based on the amount of product already in storage.

I got tired of keeping track of these numbers myself, so I made a little mod to do it for me. Hopefully it can be of use to you too.
I got tired of keeping track of these numbers myself, so I made a little mod to do it for me. Hopefully it can be of use to you too.

&lt;size=24&gt;Operation&lt;/size&gt;
&lt;size=24&gt;Operation&lt;/size&gt;

The mod adds an "Enable farming hysteresis" to all supported growing zones and hydroponics basins. Only plants that produce a harvestable product are supported. When you enable this setting, the "Allow sowing" button is removed, and sowing and harvesting are instead controlled by a set of hysteresis bounds. Hydroponics basins typically don't have these settings, but with this mod and hysteresis enabled, sowing and/or cutting also stops on those when appropriate.
The mod adds an "Enable farming hysteresis" to all supported growing zones and hydroponics basins. Only plants that produce a harvestable product are supported. When you enable this setting, the "Allow sowing" button is removed, and sowing and harvesting are instead controlled by a set of hysteresis bounds. Hydroponics basins typically don't have these settings, but with this mod and hysteresis enabled, sowing and/or cutting also stops on those when appropriate.

When the amount of stored product goes below the lower bound, sowing and/or cutting is enabled. This remains enabled until the amount of stored product goes above the upper bound, at which point sowing and/or cutting is disabled. This then remains disabled until the amount of stored product once again goes below the lower bound.
When the amount of stored product goes below the lower bound, sowing and/or cutting is enabled. This remains enabled until the amount of stored product goes above the upper bound, at which point sowing and/or cutting is disabled. This then remains disabled until the amount of stored product once again goes below the lower bound.

&lt;size=24&gt;Version support&lt;/size&gt;
&lt;size=24&gt;Version support&lt;/size&gt;

This mod supports RimWorld 1.3, 1.4 and 1.5
This mod supports RimWorld 1.3, 1.4 and 1.5

</description>
<supportedVersions>
<li>1.3</li>
<li>1.4</li>
<li>1.5</li>
</supportedVersions>
<modVersion IgnoreIfNoMatchingField="True">0.8.0</modVersion>
<modVersion IgnoreIfNoMatchingField="True">0.8.1</modVersion>
<modDependencies>
<li>
<packageId>brrainz.harmony</packageId>
Expand Down
2 changes: 1 addition & 1 deletion About/Manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<identifier>ilyvion.FarmingHysteresis</identifier>
<version>0.8.0</version>
<version>0.8.1</version>
<dependencies>
<li>brrainz.harmony</li>
</dependencies>
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1] - 2024-05-22

### Fixed

- Type checking code was a bit too narrow, causing exceptions where they weren't appropriate.
Expand Down Expand Up @@ -135,7 +137,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- First implementation of the mod.

[Unreleased]: https://github.com/ilyvion/farming-hysteresis/compare/v0.8.0...HEAD
[Unreleased]: https://github.com/ilyvion/farming-hysteresis/compare/v0.8.1...HEAD
[0.8.1]: https://github.com/ilyvion/farming-hysteresis/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/ilyvion/farming-hysteresis/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/ilyvion/farming-hysteresis/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/ilyvion/farming-hysteresis/compare/v0.6.0...v0.6.1
Expand Down

0 comments on commit 89af481

Please sign in to comment.