Skip to content

Commit 33ea7a1

Browse files
Fixed Prograde & Retrograde from snapping during timewarp IF there is any current movement
Added Radial out and Radial in Renamed DLL for CKAN compatibility Added AssemblyFileVersion Updated version file for 1.12
1 parent 12cbcd0 commit 33ea7a1

13 files changed

Lines changed: 102 additions & 77 deletions

Changelog.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,11 @@ Changelog
2323
1.9.1.4
2424
Thanks to user @Tacombel for this
2525
Spanish translation
26-
Added support for Retrograde
26+
Added support for Retrograde
27+
28+
1.9.1.5
29+
Fixed Prograde & Retrograde from snapping during timewarp IF there is any current movement
30+
Added Radial out and Radial in
31+
Renamed DLL for CKAN compatibility
32+
Added AssemblyFileVersion
33+
Updated version file for 1.12

GameData/PersistentRotation/PersistentRotationUpgraded.version

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,16 @@
1111
"MAJOR": 1,
1212
"MINOR": 9,
1313
"PATCH": 1,
14-
"BUILD": 4
14+
"BUILD": 5
1515
},
1616
"KSP_VERSION": {
1717
"MAJOR": 1,
18-
"MINOR": 9,
19-
"PATCH": 1
18+
"MINOR": 12,
19+
"PATCH": 0
2020
},
2121
"KSP_VERSION_MIN": {
2222
"MAJOR": 1,
2323
"MINOR": 8,
2424
"PATCH": 0
25-
},
26-
"KSP_VERSION_MAX": {
27-
"MAJOR": 1,
28-
"MINOR": 11,
29-
"PATCH": 99
3025
}
3126
}
512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

PersistentRotationUpgraded.version

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,16 @@
1111
"MAJOR": 1,
1212
"MINOR": 9,
1313
"PATCH": 1,
14-
"BUILD": 4
14+
"BUILD": 5
1515
},
1616
"KSP_VERSION": {
1717
"MAJOR": 1,
18-
"MINOR": 9,
19-
"PATCH": 1
18+
"MINOR": 12,
19+
"PATCH": 0
2020
},
2121
"KSP_VERSION_MIN": {
2222
"MAJOR": 1,
2323
"MINOR": 8,
2424
"PATCH": 0
25-
},
26-
"KSP_VERSION_MAX": {
27-
"MAJOR": 1,
28-
"MINOR": 11,
29-
"PATCH": 99
3025
}
3126
}

Source/AssemblyVersion.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55

66
using System.Reflection;
77

8-
[assembly: AssemblyVersion("1.9.1.4")]
8+
[assembly: AssemblyVersion("1.9.1.5")]
9+
[assembly: AssemblyFileVersion("1.9.1.5")]

Source/AssemblyVersion.tt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,4 @@
9898
using System.Reflection;
9999

100100
[assembly: AssemblyVersion("<#= major #>.<#= minor #>.<#= patch #>.<#= build #>")]
101+
[assembly: AssemblyFileVersion("<#= major #>.<#= minor #>.<#= patch #>.<#= build #>")]

Source/Interface.cs

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -423,48 +423,6 @@ void OnClick()
423423
disabled = !disabled;
424424
}
425425

426-
#if falase
427-
void DeleteBlizzyToolbar()
428-
{
429-
if (ToolbarManager.ToolbarAvailable)
430-
{
431-
if (button != null)
432-
{
433-
button.Destroy();
434-
}
435-
}
436-
}
437-
void CreateStockToolbar()
438-
{
439-
if (!stockButton)
440-
{
441-
stockButton = ApplicationLauncher.Instance.AddModApplication(
442-
() =>
443-
{
444-
disabled = !disabled;
445-
},
446-
() =>
447-
{
448-
disabled = !disabled;
449-
},
450-
null,
451-
null,
452-
null,
453-
null,
454-
ApplicationLauncher.AppScenes.FLIGHT,
455-
GameDatabase.Instance.GetTexture("PersistentRotation/Textures/texture", false)
456-
);
457-
}
458-
}
459-
void DeleteStockToolbar()
460-
{
461-
if (stockButton)
462-
{
463-
ApplicationLauncher.Instance.RemoveModApplication(stockButton);
464-
stockButton = null;
465-
}
466-
}
467-
#endif
468426
void SaveGUI()
469427
{
470428
try

0 commit comments

Comments
 (0)