diff --git a/CHANGELOG.md b/CHANGELOG.md index 630424d18..09d95147a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,6 @@ v5.4.2 - February 20, 2020 nonsensical stack trace later if the caller accidentally passes `null` or `undefined`. - v5.4.1 - January 5, 2020 ------------------------ diff --git a/README.md b/README.md index 91453d576..39fa67219 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Download ======== The latest stable miniSphere release at the time of this writing is -**miniSphere 5.4.1**, released on Sunday, January 5, 2020. miniSphere +**miniSphere 5.4.2**, released on Thursday, Feburary 20, 2020. miniSphere binaries are provided through GitHub, and the latest version is always available for download here: diff --git a/VERSION b/VERSION index bf5606571..f43058770 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -X.X.X \ No newline at end of file +5.4.2 \ No newline at end of file diff --git a/manpages/cell.1 b/manpages/cell.1 index b1d0c9e1a..d9b5825ec 100644 --- a/manpages/cell.1 +++ b/manpages/cell.1 @@ -1,4 +1,4 @@ -.TH CELL 1 "xxxx-xx-xx" "miniSphere X.X.X" "Sphere Game Development Kit" +.TH CELL 1 "2020-02-20" "miniSphere 5.4.2" "Sphere Game Development Kit" .SH NAME cell \- scripted build tool for Sphere game engine games .SH SYNOPSIS diff --git a/manpages/minisphere.1 b/manpages/minisphere.1 index 23d53131c..c2b0a9551 100644 --- a/manpages/minisphere.1 +++ b/manpages/minisphere.1 @@ -1,4 +1,4 @@ -.TH MINISPHERE 1 "xxxx-xx-xx" "miniSphere X.X.X" "miniSphere JS Game Engine" +.TH MINISPHERE 1 "2020-02-20" "miniSphere 5.4.2" "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 0fa8b77f6..78326bf5f 100644 --- a/manpages/spherun.1 +++ b/manpages/spherun.1 @@ -1,4 +1,4 @@ -.TH SPHERUN 1 "xxxx-xx-xx" "miniSphere X.X.X" "Sphere Game Development Kit" +.TH SPHERUN 1 "2020-02-20" "miniSphere 5.4.2" "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 44f25f5f5..27c3af809 100644 --- a/manpages/ssj.1 +++ b/manpages/ssj.1 @@ -1,4 +1,4 @@ -.TH SSJ 1 "xxxx-xx-xx" "miniSphere X.X.X" "Sphere Game Development Kit" +.TH SSJ 1 "2020-02-20" "miniSphere 5.4.2" "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 f669daed5..cacc7235f 100644 Binary files a/msvs/cell.rc and b/msvs/cell.rc differ diff --git a/msvs/minisphere.rc b/msvs/minisphere.rc index 7ed3b57d8..85388fbe5 100644 Binary files a/msvs/minisphere.rc and b/msvs/minisphere.rc differ diff --git a/msvs/ssj.rc b/msvs/ssj.rc index 07a7b8367..f35efc41f 100644 Binary files a/msvs/ssj.rc and b/msvs/ssj.rc differ diff --git a/setup/minisphere.iss b/setup/minisphere.iss index 7a5d12f19..4478d29e8 100644 --- a/setup/minisphere.iss +++ b/setup/minisphere.iss @@ -33,8 +33,8 @@ ; solution configurations. #define AppName "miniSphere" #define AppPublisher "Fat Cerberus" -#define AppVersion3 "X.X.X" -#define AppVersion4 "0.0.0.0" +#define AppVersion3 "5.4.2" +#define AppVersion4 "5.4.2.3275" ; to create a bundle with Sphere Studio, copy the Sphere Studio binaries ; into msw/ide/ before building the installer. diff --git a/src/plugin/PluginMain.cs b/src/plugin/PluginMain.cs index 0b760af18..cfa50dfc4 100644 --- a/src/plugin/PluginMain.cs +++ b/src/plugin/PluginMain.cs @@ -16,7 +16,7 @@ public class PluginMain : IPluginMain { public string Name { get; } = "miniSphere Support"; public string Description { get; } = "Supports miniSphere and the Sphere v2 toolchain."; - public string Version { get; } = "X.X.X"; + public string Version { get; } = "5.4.2"; 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 31c053d63..429306791 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("0.0.0.0")] -[assembly: AssemblyFileVersion("0.0.0.0")] +[assembly: AssemblyVersion("5.4.2.3275")] +[assembly: AssemblyFileVersion("5.4.2.3275")] diff --git a/src/shared/version.h b/src/shared/version.h index c143786e4..f7713221c 100644 --- a/src/shared/version.h +++ b/src/shared/version.h @@ -37,7 +37,7 @@ #define SPHERE_COMPILER_NAME "Cell" #define SPHERE_DEBUGGER_NAME "SSj" -#define SPHERE_VERSION "X.X.X" +#define SPHERE_VERSION "5.4.2" #define SPHERE_API_VERSION 2 #define SPHERE_API_LEVEL 3