Skip to content

Commit

Permalink
Updated required game version to 1.18.1-f3
Browse files Browse the repository at this point in the history
  • Loading branch information
MacSergey committed Oct 26, 2024
1 parent 4a8f67a commit c012086
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion IMT/IntersectionMarkingTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Stable Release' OR '$(Configuration)' == 'Stable Debug'">
<AssemblyVersion>1.14.5.1</AssemblyVersion>
<AssemblyVersion>1.14.6</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Stable Release|AnyCPU'">
Expand Down
3 changes: 2 additions & 1 deletion IMT/Mod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public class Mod : BasePatcherMod<Mod>
protected override string IdRaw => "IntersectionMarkingTool";
public override List<ModVersion> Versions { get; } = new List<ModVersion>
{
new ModVersion(new Version(1,14,6), new DateTime(2024, 10, 26)),
new ModVersion(new Version(1,14,5), new DateTime(2024, 9, 27)),
new ModVersion(new Version(1,14,4), new DateTime(2023, 10, 14)),
new ModVersion(new Version(1,14,3), new DateTime(2023, 6, 13)),
Expand Down Expand Up @@ -67,7 +68,7 @@ public class Mod : BasePatcherMod<Mod>
new ModVersion(new Version(1,1), new DateTime(2020, 7, 14)),
new ModVersion(new Version(1,0), new DateTime(2020, 7, 7)),
};
protected override Version RequiredGameVersion => new Version(1, 17, 1, 2);
protected override Version RequiredGameVersion => new Version(1, 18, 1, 3);

public override string NameRaw => "Intersection Marking Tool";
public override string Description => !IsBeta ? Localize.Mod_Description : CommonLocalize.Mod_DescriptionBeta;
Expand Down
5 changes: 5 additions & 0 deletions IMT/Properties/Localize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2904,5 +2904,10 @@ public class Localize
/// Slope
/// </summary>
public static string StyleOption_ObjectSpreadSlope => LocaleManager.GetString("StyleOption_ObjectSpreadSlope", Culture);

/// <summary>
/// [UPDATED] Updated required game version to 1.18.1-f3
/// </summary>
public static string Mod_WhatsNewMessage1_14_6 => LocaleManager.GetString("Mod_WhatsNewMessage1_14_6", Culture);
}
}
4 changes: 4 additions & 0 deletions IMT/Properties/Localize.resx
Original file line number Diff line number Diff line change
Expand Up @@ -2131,4 +2131,8 @@ It can take time if there are a lot of segments.</value>
<data name="StyleOption_ObjectSpreadSlope" xml:space="preserve">
<value>Slope</value>
</data>
<data name="Mod_WhatsNewMessage1_14_6" xml:space="preserve">
<value>[UPDATED] Updated required game version to 1.18.1-f3
</value>
</data>
</root>

0 comments on commit c012086

Please sign in to comment.