Skip to content

Commit

Permalink
Release 0.5.7.5 (lisias) for KSP >= 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisias committed Oct 30, 2021
1 parent 31e3ee4 commit 779cd1d
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 10 deletions.
33 changes: 27 additions & 6 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
# Haystack /L Unleashed :: Changes

* 2018-0803: 0.5.4.4 (lisias) for KSP 1.4.1
+ Moving settings data file to <KSP_ROOT>/PluginsData .
* 2018-0428: 0.5.4.3 (linuxgurugamer) for KSP 1.4.1
+ Added ToolbarRegistration
+ Removed settings page
+ Updated version info
* 2021-1028: 0.5.7.5 (lisias) for KSP >= 1.3.1
+ Updating code to the latest KSPe (2.4)
+ Catching up with the Upstream:
- 0.5.7.3
- Fixed filtering of new vessel types
- 0.5.7.2
- Added new icons:
- `button_vessel_droppedpart`
- `button_vessel_deployedgroundpart`
- Added AssemblyFileVersion
- Added translation of vessel type with two words combined to two words, english only
Updated KSP version to 1.12
- 0.5.7
- Added API to support ResourceMonitors
- 0.5.6.5
- Added Stock Settings page to control alternate skin use
- Added back normal stock skin
- 0.5.6.4
- Fixed localized vessel names
- Added API for AlertMonitors to access last selected vessel & open/move the window
- 0.5.6.1
- Added red X, upperleft to close window
- 0.5.6
- Added icons for two new vessel types:
- `Vesseltypes.DeployedScienceController`
- `VesselTypes.DeployedSciencePart`
- Added code to add spaces to the text names for the new vessel types
29 changes: 29 additions & 0 deletions CHANGE_LOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Haystack /L Unleashed :: Change Log

* 2021-1028: 0.5.7.5 (lisias) for KSP >= 1.3.1
+ Updating code to the latest KSPe (2.4)
+ Catching up with the Upstream:
- 0.5.7.3
- Fixed filtering of new vessel types
- 0.5.7.2
- Added new icons:
- `button_vessel_droppedpart`
- `button_vessel_deployedgroundpart`
- Added AssemblyFileVersion
- Added translation of vessel type with two words combined to two words, english only
- Updated KSP version to 1.12
- 0.5.7
- Added API to support ResourceMonitors
- 0.5.6.5
- Added Stock Settings page to control alternate skin use
- Added back normal stock skin
- 0.5.6.4
- Fixed localized vessel names
- Added API for AlertMonitors to access last selected vessel & open/move the window
- 0.5.6.1
- Added red X, upperleft to close window
- 0.5.6
- Added icons for two new vessel types:
- `Vesseltypes.DeployedScienceController`
- `VesselTypes.DeployedSciencePart`
- Added code to add spaces to the text names for the new vessel types
* 2021-1005: 0.5.7.4 (lisias) for KSP >= 1.4.1
+ ***DITCHED***
* 2018-0803: 0.5.4.4 (lisias) for KSP 1.4.1
+ Moving settings data file to <KSP_ROOT>/PluginsData .
* 2018-0428: 0.5.4.3 (linuxgurugamer) for KSP 1.4.1
Expand Down
4 changes: 2 additions & 2 deletions Haystack.version
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"VERSION":{
"MAJOR":0,
"MINOR":5,
"PATCH":4,
"BUILD":4
"PATCH":7,
"BUILD":5
},
"KSP_VERSION_MIN":{
"MAJOR":1,
Expand Down
1 change: 1 addition & 0 deletions Source/Haystack/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@
[assembly: AssemblyFileVersion(Haystack.Version.Number)]
[assembly: NeutralResourcesLanguageAttribute("en")]

[assembly: KSPAssembly("Haystack", Haystack.Version.major, Haystack.Version.minor)]
[assembly: KSPAssemblyDependency("KSPe", 2, 4)]
[assembly: KSPAssemblyDependency("KSPe.UI", 2, 4)]
5 changes: 3 additions & 2 deletions Source/Haystack/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ along with Haystack /L Unleashed.

namespace Haystack
{
[KSPAddon(KSPAddon.Startup.Instantly, true)]
internal class Startup : MonoBehaviour
{
{
private void Start()
{
Log.force("Version {0}", Version.Text);
Expand All @@ -45,5 +46,5 @@ private void Start()
KSPe.Common.Dialogs.ShowStopperAlertBox.Show(e);
}
}
}
}
}

0 comments on commit 779cd1d

Please sign in to comment.