Skip to content

Commit

Permalink
Fixes #1529 - final (?) edits for 0.19.2 zip.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunbaratu committed Mar 8, 2016
1 parent 3a9d101 commit be2e3f8
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 9 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Resources/GameData/kOS/kOS.version
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"VERSION": {
"MAJOR": 0,
"MINOR": 19,
"PATCH": 1
"PATCH": 2
},
"KSP_VERSION": {
"MAJOR": 1,
Expand Down
11 changes: 11 additions & 0 deletions doc/source/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------------

Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/kOS.Safe.Test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 2 additions & 2 deletions src/kOS.Safe/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 2 additions & 2 deletions src/kOS/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

0 comments on commit be2e3f8

Please sign in to comment.