diff --git a/CHANGELOG.md b/CHANGELOG.md index b2fe41b1f..3253d1646 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ miniSphere Changelog ==================== -v4.8.6 - TBD ------------- +v4.8.6 - September 12, 2017 +--------------------------- * Fixes a bug where the backbuffer texture is freed prematurely, causing the engine to crash on shutdown. diff --git a/README.md b/README.md index b8cf7a72b..386afecfc 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ Download ======== The latest stable miniSphere release at the time of this writing is -**miniSphere 4.8.5**, released on Sunday, September 10, 2017. miniSphere +**miniSphere 4.8.6**, released on Tuesday, September 12, 2017. miniSphere binaries are provided through GitHub, and the latest version is always available for download here: diff --git a/VERSION b/VERSION index dc24a8960..c0f6eef22 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.8.5 \ No newline at end of file +4.8.6 \ No newline at end of file diff --git a/docs/cellscript-api.txt b/docs/cellscript-api.txt index 13da78160..bb4dcf3a9 100644 --- a/docs/cellscript-api.txt +++ b/docs/cellscript-api.txt @@ -75,7 +75,7 @@ Sphere.Game [non-replaceable] Sphere.Platform [read-only] A string specifying the name and version number of the compiler. For - example, "Cell 4.8.5". + example, "Cell 4.8.6". Sphere.Version [read-only] diff --git a/docs/sphere2-core-api.txt b/docs/sphere2-core-api.txt index 2026e3433..d043ac964 100644 --- a/docs/sphere2-core-api.txt +++ b/docs/sphere2-core-api.txt @@ -216,7 +216,7 @@ methods for managing execution. Sphere.Platform [read-only] A string specifying the name and version number of the engine. For - example, "miniSphere 4.8.5". + example, "miniSphere 4.8.6". Sphere.Version [read-only] Sphere.APILevel [read-only] diff --git a/manpages/cell.1 b/manpages/cell.1 index e9fcbdba1..25ee9cd49 100644 --- a/manpages/cell.1 +++ b/manpages/cell.1 @@ -1,4 +1,4 @@ -.TH CELL 1 "2017-09-10" "miniSphere-4.8.5" "Sphere Game Development Kit" +.TH CELL 1 "2017-09-12" "miniSphere-4.8.6" "Sphere Game Development Kit" .SH NAME cell \- Sphere v2 game compiler and packager .SH SYNOPSIS diff --git a/manpages/minisphere.1 b/manpages/minisphere.1 index 4758f1ef5..d53301261 100644 --- a/manpages/minisphere.1 +++ b/manpages/minisphere.1 @@ -1,4 +1,4 @@ -.TH MINISPHERE 1 "2017-09-10" "miniSphere-4.8.5" "miniSphere JS Game Engine" +.TH MINISPHERE 1 "2017-09-12" "miniSphere-4.8.6" "miniSphere JS Game Engine" .SH NAME minisphere \- lightweight JavaScript-powered game engine .SH SYNOPSIS diff --git a/manpages/spherun.1 b/manpages/spherun.1 index 7e41e2966..c47f0407a 100644 --- a/manpages/spherun.1 +++ b/manpages/spherun.1 @@ -1,4 +1,4 @@ -.TH SPHERUN 1 "2017-09-10" "miniSphere-4.8.5" "Sphere Game Development Kit" +.TH SPHERUN 1 "2017-09-12" "miniSphere-4.8.6" "Sphere Game Development Kit" .SH NAME spherun \- run a Sphere game in a dev-friendly environment .SH SYNOPSIS diff --git a/manpages/ssj.1 b/manpages/ssj.1 index 41d55c8d4..b9bae95f4 100644 --- a/manpages/ssj.1 +++ b/manpages/ssj.1 @@ -1,4 +1,4 @@ -.TH SSJ 1 "2017-09-10" "miniSphere-4.8.5" "Sphere Game Development Kit" +.TH SSJ 1 "2017-09-12" "miniSphere-4.8.6" "Sphere Game Development Kit" .SH NAME ssj \- the JavaScript debugger for miniSphere .SH SYNOPSIS diff --git a/msvs/cell.rc b/msvs/cell.rc index 7b900e9a1..8add84c85 100644 Binary files a/msvs/cell.rc and b/msvs/cell.rc differ diff --git a/msvs/minisphere.rc b/msvs/minisphere.rc index 12c20bf8e..2cad58062 100644 Binary files a/msvs/minisphere.rc and b/msvs/minisphere.rc differ diff --git a/msvs/ssj.rc b/msvs/ssj.rc index e2cf9bc5d..44e112051 100644 Binary files a/msvs/ssj.rc and b/msvs/ssj.rc differ diff --git a/setup/minisphere.iss b/setup/minisphere.iss index 6933165e4..fdf0b8e63 100644 --- a/setup/minisphere.iss +++ b/setup/minisphere.iss @@ -33,7 +33,7 @@ ; solution configurations. #define AppName "miniSphere" #define AppPublisher "Fat Cerberus" -#define AppVersion3 "4.8.5" +#define AppVersion3 "4.8.6" ; to create a bundle with Sphere Studio, copy the Sphere Studio binaries ; into msw/ide/ before building the installer. diff --git a/src/debian/changelog b/src/debian/changelog index 2de7aa632..f65f28d36 100644 --- a/src/debian/changelog +++ b/src/debian/changelog @@ -1,3 +1,14 @@ +minisphere (4.8.6) zesty; urgency=low + + * Fixes a bug where the backbuffer texture is freed prematurely, causing the + engine to crash on shutdown. + * Fixes a bug where miniSphere can crash or behave strangely if it's unable to + determine the desktop resolution on startup. + * Fixes a bug where miniSphere can crash after calling `ExecuteGame()` if the + engine fails to reinitialize. + + -- Bruce Pascoe Tue, 12 Sep 2017 00:00:00 -0500 + minisphere (4.8.5) zesty; urgency=low * Improves Sphere 1.x backward compatibility by aligning small maps to the diff --git a/src/plugin/PluginMain.cs b/src/plugin/PluginMain.cs index 2916aaaf5..9b74eb9b2 100644 --- a/src/plugin/PluginMain.cs +++ b/src/plugin/PluginMain.cs @@ -17,7 +17,7 @@ public class PluginMain : IPluginMain { public string Name { get; } = "miniSphere Support"; public string Description { get; } = "Provides support for the miniSphere toolchain."; - public string Version { get; } = "4.8.5"; + public string Version { get; } = "4.8.6"; public string Author { get; } = "Fat Cerberus"; internal PluginConf Conf { get; private set; } diff --git a/src/plugin/Properties/AssemblyInfo.cs b/src/plugin/Properties/AssemblyInfo.cs index 98757fffe..ec533680c 100644 --- a/src/plugin/Properties/AssemblyInfo.cs +++ b/src/plugin/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("4.8.5.2273")] -[assembly: AssemblyFileVersion("4.8.5.2273")] +[assembly: AssemblyVersion("4.8.6.2280")] +[assembly: AssemblyFileVersion("4.8.6.2280")] diff --git a/src/shared/version.h b/src/shared/version.h index 61cc05a27..8b80f96c5 100644 --- a/src/shared/version.h +++ b/src/shared/version.h @@ -6,6 +6,6 @@ #define DEBUGGER_NAME "SSj" #define PREPTOOL_NAME "Majin" -#define VERSION_NAME "4.8.5" +#define VERSION_NAME "4.8.6" #endif // MINISPHERE__VERSION_H__INCLUDED