Skip to content

Commit

Permalink
Renamed DLL for CKAN compatibility
Browse files Browse the repository at this point in the history
Added AssemblyFileVersion
Updated version file for 1.12
  • Loading branch information
linuxgurugamer committed Jul 27, 2021
1 parent ca7d580 commit 83315af
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 9 deletions.
5 changes: 5 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,8 @@ ChangeLog
0.2.1.1
Changed initial nearClipPlane of the cameras from 0.01 to 0.05 to solve flickering problems during launch
Updated build configs

0.2.1.2
Renamed DLL for CKAN compatibility
Added AssemblyFileVersion
Updated version file for 1.12
7 changes: 6 additions & 1 deletion GameData/HullCameraVDS/HullcamVDSContinued.version
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
"MAJOR": 0,
"MINOR": 2,
"PATCH": 1,
"BUILD": 0
"BUILD": 2
},
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 12,
"PATCH": 0
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
Expand Down
3 changes: 2 additions & 1 deletion HullCamera/AssemblyVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@

using System.Reflection;

[assembly: AssemblyVersion("0.2.1.0")]
[assembly: AssemblyVersion("0.2.1.2")]
[assembly: AssemblyFileVersion("0.2.1.2")]
3 changes: 2 additions & 1 deletion HullCamera/AssemblyVersion.tt
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,5 @@

using System.Reflection;

[assembly: AssemblyVersion("<#= major #>.<#= minor #>.<#= patch #>.<#= build #>")]
[assembly: AssemblyVersion("<#= major #>.<#= minor #>.<#= patch #>.<#= build #>")]
[assembly: AssemblyFileVersion("<#= major #>.<#= minor #>.<#= patch #>.<#= build #>")]
2 changes: 1 addition & 1 deletion HullCamera/HullCamera.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>HullCamera</RootNamespace>
<AssemblyName>HullCamera</AssemblyName>
<AssemblyName>HullcamVDSContinued</AssemblyName>
<FileAlignment>512</FileAlignment>
<Description>HullCamera</Description>
<ReleaseVersion>0.2.9.5</ReleaseVersion>
Expand Down
Binary file not shown.
7 changes: 6 additions & 1 deletion HullcamVDSContinued.version
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
"MAJOR": 0,
"MINOR": 2,
"PATCH": 1,
"BUILD": 1
"BUILD": 2
},
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 12,
"PATCH": 0
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
Expand Down
1 change: 0 additions & 1 deletion buildrelease.bat
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ rem Copy files to GameData locations

copy /Y "%1%2" "%GAMEDATA%\%GAMEDIR%\Plugins"
copy /Y %VERSIONFILE% %GAMEDATA%\%GAMEDIR%
rem copy /Y ..\MiniAVC.dll %GAMEDATA%\%GAMEDIR%

if "%LICENSE%" NEQ "" copy /y %LICENSE% %GAMEDATA%\%GAMEDIR%
if "%README%" NEQ "" copy /Y %README% %GAMEDATA%\%GAMEDIR%
Expand Down
4 changes: 1 addition & 3 deletions deploy.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ rem but not always

set H=%KSPDIR%

set h=r:\KSP_1.11.2

set GAMEDIR=HullCameraVDS
set GAMEDATA="GameData"
copy /Y HullcamVDSContinued.version %GAMEDATA%\%GAMEDIR%
Expand All @@ -25,4 +23,4 @@ copy /Y %VERSIONFILE% %GAMEDATA%\%GAMEDIR%
xcopy /y /s /I %GAMEDATA%\%GAMEDIR% "%H%\GameData\%GAMEDIR%"
xcopy /y /s /I %GAMEDATA%\%GAMEDIR% "%DP0%\GameData\%GAMEDIR%"

rem pause
rem pause

0 comments on commit 83315af

Please sign in to comment.