Skip to content

Commit

Permalink
Merge pull request #29 from ihsoft/next
Browse files Browse the repository at this point in the history
Release v2.1
  • Loading branch information
ihsoft authored Mar 3, 2020
2 parents 4284d28 + 93b41a1 commit 3ff34bd
Show file tree
Hide file tree
Showing 9 changed files with 141 additions and 147 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.1 (March, 3rd, 2020)
* [Change] Switch to C# compiler v6.0.
* [Change] Set maximum KSP version to `1.99` due to now Squad team increases the minor part on _any_ release, except a bugfix one (and it's the right way to treat versions!).
* [Enhancement] Fixing typos in the default localization strings descriptions.

# 2.0 (October 10th, 2019)
* [Change] KSP 1.8 compatibility. __WARNING__ Mod versions of `v2.0` and higher are not compatible to KSP versions prior to `1.8`!
* [Change] Upgrade to `C# .Net 4.5`.
Expand Down
15 changes: 6 additions & 9 deletions EasyVesselSwitch.version
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,22 @@
"DOWNLOAD": "http://kerbal.curseforge.com/projects/easy-vessel-switch-evs",
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 8,
"PATCH": 0
"MINOR": 9
},
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 8,
"PATCH": 99
"MINOR": 99
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 8,
"PATCH": 0
"MINOR": 8
},
"NAME": "Easy Vessel Switch",
"URL": "https://raw.githubusercontent.com/ihsoft/EasyVesselSwitch/master/EasyVesselSwitch.version",
"VERSION": {
"BUILD": 25545,
"BUILD": 39779,
"MAJOR": 2,
"MINOR": 0,
"PATCH": 7235
"MINOR": 1,
"PATCH": 7366
}
}
245 changes: 120 additions & 125 deletions Source/Controller.cs

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions Source/EasyVesselSwitch.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,11 @@
<DocumentationFile>bin\Release\EasyVesselSwitch.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>Q:\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Assembly-CSharp-firstpass">
<Reference Include="Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>Q:\KSP_x64_Data\Managed\Assembly-CSharp-firstpass.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="KSPDev_Utils.2.0">
<HintPath>..\Binaries\KSPDev_Utils.2.0.dll</HintPath>
Expand Down
6 changes: 3 additions & 3 deletions Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion ("2.0.*")]
[assembly: AssemblyInformationalVersion ("2.0 for KSP v1.8")]
[assembly: AssemblyVersion ("2.1.*")]
[assembly: AssemblyInformationalVersion ("2.1 for KSP v1.*")]
[assembly: Guid ("52fd90de-a2a6-4642-8fc4-50f8d938319c")]
[assembly: KSPAssembly ("EasyVesselSwitch", 2, 0)]
[assembly: KSPAssembly ("EasyVesselSwitch", 2, 1)]
[assembly: AssemblyFlags (AssemblyNameFlags.PublicKey | AssemblyNameFlags.EnableJITcompileOptimizer)]
5 changes: 2 additions & 3 deletions Tools/make_binary.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@echo off
REM Until new major version of C# is released the build number in the path will keep counting.
REM EVS *requires* .NET compiler version 4.0 or higher. Don't get confused with KSP run-time requirement of 3.5.
C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild ..\Source\EasyVesselSwitch.csproj /t:Clean,Build /p:Configuration=Release
REM EVS *requires* .NET compiler version 6.0 or higher and Framework version not less than 4.5.
"C:\Program Files (x86)\MSBuild\14.0\Bin\MsBuild.exe" ..\Source\EasyVesselSwitch.csproj /t:Clean,Build /p:Configuration=Release
2 changes: 1 addition & 1 deletion Tools/publish_curseforge_args.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
--changelog=../CHANGELOG.md
--versions=latest_all_builds
--title=EVS {tag}
--archive=../EasyVesselSwitch_v2.0.zip
--archive=../EasyVesselSwitch_v2.1.zip
2 changes: 1 addition & 1 deletion Tools/publish_github_args.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
--changelog=../CHANGELOG.md
--as_draft
--title=EVS v{tag}
--archive=../EasyVesselSwitch_v2.0.zip
--archive=../EasyVesselSwitch_v2.1.zip
2 changes: 1 addition & 1 deletion Tools/publish_spacedock_args.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
--login=<<SECRET>>
--changelog=../CHANGELOG.md
--ksp_version=latest
--archive=../EasyVesselSwitch_v2.0.zip
--archive=../EasyVesselSwitch_v2.1.zip

0 comments on commit 3ff34bd

Please sign in to comment.