Skip to content

Commit

Permalink
neoSphere 5.9.3
Browse files Browse the repository at this point in the history
Fixes a bug in the implementation of `Sample#play()`. The fix was done
months ago but I never made a release with it. Maybe someday I'll
actually pick up regular development of neoSphere again...
  • Loading branch information
fatcerberus committed May 30, 2024
1 parent 35dd73d commit 318fdc3
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
neoSphere Changelog
===================

v5.9.3 - TBD
------------
v5.9.3 - May 30, 2024
---------------------

* Fixes a bug where passing an `options` object to `Sample#play()` doesn't work
properly and may throw an exception.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.9.2+
5.9.3
2 changes: 1 addition & 1 deletion manpages/cell.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH CELL 1 "xxxx-xx-xx" "neoSphere 5.9.2+" "Sphere: the JavaScript game platform"
.TH CELL 1 "2024-05-30" "neoSphere 5.9.3" "Sphere: the JavaScript game platform"
.SH NAME
cell \- scripted build tool for Sphere game engine games
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion manpages/neosphere.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH NEOSPHERE 1 "xxxx-xx-xx" "neoSphere 5.9.2+" "Sphere: the JavaScript game platform"
.TH NEOSPHERE 1 "2024-05-30" "neoSphere 5.9.3" "Sphere: the JavaScript game platform"
.SH NAME
neosphere \- lightweight JavaScript-powered game engine
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion manpages/spherun.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH SPHERUN 1 "xxxx-xx-xx" "neoSphere 5.9.2+" "Sphere: the JavaScript game platform"
.TH SPHERUN 1 "2024-05-30" "neoSphere 5.9.3" "Sphere: the JavaScript game platform"
.SH NAME
spherun \- run a Sphere game in a dev-friendly environment
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion manpages/ssj.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH SSJ 1 "xxxx-xx-xx" "neoSphere 5.9.2+" "Sphere: the JavaScript game platform"
.TH SSJ 1 "2024-05-30" "neoSphere 5.9.3" "Sphere: the JavaScript game platform"
.SH NAME
ssj - the JavaScript debugger for neoSphere
.SH SYNOPSIS
Expand Down
Binary file modified msvs/cell.rc
Binary file not shown.
Binary file modified msvs/neosphere.rc
Binary file not shown.
Binary file modified msvs/ssj.rc
Binary file not shown.
4 changes: 2 additions & 2 deletions setup/neoSphereSetup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
; configurations.
#define AppName "neoSphere"
#define AppPublisher "Fat Cerberus"
#define AppVersion3 "5.9.2+"
#define AppVersion4 "0.0.0.0"
#define AppVersion3 "5.9.3"
#define AppVersion4 "5.9.3.3471"

[Setup]
OutputBaseFilename=neoSphereSetup-{#AppVersion3}-msw
Expand Down
2 changes: 1 addition & 1 deletion src/neosphere/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ main(int argc, char* argv[])
dialog_name = lstr_newf("%s - Select a Sphere game to launch", SPHERE_ENGINE_NAME);
file_dialog = al_create_native_file_dialog(path_cstr(home_path()),
lstr_cstr(dialog_name),
"game.sgm;game.json;*.spk", ALLEGRO_FILECHOOSER_FILE_MUST_EXIST);
"*.sgm;*.json;*.spk", ALLEGRO_FILECHOOSER_FILE_MUST_EXIST);
al_show_native_file_dialog(NULL, file_dialog);
lstr_free(dialog_name);
if (al_get_native_file_dialog_count(file_dialog) > 0) {
Expand Down
2 changes: 1 addition & 1 deletion src/shared/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#define SPHERE_COMPILER_NAME "Cell"
#define SPHERE_DEBUGGER_NAME "SSj"

#define SPHERE_VERSION "5.9.2+"
#define SPHERE_VERSION "5.9.3"

#define SPHERE_API_VERSION 2
#define SPHERE_API_LEVEL 4
Expand Down

0 comments on commit 318fdc3

Please sign in to comment.