diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a8f19306..c8596d132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,36 @@ kOS Mod Changelog ================= +# v0.19.2 + +This release is here primarily to fix a problem that made +the new v0.19.1 terminal unusable for users who have to +use low resolution texture settings in the Unity graphics +configuration panel. + +### BREAKING +* Nothing new breaking in this version is known about. + +### NEW FEATURES +* New alias KUNIVERSE:FORCEACTIVE() can be used instead of the longer name KUNIVERSE:FORCESETACTIVEVESSEL(). +* More robust use of the font_sml.png file allows for replacement of font_sml.png by the end-user. + (However this may only be useful for a limited time, as Unity5 might make us implement the font differently + anyway.) + +### BUG FIXES +* New terminal now works again at low texture resolution settings + (https://github.com/KSP-KOS/KOS/issues/1513). +* New terminal shows grey color on power-off again + (https://github.com/KSP-KOS/KOS/issues/1525). +* Terminal now shows a boot message that mentions the documentation URL + (https://github.com/KSP-KOS/KOS/issues/1527). +* Fixed a situation that could make KSP itself crash if a script + attempted to perform an equality comparison on types that hadn't + had a meaningful implementation of equality defined. (Instead + of a proper error message about it from kOS, kOS got stuck in + recursion.) + + # v0.19.1 This release is a patch to v0.19.0, fixing some things diff --git a/Resources/GameData/kOS/kOS.version b/Resources/GameData/kOS/kOS.version index 2cbbf45ae..be8502eb8 100644 --- a/Resources/GameData/kOS/kOS.version +++ b/Resources/GameData/kOS/kOS.version @@ -11,7 +11,7 @@ "VERSION": { "MAJOR": 0, "MINOR": 19, - "PATCH": 1 + "PATCH": 2 }, "KSP_VERSION": { "MAJOR": 1, diff --git a/doc/source/changes.rst b/doc/source/changes.rst index de72b5df0..8eb7268ad 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -24,6 +24,17 @@ release. **** +Changes in 0.19.2 +----------------- + +This was mostly a bug fix release. Not much changed in the documentation. + +FORCEACTIVE +::::::::::: + +New alias ``KUNIVERSE:FORCEACTIVE()`` can be used instead of the +longer name ``KUNIVERSE:FORCESETACTIVEVESSEL()``. + Changes in 0.19.1 ----------------- diff --git a/doc/source/conf.py b/doc/source/conf.py index e9f8463eb..336b77c4b 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = '0.19.1' +version = '0.19.2' # The full version, including alpha/beta/rc tags. -release = '0.19.1' +release = '0.19.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/kOS.Safe.Test/Properties/AssemblyInfo.cs b/src/kOS.Safe.Test/Properties/AssemblyInfo.cs index 6150b846d..56afb697d 100644 --- a/src/kOS.Safe.Test/Properties/AssemblyInfo.cs +++ b/src/kOS.Safe.Test/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.19.1.0")] -[assembly: AssemblyFileVersion("1.19.1.0")] +[assembly: AssemblyVersion("1.19.2.0")] +[assembly: AssemblyFileVersion("1.19.2.0")] diff --git a/src/kOS.Safe/Properties/AssemblyInfo.cs b/src/kOS.Safe/Properties/AssemblyInfo.cs index 55e7eea00..b2e54bdb3 100644 --- a/src/kOS.Safe/Properties/AssemblyInfo.cs +++ b/src/kOS.Safe/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.19.1.0")] -[assembly: AssemblyFileVersion("1.19.1.0")] +[assembly: AssemblyVersion("1.19.2.0")] +[assembly: AssemblyFileVersion("1.19.2.0")] diff --git a/src/kOS/Properties/AssemblyInfo.cs b/src/kOS/Properties/AssemblyInfo.cs index 9ddc47f92..acdef6fc8 100644 --- a/src/kOS/Properties/AssemblyInfo.cs +++ b/src/kOS/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyFileVersion("0.19.1.0")] -[assembly: AssemblyVersion("0.19.1.0")] +[assembly: AssemblyFileVersion("0.19.2.0")] +[assembly: AssemblyVersion("0.19.2.0")] [assembly: KSPAssembly("kOS", 0, 19)]