-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated for 1.0
- Loading branch information
Showing
12 changed files
with
60 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
|
||
<Manifest> | ||
<identifier>ToggleHarvest</identifier> | ||
<version>1.1</version> | ||
<manifestUri>https://github.com/Jaxe-Dev/ToggleHarvest/master/About/Manifest.xml</manifestUri> | ||
<downloadUri>https://github.com/Jaxe-Dev/ToggleHarvest/releases/latest</downloadUri> | ||
</Manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
# Toggle Harvest | ||
![](https://img.shields.io/badge/Version-1.0-brightgreen.svg) | ||
|
||
Built for **RimWorld 1.0.x / 0.19.x**\ | ||
Powered by **Harmony**\ | ||
Supports **ModSync RW** | ||
![Mod Version](https://img.shields.io/badge/Mod_Version-1.1-blue.svg) | ||
![RimWorld Version](https://img.shields.io/badge/Built_for_RimWorld-1.0-blue.svg) | ||
![Harmony Version](https://img.shields.io/badge/Powered_by_Harmony-1.2.0.1-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) | ||
|
||
[Link to Steam Workshop page](https://steamcommunity.com/sharedfiles/filedetails/?id=1499848654)\ | ||
[Link to Ludeon Forum Post](https://ludeon.com/forums/index.php?topic=43552.0) | ||
|
||
------------ | ||
--- | ||
|
||
Adds an *Allow Harvest* button to Growing Zones alongside the already existing *Allow Sowing* button. | ||
|
||
--- | ||
|
||
Adds an *Allow Harvesting* button to Growing Zones alongside the already existing *Allow Sowing* button. | ||
##### STEAM INSTALLATION | ||
- **[Go to the Steam Workshop page](https://steamcommunity.com/sharedfiles/filedetails/?id=1499848654) and subscribe to the mod.** | ||
|
||
------------ | ||
--- | ||
|
||
##### INSTALLATION | ||
##### NON-STEAM INSTALLATION | ||
- **[Download the latest release](https://github.com/Jaxe-Dev/ToggleHarvest/releases/latest) and unzip it into your *RimWorld/Mods* folder.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
Source/Patch/Verse_Profile_MemoryUtility_ClearAllMapsAndWorld.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using Harmony; | ||
using Verse.Profile; | ||
|
||
namespace ToggleHarvest.Patch | ||
{ | ||
[HarmonyPatch(typeof(MemoryUtility), "ClearAllMapsAndWorld")] | ||
internal static class Verse_Profile_MemoryUtility_ClearAllMapsAndWorld | ||
{ | ||
private static void Prefix() => Mod.Reset(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
using System.Reflection; | ||
using ToggleHarvest; | ||
|
||
[assembly: AssemblyTitle("ToggleHarvest")] | ||
[assembly: AssemblyProduct("ToggleHarvest")] | ||
[assembly: AssemblyTitle(Mod.Name)] | ||
[assembly: AssemblyProduct("RimWorld Mods by Jaxe")] | ||
[assembly: AssemblyCopyright("© Jaxe")] | ||
[assembly: AssemblyVersion("1.0")] | ||
[assembly: AssemblyFileVersion("1.0")] | ||
[assembly: AssemblyVersion(Mod.Version)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters