Skip to content

Commit

Permalink
0.9.8
Browse files Browse the repository at this point in the history
- fixed SeedsPlease compatibility
  • Loading branch information
Aviuz committed Oct 30, 2018
1 parent 3c53407 commit 3e3a6ac
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 17 deletions.
2 changes: 1 addition & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>Prison Labor</name>
<author>Avius</author>
<targetVersion>1.0.0</targetVersion>
<description>Version 0.9.7
<description>Version 0.9.8

This mod force prisoners to work. To enable this feature prisoners must have "Force to work" option checked ("Prisoner" tab). Prison labor needs management that consist:
- Motivation - prisoners need to be motivated by presence of colonists. Wardens have new job - supervising prisoners. Low motivation can lead to revolts.
Expand Down
Binary file modified Assemblies/PrisonLabor.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</p>
<p align="center">
<a href="https://github.com/Aviuz/PrisonLabor/releases">
<img src="https://img.shields.io/badge/version-0.9.7-orange.svg?style=flat" alt="v0.9.7" />
<img src="https://img.shields.io/badge/version-0.9.8-orange.svg?style=flat" alt="v0.9.8" />
</a>
</p>

Expand Down
3 changes: 2 additions & 1 deletion Source/PrefsData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ public enum Version
v0_9_3,
v0_9_4,
v0_9_5,
v0_9_6
v0_9_6,
v0_9_8
}

[Flags]
Expand Down
12 changes: 0 additions & 12 deletions Source/PrisonLabor.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrisonLabor", "PrisonLabor.
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrisonLabor-Tests", "..\Test\PrisonLabor-Tests.csproj", "{AB1F40E6-D2E8-499F-9AD3-A96D2D11CCDF}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Test", "..\TestProject\Test\Test.vcxproj", "{1370525F-8893-40DC-AB25-E2266CD24D74}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -43,16 +41,6 @@ Global
{AB1F40E6-D2E8-499F-9AD3-A96D2D11CCDF}.Release|x64.Build.0 = Release|Any CPU
{AB1F40E6-D2E8-499F-9AD3-A96D2D11CCDF}.Release|x86.ActiveCfg = Release|Any CPU
{AB1F40E6-D2E8-499F-9AD3-A96D2D11CCDF}.Release|x86.Build.0 = Release|Any CPU
{1370525F-8893-40DC-AB25-E2266CD24D74}.Debug|Any CPU.ActiveCfg = Debug|Win32
{1370525F-8893-40DC-AB25-E2266CD24D74}.Debug|x64.ActiveCfg = Debug|x64
{1370525F-8893-40DC-AB25-E2266CD24D74}.Debug|x64.Build.0 = Debug|x64
{1370525F-8893-40DC-AB25-E2266CD24D74}.Debug|x86.ActiveCfg = Debug|Win32
{1370525F-8893-40DC-AB25-E2266CD24D74}.Debug|x86.Build.0 = Debug|Win32
{1370525F-8893-40DC-AB25-E2266CD24D74}.Release|Any CPU.ActiveCfg = Release|Win32
{1370525F-8893-40DC-AB25-E2266CD24D74}.Release|x64.ActiveCfg = Release|x64
{1370525F-8893-40DC-AB25-E2266CD24D74}.Release|x64.Build.0 = Release|x64
{1370525F-8893-40DC-AB25-E2266CD24D74}.Release|x86.ActiveCfg = Release|Win32
{1370525F-8893-40DC-AB25-E2266CD24D74}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
4 changes: 2 additions & 2 deletions Source/VersionUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ namespace PrisonLabor
{
class VersionUtility
{
public const Version versionNumber = Version.v0_9_6;
public const string versionString = "0.9.6";
public const Version versionNumber = Version.v0_9_8;
public const string versionString = "0.9.8";

public static void CheckVersion()
{
Expand Down

0 comments on commit 3e3a6ac

Please sign in to comment.