Skip to content

Commit e733341

Browse files
committed
Merge 3.9.1.0 to master
2 parents c2ee59b + 01ca4d3 commit e733341

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

KerbalAlarmClock/KerbalAlarmClock.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"VERSION": {
66
"MAJOR": 3,
77
"MINOR": 9,
8-
"PATCH": 0,
8+
"PATCH": 1,
99
"BUILD": 0
1010
},
1111
"KSP_VERSION": {

KerbalAlarmClock/KerbalAlarmClock_Window.cs

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,11 @@ private void windowMainMouseEvents()
953953
//if in width dragrect
954954
if (dragHandleWidth.Contains(mousePosition))
955955
{
956-
SetCustomCursor(ref cursorWidth, KACResources.curResizeWidth);
956+
//Bypass for 1.4.1 as this kills the game cursor on linux
957+
if (Application.platform != RuntimePlatform.LinuxPlayer)
958+
{
959+
SetCustomCursor(ref cursorWidth, KACResources.curResizeWidth);
960+
}
957961

958962
//watch for mousedown
959963
if (Event.current.type == EventType.mouseDown && Event.current.button == 0)
@@ -964,7 +968,12 @@ private void windowMainMouseEvents()
964968
}
965969
else
966970
{
967-
ClearCustomCursor(ref cursorWidth);
971+
972+
//Bypass for 1.4.1 as this kills the game cursor on linux
973+
if (Application.platform != RuntimePlatform.LinuxPlayer)
974+
{
975+
ClearCustomCursor(ref cursorWidth);
976+
}
968977
}
969978
}
970979

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.9.0.0")]
36-
[assembly: AssemblyFileVersion("3.9.0.0")]
35+
[assembly: AssemblyVersion("3.9.1.0")]
36+
[assembly: AssemblyFileVersion("3.9.1.0")]

PlugInFiles/ReadMe-KerbalAlarmClock.txt

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

3434
VERSION HISTORY
35+
Version 3.9.1.0 - KSP Version: 1.4.1
36+
- Removed custom cursors for users running Linux as this kills the game cursor for them (Issue #200)
37+
3538
Version 3.9.0.0 - KSP Version: 1.4.1
3639
- Recompiled for 1.4.1 (Issue #199, #199)
3740
- Fix alarm delete when no message displayed (Issue #195)

0 commit comments

Comments
 (0)