Skip to content

Commit

Permalink
dev - Started development of 0.1.2
Browse files Browse the repository at this point in the history
---

Type: dev
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Nov 23, 2024
1 parent 573b819 commit 77f3790
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- KS General Information -->
<PropertyGroup>
<!-- Versioning and some info to be installed to all the Nitrocid projects, including the addons -->
<Version>0.1.1.27</Version>
<Version>0.1.2.0</Version>
<Copyright>Copyright © Aptivi 2018 - 2024</Copyright>
<Company>Aptivi</Company>
<Product>Nitrocid</Product>
Expand All @@ -22,8 +22,8 @@
in the N-KS API. Don't forget to document it in the GitBook instance so the mod developers are aware of the breaking
changes!
-->
<NitrocidModAPIVersionMajor>3.0.26</NitrocidModAPIVersionMajor>
<NitrocidModAPIVersionChangeset>52</NitrocidModAPIVersionChangeset>
<NitrocidModAPIVersionMajor>3.0.27</NitrocidModAPIVersionMajor>
<NitrocidModAPIVersionChangeset>0</NitrocidModAPIVersionChangeset>

<!-- The above two properties are to be installed to the file version -->
<NitrocidModAPIVersion>$(NitrocidModAPIVersionMajor).$(NitrocidModAPIVersionChangeset)</NitrocidModAPIVersion>
Expand Down
2 changes: 1 addition & 1 deletion public/Nitrocid.Templates/templates/KSMod/KSMod.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="KS" Version="0.1.1.26" />
<PackageReference Include="KS" Version="0.1.2.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion public/Nitrocid.Templates/templates/KSMod/ModName.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class ModName : IMod
public string Name { get; set; } = "My Mod";
public string Version { get; set; } = "1.0.0";

public Version MinimumSupportedApiVersion => new(3, 0, 26, 52);
public Version MinimumSupportedApiVersion => new(3, 0, 27, 0);

public ReadOnlyDictionary<string, Delegate> PubliclyAvailableFunctions => null;

Expand Down

0 comments on commit 77f3790

Please sign in to comment.