Skip to content

Commit adf588f

Browse files
committed
Bug fixes to deployment build.
1 parent 711f35e commit adf588f

File tree

9 files changed

+18
-12
lines changed

9 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Changelog for Connected Living Spaces
44
Major features are **bolded**, contributors are *emphasized*.
55

66
Version {VERSION} - Release {DATE} - KSP {KSPVERSION}
7+
-------------------------------------------------
8+
- Fixed: Revert CLSClient.cs location to match build process
9+
- Fixed: Correct version template to reflect correct version data for build process
10+
11+
12+
Version 2.0.1.0 - Release 27 Nov 2021 - KSP 1.12.2
713
-------------------------------------------------
814
- Changed: Back to previous maintainer, *Papa_Joe*. Thanks *Micha*, for your support!.
915
- New: recompiled for KSP 1.12.x and DotNet 4.8

CONTRIBUTORS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ If you have contributed and are missing from this list, please contact the curre
1414
- Kerbas_ad_astra
1515
- Li-Zongyao
1616
- linuxgurugamer
17-
- *Micha* (current maintainer)
17+
- *Micha* (maintainer during Papa_Joe's absence)
1818
- Mine_Turtle
19-
- **Papa_Joe** (long-term maintainer)
19+
- **Papa_Joe** (long-term/current maintainer)
2020
- taniwha
2121
- tyehle
2222
- wookieegoldberg

Distribution/GameData/ConnectedLivingSpace/ConnectedLivingSpace.version

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"NAME": "Connected Living Space",
3-
"URL": "https://raw.githubusercontent.com/mwerle/ConnectedLivingSpace/Distribution/GameData/ConnectedLivingSpace/ConnectedLivingSpace.version",
4-
"CHANGE_LOG_URL":"https://raw.githubusercontent.com/mwerle/ConnectedLivingSpace/CHANGELOG.md",
3+
"URL": "https://raw.githubusercontent.com/papajoessoup/ConnectedLivingSpace/Distribution/GameData/ConnectedLivingSpace/ConnectedLivingSpace.version",
4+
"CHANGE_LOG_URL":"https://raw.githubusercontent.com/papajoessoup/ConnectedLivingSpace/CHANGELOG.md",
55
"GITHUB":
66
{
77
"USERNAME":"mwerle",
@@ -11,13 +11,13 @@
1111
"VERSION": {
1212
"MAJOR": 2,
1313
"MINOR": 0,
14-
"PATCH": 1,
14+
"PATCH": 2,
1515
"BUILD": 0
1616
},
1717
"KSP_VERSION": {
1818
"MAJOR": 1,
1919
"MINOR": 12,
20-
"PATCH": 2
20+
"PATCH": 3
2121
},
2222
"KSP_VERSION_MIN": {
2323
"MAJOR": 1,
Binary file not shown.
Binary file not shown.

Scripts/Deploy.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Deploy" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.8">
33
<ImportGroup Label="PropertySheets">
44
<Import Project="..\Source\common_settings.props" />
@@ -133,7 +133,7 @@
133133
<!-- Copy dev files -->
134134
<MakeDir Directories="$(BuildDir)\Dev" Condition="!Exists('$(BuildDir)\Dev')" />
135135
<Copy
136-
SourceFiles="$(CLSI_BuildDir)\$(BuildConfiguration)\CLSInterfaces.dll"
136+
SourceFiles="$(SourceDir)\CLSInterfaces\CLSClient.cs;$(CLSI_BuildDir)\$(BuildConfiguration)\CLSInterfaces.dll"
137137
DestinationFolder="$(BuildDir)\Dev" />
138138
</Target>
139139

Scripts/Version.template

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"NAME": "Connected Living Space",
3-
"URL": "https://raw.githubusercontent.com/mwerle/ConnectedLivingSpace/Distribution/GameData/ConnectedLivingSpace/ConnectedLivingSpace.version",
4-
"CHANGE_LOG_URL":"https://raw.githubusercontent.com/mwerle/ConnectedLivingSpace/CHANGELOG.md",
3+
"URL": "https://raw.githubusercontent.com/papajoessoup/ConnectedLivingSpace/Distribution/GameData/ConnectedLivingSpace/ConnectedLivingSpace.version",
4+
"CHANGE_LOG_URL":"https://raw.githubusercontent.com/papajoessoup/ConnectedLivingSpace/CHANGELOG.md",
55
"GITHUB":
66
{
77
"USERNAME":"mwerle",
@@ -26,7 +26,7 @@
2626
},
2727
"KSP_VERSION_MAX": {
2828
"MAJOR": 1,
29-
"MINOR": 11,
29+
"MINOR": 12,
3030
"PATCH": 99
3131
}
3232
}

Distribution/GameData/ConnectedLivingSpace/Dev/CLSClient.cs renamed to Source/CLSInterfaces/CLSClient.cs

File renamed without changes.

Source/ConnectedLivingSpace/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
//
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
33-
[assembly: AssemblyVersion("2.0.1.0")]
33+
[assembly: AssemblyVersion("2.0.2.0")]
3434
//[assembly: AssemblyFileVersion("2.0.0.3")]

0 commit comments

Comments
 (0)