Skip to content

Commit 84c352f

Browse files
authored
Merge pull request #299 from SpaceWarpDev/dev
1.9.5 hotfix
2 parents 5199655 + 7f8d664 commit 84c352f

9 files changed

Lines changed: 65 additions & 70 deletions

File tree

plugin_template/BepInEx/plugins/SpaceWarp/localizations/space_warp_localizations.csv

Lines changed: 49 additions & 49 deletions
Large diffs are not rendered by default.

plugin_template/BepInEx/plugins/SpaceWarp/swinfo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "Space Warp",
66
"description": "Space Warp is an API for KSP 2 mod developers.",
77
"source": "https://github.com/SpaceWarpDev/SpaceWarp",
8-
"version": "1.9.4",
8+
"version": "1.9.5",
99
"version_check": "https://raw.githubusercontent.com/SpaceWarpDev/SpaceWarp/main/plugin_template/BepInEx/plugins/SpaceWarp/swinfo.json",
1010
"ksp2_version": {
1111
"min": "0.2.1",

src/SpaceWarp.Core/SpaceWarp.Core.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,14 @@
1313
<PackageReference Include="BepInEx.BaseLib" Version="5.4.21" Publicize="true"/>
1414
<PackageReference Include="BepInEx.Core" Version="5.4.21"/>
1515
<PackageReference Include="HarmonyX" Version="2.10.1"/>
16-
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.1.5" Publicize="true" PrivateAssets="all"/>
16+
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.2.1" Publicize="true" PrivateAssets="all"/>
1717
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0"/>
1818
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
1919
<PackageReference Include="SpaceWarp.PluginInfoProps" Version="1.*" PrivateAssets="all"/>
2020
<PackageReference Include="UitkForKsp2" Version="2.4.0"/>
2121
<PackageReference Include="UnityEngine.Modules" Version="2022.3.5" Publicize="true"/>
2222
</ItemGroup>
2323
<ItemGroup Label="Project references">
24-
<ProjectReference Include="..\SpaceWarp.Preload\SpaceWarp.Preload.csproj">
25-
<Private>false</Private>
26-
<PrivateAssets>all</PrivateAssets>
27-
</ProjectReference>
24+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Preload/SpaceWarp.Preload.csproj" Private="false" PrivateAssets="all"/>
2825
</ItemGroup>
2926
</Project>

src/SpaceWarp.Game/SpaceWarp.Game.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
<PrivateAssets>all</PrivateAssets>
1010
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1111
</PackageReference>
12-
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.2.0" Publicize="true"/>
12+
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.2.1" Publicize="true"/>
1313
</ItemGroup>
1414
<ItemGroup Label="Project references">
15-
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false"/>
16-
<ProjectReference Include="..\SpaceWarp.UI\SpaceWarp.UI.csproj" />
15+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false" PrivateAssets="all"/>
16+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.UI/SpaceWarp.UI.csproj" Private="false" PrivateAssets="all"/>
1717
</ItemGroup>
1818
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<!-- References -->
33
<ItemGroup Label="Project references">
4-
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false"/>
4+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false" PrivateAssets="all"/>
55
</ItemGroup>
66
</Project>

src/SpaceWarp.Patches/SpaceWarp.Patches.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
88
</ItemGroup>
99
<ItemGroup Label="Project references">
10-
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Preload/SpaceWarp.Preload.csproj" Private="false"/>
10+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Preload/SpaceWarp.Preload.csproj" Private="false" PrivateAssets="all"/>
1111
</ItemGroup>
1212
</Project>

src/SpaceWarp.Sound/SpaceWarp.Sound.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<!-- References -->
44
<ItemGroup Label="NuGet package references">
55
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" Version="0.4.1" PrivateAssets="all"/>
6-
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.1.5" Publicize="true"/>
6+
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.2.1" Publicize="true"/>
77
</ItemGroup>
88
<ItemGroup Label="Project references">
9-
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false"/>
9+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false" PrivateAssets="all"/>
1010
</ItemGroup>
1111
</Project>

src/SpaceWarp.UI/SpaceWarp.UI.csproj

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@
33
<!-- References -->
44
<ItemGroup Label="NuGet package references">
55
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" Version="0.4.1" PrivateAssets="all"/>
6-
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.1.5" Publicize="true"/>
6+
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.2.1" Publicize="true"/>
77
<PackageReference Include="UitkForKsp2" Version="2.4.0" Publicize="true"/>
88
<PackageReference Include="UnityEngine.Modules" Version="2022.3.5" Publicize="true"/>
99
</ItemGroup>
1010
<ItemGroup Label="Project references">
11-
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false"/>
12-
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.VersionChecking/SpaceWarp.VersionChecking.csproj" Private="false"/>
13-
<ProjectReference Include="..\SpaceWarp.Preload\SpaceWarp.Preload.csproj">
14-
<Private>false</Private>
15-
</ProjectReference>
11+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false" PrivateAssets="all"/>
12+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.VersionChecking/SpaceWarp.VersionChecking.csproj" Private="false" PrivateAssets="all"/>
13+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Preload/SpaceWarp.Preload.csproj" Private="false" PrivateAssets="all"/>
1614
</ItemGroup>
1715
<!-- Files to compile -->
1816
<ItemGroup>

src/SpaceWarp.VersionChecking/SpaceWarp.VersionChecking.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<!-- References -->
44
<ItemGroup Label="NuGet package references">
5-
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.1.5"/>
5+
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.2.1"/>
66
</ItemGroup>
77
<ItemGroup Label="Project references">
8-
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false"/>
8+
<ProjectReference Include="$(SolutionDir)/src/SpaceWarp.Core/SpaceWarp.Core.csproj" Private="false" PrivateAssets="all"/>
99
</ItemGroup>
1010
</Project>

0 commit comments

Comments
 (0)