diff --git a/CHANGES.txt b/CHANGES.txt index a09b19b..5f52a6d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,2 +1,5 @@ +Kerbal Sports 1.0.1 +- Fixed not fishing log spam and broken animations (thanks YellowApple). + Kerbal Sports 1.0.0 - Initial release. diff --git a/GameData/KerbalSports/KerbalSports.dll b/GameData/KerbalSports/KerbalSports.dll index 306f27d..132e4fc 100644 Binary files a/GameData/KerbalSports/KerbalSports.dll and b/GameData/KerbalSports/KerbalSports.dll differ diff --git a/GameData/KerbalSports/KerbalSports.version b/GameData/KerbalSports/KerbalSports.version index 9d269d3..f0df7d4 100644 --- a/GameData/KerbalSports/KerbalSports.version +++ b/GameData/KerbalSports/KerbalSports.version @@ -2,7 +2,7 @@ "NAME":"KerbalSports", "URL":"https://raw.githubusercontent.com/jrossignol/KerbalSports/master/GameData/KerbalSports/KerbalSports.version", "DOWNLOAD":"https://github.com/jrossignol/KerbalSports/releases", - "CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/KerbalSports/1.0.0/CHANGES.txt", + "CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/KerbalSports/1.0.1/CHANGES.txt", "GITHUB":{ "USERNAME":"jrossignol", "REPOSITORY":"KerbalSports", @@ -11,7 +11,7 @@ "VERSION":{ "MAJOR":1, "MINOR":0, - "PATCH":0, + "PATCH":1, "BUILD":0 }, "KSP_VERSION":{ diff --git a/KerbalSports.netkan b/KerbalSports.netkan new file mode 100644 index 0000000..32f66bd --- /dev/null +++ b/KerbalSports.netkan @@ -0,0 +1,23 @@ +{ + "spec_version": "v1.16", + "identifier": "KerbalSports", + "$kref": "#/ckan/github/jrossignol/KerbalSports", + "name": "Strategia", + "abstract": "Kerbal Sports: Jebediah's Fishing Challenge.", + "license": "CC-BY-NC-SA", + "release_status": "stable", + "author": "nightingale", + "$vref": "#/ckan/ksp-avc", + "install": [ + { + "find": "KerbalSports", + "install_to": "GameData" + } + ], + "resources": { + "homepage": "http://forum.kerbalspaceprogram.com/index.php?/topic/135728-/", + "bugtracker": "https://github.com/jrossignol/KerbalSports/issues", + "license": "https://raw.githubusercontent.com/jrossignol/KerbalSports/master/GameData/KerbalSports/LICENSE.txt", + } +} + diff --git a/source/KerbalSports/Fishing/FishingDriver.cs b/source/KerbalSports/Fishing/FishingDriver.cs index 2e0e826..45d363e 100644 --- a/source/KerbalSports/Fishing/FishingDriver.cs +++ b/source/KerbalSports/Fishing/FishingDriver.cs @@ -430,6 +430,12 @@ void LoadGuiInfo() void Update() { + // No fishing + if (fishingState == FishingState.NotFishing) + { + return; + } + // If the Kerbal falls into the water, cancel the fishing trip if (evaVessel.situation != Vessel.Situations.LANDED) { diff --git a/source/KerbalSports/Properties/AssemblyInfo.cs b/source/KerbalSports/Properties/AssemblyInfo.cs index 093c480..4c0c9a4 100644 --- a/source/KerbalSports/Properties/AssemblyInfo.cs +++ b/source/KerbalSports/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0")] -[assembly: AssemblyFileVersion("1.0.0")] -[assembly: AssemblyInformationalVersion("1.0.0")] +[assembly: AssemblyFileVersion("1.0.1")] +[assembly: AssemblyInformationalVersion("1.0.1")] [assembly: KSPAssembly("KerbalSports", 1, 0)]