Skip to content

Commit

Permalink
1.30.4; fixed major crash issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrossignol committed Sep 21, 2020
1 parent 8d96970 commit 261298c
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Contract Configurator 1.30.4
- Fixed major issue when Breaking Ground wasn't installed (thanks boribori).

Contract Configurator 1.30.3
- Deployed Science from Breaking Ground no longer generates tons of message spam. Instead, the messages (including screen messages) are intercepted and combined into a single more useful message.
- Re-enable the reload contracts button (may or may not work).
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.
4 changes: 2 additions & 2 deletions GameData/ContractConfigurator/ContractConfigurator.version
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"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.30.3/CHANGES.txt",
"CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/1.30.4/CHANGES.txt",
"GITHUB":{
"USERNAME":"jrossignol",
"REPOSITORY":"ContractConfigurator",
Expand All @@ -11,7 +11,7 @@
"VERSION":{
"MAJOR":1,
"MINOR":30,
"PATCH":3,
"PATCH":4,
"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.30.3")]
[assembly: AssemblyInformationalVersion("1.30.3")]
[assembly: AssemblyFileVersion("1.30.4")]
[assembly: AssemblyInformationalVersion("1.30.4")]
[assembly: KSPAssembly("CC_RemoteTech", 1, 0)]
[assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)]
[assembly: KSPAssemblyDependency("RemoteTech", 1, 7)]
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.30.3")]
[assembly: AssemblyInformationalVersion("1.30.3")]
[assembly: AssemblyFileVersion("1.30.4")]
[assembly: AssemblyInformationalVersion("1.30.4")]
[assembly: KSPAssembly("ContractConfigurator", 1, 0)]
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public class ScienceReporter : ScenarioModule
{
static FieldInfo messageListField = typeof(MessageSystem).GetFields(BindingFlags.Instance | BindingFlags.NonPublic).Where(fi => fi.FieldType == typeof(List<MessageSystemButton>)).First();
static List<MessageSystemButton> messageList = null;
static string deployedScienceTag = Localizer.GetStringByTag("#autoLOC_8002254");
static string deployedScienceMessageTitle = Localizer.GetStringByTag("#cc.science.deployedScienceReport");
static string deployedScienceTag = null;
static string deployedScienceMessageTitle = null;

int lastMessageCount = 0;
List<ScienceSubject> recentScience = new List<ScienceSubject>();
Expand All @@ -37,6 +37,9 @@ public override void OnAwake()
{
Destroy(this);
}

deployedScienceTag = Localizer.GetStringByTag("#autoLOC_8002254");
deployedScienceMessageTitle = Localizer.GetStringByTag("#cc.science.deployedScienceReport");
}

void Start()
Expand Down
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.30.3")]
[assembly: AssemblyInformationalVersion("1.30.3")]
[assembly: AssemblyFileVersion("1.30.4")]
[assembly: AssemblyInformationalVersion("1.30.4")]
[assembly: KSPAssembly("KerKonConConExt", 1, 0)]
[assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)]
[assembly: KSPAssemblyDependency("KerbalKonstructs", 0, 9)]

0 comments on commit 261298c

Please sign in to comment.