Skip to content

Commit

Permalink
1.0.1 and NetKAN.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrossignol committed Apr 2, 2016
1 parent 198ca58 commit a7a092a
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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.
Binary file modified GameData/KerbalSports/KerbalSports.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions GameData/KerbalSports/KerbalSports.version
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -11,7 +11,7 @@
"VERSION":{
"MAJOR":1,
"MINOR":0,
"PATCH":0,
"PATCH":1,
"BUILD":0
},
"KSP_VERSION":{
Expand Down
23 changes: 23 additions & 0 deletions KerbalSports.netkan
Original file line number Diff line number Diff line change
@@ -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",
}
}

6 changes: 6 additions & 0 deletions source/KerbalSports/Fishing/FishingDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
4 changes: 2 additions & 2 deletions source/KerbalSports/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

0 comments on commit a7a092a

Please sign in to comment.