Skip to content

Commit

Permalink
v0.3.2
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
Sigma88 committed Jan 16, 2018
2 parents 07e2279 + 9e76f6d commit c96d353
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
**v0.3.2**

- Fixed KSP-AVC compatibility
- Fixed tipsFile


**v0.3.1**

- Fixed KSP-AVC compatibility
Expand Down
Binary file modified LoadingScreens/Sigma88LoadingScreens.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion LoadingScreens/Sigma88LoadingScreens.sigma
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{
"MAJOR": 0,
"MINOR": 3,
"PATCH": 1,
"PATCH": 2,
"BUILD": 0
},
"KSP_VERSION":
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**Custom Loading Screens Mod by Sigma88**


KSP Forum Thread: http://forum.kerbalspaceprogram.com/index.php?/topic/166521-0/
To get support: https://github.com/Sigma88/Sigma-LoadingScreens/issues

Latest Release: https://github.com/Sigma88/Sigma-LoadingScreens/releases/latest

Expand Down
Binary file modified [Source]/Distribution/Sigma88LoadingScreens.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion [Source]/SigmaLoadingScreens/LoadingScreens.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ static string[] LoadTips(string path)
{
Debug.Log("LoadTips", "Loading tips from file = " + path);

if (!File.Exists(path))
if (!File.Exists("GameData/" + path))
{
Debug.Log("LoadTips", "Path does not exist"); return new string[] { };
}
Expand Down
2 changes: 1 addition & 1 deletion [Source]/SigmaLoadingScreens/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: KSPAssembly("Sigma88LoadingScreens", 1, 0)]
[assembly: AssemblyVersion("0.3.1")]
[assembly: AssemblyVersion("0.3.2")]
2 changes: 1 addition & 1 deletion [Source]/SigmaLoadingScreens/SigmaAVC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class SigmaAVC : MonoBehaviour

void Awake()
{
if (first && AssemblyLoader.loadedAssemblies.FirstOrDefault(a => a.name == "KSP-AVC") != null)
if (first && Assembly.GetExecutingAssembly() == LoadingScreenSettings.TheChosenOne.assembly)
{
first = false;
DontDestroyOnLoad(this);
Expand Down

0 comments on commit c96d353

Please sign in to comment.