Skip to content

Commit ad3e698

Browse files
committed
Version 3.11.0.0 ready
1 parent 2f0ad26 commit ad3e698

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

KerbalAlarmClock/KerbalAlarmClock.version

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44
"DOWNLOAD" : "https://github.com/TriggerAu/KerbalAlarmClock/releases",
55
"VERSION": {
66
"MAJOR": 3,
7-
"MINOR": 10,
7+
"MINOR": 11,
88
"PATCH": 0,
99
"BUILD": 0
1010
},
1111
"KSP_VERSION": {
1212
"MAJOR": 1,
13-
"MINOR": 6,
14-
"PATCH": 0
13+
"MINOR": 7,
14+
"PATCH": 3
1515
},
1616
"KSP_VERSION_MIN": {
1717
"MAJOR": 1,
18-
"MINOR": 6,
18+
"MINOR": 7,
1919
"PATCH": 0
2020
},
2121
"KSP_VERSION_MAX": {
2222
"MAJOR": 1,
23-
"MINOR": 6,
23+
"MINOR": 7,
2424
"PATCH": 99
2525
}
2626
}

KerbalAlarmClock/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("3.10.0.0")]
36-
[assembly: AssemblyFileVersion("3.10.0.0")]
35+
[assembly: AssemblyVersion("3.11.0.0")]
36+
[assembly: AssemblyFileVersion("3.11.0.0")]

PlugInFiles/ReadMe-KerbalAlarmClock.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ ATTRIBUTION-SOUNDS
3232
Included Sounds are from freesfx.co.uk (https://www.freesfx.co.uk). EULA can be found here: https://www.freesfx.co.uk/info/eula/
3333

3434
VERSION HISTORY
35+
Version 3.11.0.0 - KSP Version: 1.7.3
36+
- Recompiled for 1.7.3 (Issue #225)
37+
- Dont report missing vessel if there isnt one (Issue #222) - Thanks ReeseGlidden
38+
- Fix Drop-dows and scaling (Issue #228) - Thanks Kerbas-Ad-Astra
39+
- update some urls/uris (Issue #229) - thanks zatricky and neilser
40+
3541
Version 3.10.0.0 - KSP Version: 1.6.0
3642
- Recompiled for 1.6.0 (Issue #199, #199)
3743
- Fix for hyperbolic orbits (Issue #210) - Thanks Taniwha

PluginBuilder/CommitVersionReady.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $PluginName = (get-item $PSScriptRoot).Parent.Name
22
$UploadDir = "$($PSScriptRoot)\..\..\_Uploads\$($PluginName)"
33

44
#Get newest version
5-
$Version = (Get-ChildItem $UploadDir -Filter "v*.*.*.*"|sort -Descending)[0].name.replace("v","")
5+
$Version = (Get-ChildItem $UploadDir -Filter "v*.*.*.*"|sort LastWriteTime -Descending )[0].name.replace("v","")
66

77
$Choices= [System.Management.Automation.Host.ChoiceDescription[]] @("&Yes","&No")
88
$ChoiceRtn = $host.ui.PromptForChoice("`r`nGit Commit - v$($Version)","Do you wish to Commit the version ready message?",$Choices,0)

0 commit comments

Comments
 (0)