Skip to content

Commit

Permalink
Version 1.5.3 - add specific incompatibility check for Zone It.
Browse files Browse the repository at this point in the history
  • Loading branch information
algernon-A committed Jun 2, 2022
1 parent df48593 commit 26bea3e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 6 additions & 1 deletion ZoningAdjuster/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
Version 1.5.2 -
Version 1.5.3 -

- Add specific incompatibility check for Zone It


Version 1.5.2 -

- Zoning tool now supports pedestrian paths
- Remove CreateZoneBlock patch when BuildingTool is active
Expand Down
2 changes: 1 addition & 1 deletion ZoningAdjuster/Code/Mod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class ZoningAdjusterMod : IUserMod
internal static string Version => BaseVersion + " " + Beta;
internal static string Beta => "";
internal static int BetaVersion => 0;
private static string BaseVersion => "1.5.2";
private static string BaseVersion => "1.5.3";


/// <summary>
Expand Down
5 changes: 5 additions & 0 deletions ZoningAdjuster/Code/Utils/ModUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ internal static bool IsModConflict()
conflictDetected = true;
conflictingModNames.Add("Network Extensions 3");
break;
case "ZoneIt":
// Zone It.
conflictDetected = true;
conflictingModNames.Add("Zone It!");
break;
case "VanillaGarbageBinBlocker":
// Garbage Bin Controller
conflictDetected = true;
Expand Down
4 changes: 2 additions & 2 deletions ZoningAdjuster/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.2.0")]
[assembly: AssemblyFileVersion("1.5.2.0")]
[assembly: AssemblyVersion("1.5.3.0")]
[assembly: AssemblyFileVersion("1.5.3.0")]

0 comments on commit 26bea3e

Please sign in to comment.