Skip to content

Commit

Permalink
v0.4.5
Browse files Browse the repository at this point in the history
* move loadingscreens plugin

* update to latest kopernicus

* changelog and version
  • Loading branch information
Sigma88 committed Oct 7, 2017
1 parent b2e23f2 commit ad99a48
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Changelog.txt
@@ -1,3 +1,9 @@
**v0.4.5**

- Updated to KSP 1.3.1 and Kopernicus 1.3.1-2
- Moved LoadingScreens textures to reduce RAM usage


**v0.4.4**

- Updated to Kopernicus 1.3.0-8
Expand Down
Binary file not shown.
Binary file modified GameData/GalacticNeighborhood/Plugins/GalacticNeighborhood.dll
Binary file not shown.
Expand Up @@ -13,13 +13,13 @@
{
"MAJOR": 0,
"MINOR": 4,
"PATCH": 4,
"PATCH": 5,
"BUILD": 0
},
"KSP_VERSION":
{
"MAJOR": 1,
"MINOR": 3,
"PATCH": 0
"PATCH": 1
}
}
Binary file not shown.
Binary file modified [Source]/Distribution/GalacticNeighborhood.dll
Binary file not shown.
8 changes: 4 additions & 4 deletions [Source]/GalacticNeighborhood/SunFlareSwitcher.cs
Expand Up @@ -26,16 +26,16 @@ void Update()
{
// Restore default sunFlare
if (activeStar != null && oldFlare != null)
activeStar.sunFlare.flare = oldFlare;
activeStar.lensFlare.sunFlare.flare = oldFlare;

// Select current activeStar
activeStar = KopernicusStar.Current;

// Backup default flare and load activeFlare
if (activeStar != null && activeStar.sunFlare != null)
if (activeStar != null && activeStar.lensFlare.sunFlare != null)
{
oldFlare = activeStar.sunFlare.flare;
activeStar.sunFlare.flare = activeFlares[activeStar.name];
oldFlare = activeStar.lensFlare.sunFlare.flare;
activeStar.lensFlare.sunFlare.flare = activeFlares[activeStar.name];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion [Source]/GalacticNeighborhood/Version.cs
Expand Up @@ -6,7 +6,7 @@ namespace GalacticNeighborhoodPlugin
[KSPAddon(KSPAddon.Startup.Instantly, true)]
public class Version : MonoBehaviour
{
public static readonly string number = "v.0.4.4";
public static readonly string number = "v.0.4.5";
void Awake()
{
Debug.Log("[SigmaLog] Version Check: Galactic Neighborhood " + number);
Expand Down

0 comments on commit ad99a48

Please sign in to comment.