From 22fafc7239ce9f78d4319823df6a8c056e19ac16 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 2 May 2015 09:39:08 +0900 Subject: [PATCH 1/2] Fix the ksp directory for Linux. --- Source/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Makefile b/Source/Makefile index f07a60c8..f0fc48f2 100644 --- a/Source/Makefile +++ b/Source/Makefile @@ -3,7 +3,7 @@ ifeq ($(OS),Windows_NT) else UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Linux) - KSPDIR := ${HOME}/.local/share/Steam/SteamApps/common/Kerbal\ Space\ Program + KSPDIR := ${HOME}/ksp/KSP_linux MANAGED := ${KSPDIR}/KSP_Data/Managed/ endif ifeq ($(UNAME_S),Darwin) From b5816596c82e35672ae866768b928ee68d95ddf3 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 2 May 2015 09:39:47 +0900 Subject: [PATCH 2/2] Bump the KSP version check to 1.0.2. --- Source/zzVersionChecker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/zzVersionChecker.cs b/Source/zzVersionChecker.cs index 6cdfaf19..689766e1 100644 --- a/Source/zzVersionChecker.cs +++ b/Source/zzVersionChecker.cs @@ -64,7 +64,7 @@ public static bool IsCompatible() // Even if you don't lock down functionality, you should return true if your users // can expect a future update to be available. // - return Versioning.version_major == 1 && Versioning.version_minor == 0 && Versioning.Revision == 0; + return Versioning.version_major == 1 && Versioning.version_minor == 0 && Versioning.Revision == 2; /*-----------------------------------------------*\ | IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! |