Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ on:
jobs:
build:
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@1.1.1
with:
artifacts:
GameData Extras LICENSE* README* CHANGELOG*
33 changes: 7 additions & 26 deletions GameData/SystemHeat/Versioning/SystemHeat.version
Original file line number Diff line number Diff line change
@@ -1,28 +1,9 @@
{
"NAME":"SystemHeat",
"URL":"https://raw.githubusercontent.com/post-kerbin-mining-corporation/SystemHeat/master/GameData/SystemHeat/Versioning/SystemHeat.version",
"DOWNLOAD":"https://github.com/post-kerbin-mining-corporation/SystemHeat",
"VERSION":
{
"MAJOR":0,
"MINOR":8,
"PATCH":2,
"BUILD":0
},
"KSP_VERSION":
{
"MAJOR":1,
"MINOR":12,
"PATCH":5
},
"KSP_VERSION_MIN":{
"MAJOR":1,
"MINOR":11,
"PATCH":0
},
"KSP_VERSION_MAX":{
"MAJOR":1,
"MINOR":12,
"PATCH":99
}
"NAME": "SystemHeat",
"URL": "https://github.com/KSPModStewards/SystemHeat/releases/latest/download/SystemHeat.version",
"DOWNLOAD": "https://github.com/KSPModStewards/SystemHeat/releases",
"KSP_VERSION": "1.12.5",
"KSP_VERSION_MIN": "1.11.0",
"KSP_VERSION_MAX": "1.12.99",
"VERSION": "0.8.2"
}
11 changes: 9 additions & 2 deletions Source/SystemHeat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
<RootNamespace>SystemHeat</RootNamespace>
<TargetFramework>net481</TargetFramework>

<AssemblyInformationalVersion>$(Version)</AssemblyInformationalVersion>

<Description>Heat handling system for Kerbal Space Program</Description>
<Company>Area Denial Games</Company>
<Product>SystemHeat</Product>
Expand All @@ -30,6 +28,15 @@
<PackageReference Include="KSPBuildTools" Version="1.1.1" />
</ItemGroup>

<ItemGroup>
<KSPVersionFile Include="SystemHeat.version">
<Destination>$(KSPBT_ModRoot)/Versioning/SystemHeat.version</Destination>
<KSP_Version>1.12.5</KSP_Version>
<KSP_Version_Min>1.11.0</KSP_Version_Min>
<KSP_Version_Max>1.12.99</KSP_Version_Max>
</KSPVersionFile>
</ItemGroup>

<ItemGroup>
<Compile Remove="Modules\ModuleSystemHeatMultiJettison.cs" />
<None Include="Modules\ModuleSystemHeatMultiJettison.cs" />
Expand Down
20 changes: 20 additions & 0 deletions Source/SystemHeat.version
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"NAME": "SystemHeat",
"URL": "https://github.com/KSPModStewards/SystemHeat/releases/latest/download/SystemHeat.version",
"DOWNLOAD": "https://github.com/KSPModStewards/SystemHeat/releases",
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 12,
"PATCH": 5
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 11,
"PATCH": 0
},
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 12,
"PATCH": 99
}
}
Loading