Skip to content

Commit

Permalink
1.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jrossignol committed Aug 9, 2016
1 parent 044bf0e commit 048087a
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Contract Configurator 1.16.3
Contract Configurator 1.17.0
- Mission Control remembers the last visited tab when you open it, and takes you there.
- Added Tracking Station buttons for filtering orbits/waypoints from contracts.
- Added support for adding loading tool tips.
Expand Down
Binary file modified GameData/ContractConfigurator/CC_RemoteTech.dll
Binary file not shown.
Binary file modified GameData/ContractConfigurator/ContractConfigurator.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions GameData/ContractConfigurator/ContractConfigurator.version
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"NAME":"Contract Configurator",
"URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/master/GameData/ContractConfigurator/ContractConfigurator.version",
"DOWNLOAD":"https://github.com/jrossignol/ContractConfigurator/releases",
"CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/1.16.2/CHANGES.txt",
"CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/1.17.0/CHANGES.txt",
"GITHUB":{
"USERNAME":"jrossignol",
"REPOSITORY":"ContractConfigurator",
"ALLOW_PRE_RELEASE":false
},
"VERSION":{
"MAJOR":1,
"MINOR":16,
"PATCH":2,
"MINOR":17,
"PATCH":0,
"BUILD":0
},
"KSP_VERSION":{
Expand Down
Binary file modified GameData/ContractConfigurator/KerKonConConExt.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions source/CC_RemoteTech/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0")]
[assembly: AssemblyFileVersion("1.16.2")]
[assembly: AssemblyInformationalVersion("1.16.2")]
[assembly: AssemblyFileVersion("1.17.0")]
[assembly: AssemblyInformationalVersion("1.17.0")]
[assembly: KSPAssembly("CC_RemoteTech", 1, 0)]
[assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)]
[assembly: KSPAssemblyDependency("RemoteTech", 1, 7)]
11 changes: 9 additions & 2 deletions source/ContractConfigurator/Behaviour/OrbitGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,15 @@ protected void OnMapViewFiltersModified(MapViewFiltering.VesselTypeFilter filter
// Reset state of renderers
foreach (OrbitData obData in orbits)
{
obData.CleanupRenderer();
obData.SetupRenderer();
if (contract.ContractState == Contract.State.Active && ContractConfiguratorSettings.Instance.DisplayActiveOrbits ||
contract.ContractState == Contract.State.Offered && ContractConfiguratorSettings.Instance.DisplayOfferedOrbits)
{
obData.SetupRenderer();
}
else
{
obData.CleanupRenderer();
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/ContractConfigurator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0")]
[assembly: AssemblyFileVersion("1.16.2")]
[assembly: AssemblyInformationalVersion("1.16.2")]
[assembly: AssemblyFileVersion("1.17.0")]
[assembly: AssemblyInformationalVersion("1.17.0")]
[assembly: KSPAssembly("ContractConfigurator", 1, 0)]
4 changes: 2 additions & 2 deletions source/KerKonConConExt/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0")]
[assembly: AssemblyFileVersion("1.16.2")]
[assembly: AssemblyInformationalVersion("1.16.2")]
[assembly: AssemblyFileVersion("1.17.0")]
[assembly: AssemblyInformationalVersion("1.17.0")]
[assembly: KSPAssembly("KerKonConConExt", 1, 0)]
[assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)]
[assembly: KSPAssemblyDependency("KerbalKonstructs", 0, 9)]

0 comments on commit 048087a

Please sign in to comment.