Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
kraifpatrik committed Jun 17, 2022
1 parent 7b71782 commit 30aa31b
Show file tree
Hide file tree
Showing 16 changed files with 18 additions and 14 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/amazonfire/options_amazonfire.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/android/options_android.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/html5/options_html5.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/ios/options_ios.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/linux/options_linux.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/mac/options_mac.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/operagx/options_operagx.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/tvos/options_tvos.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/windows/options_windows.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/windowsuap/options_windowsuap.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/scripts/BBMOD_Animation/BBMOD_Animation.gml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function BBMOD_Animation(_file=undefined, _sha1=undefined)
if (_hasMinorVersion)
{
VersionMinor = buffer_read(_buffer, buffer_u8);
if (VersionMinor != BBMOD_VERSION_MINOR)
if (VersionMinor > BBMOD_VERSION_MINOR)
{
throw new BBMOD_Exception(
"Invalid BBANIM minor version " + string(VersionMinor) + "!");
Expand Down
2 changes: 2 additions & 0 deletions docs_src/Changelog/Changelog3.6.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Changelog 3.6.2
This release is a hotfix of loading of BBMOD and BBANIM files with a minor version lesser than the current one is.
1 change: 1 addition & 0 deletions docs_src/Changelog/Changelog_.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
In this section you can find changelogs for all releases of BBMOD since 3.0.0.

## Contents
* [3.6.2](./Changelog3.6.2.html)
* [3.6.1](./Changelog3.6.1.html)
* [3.6.0](./Changelog3.6.0.html)
* [3.5.1](./Changelog3.5.1.html)
Expand Down
2 changes: 1 addition & 1 deletion docs_src/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BBMOD
Welcome to the official documentation of BBMOD 3.6.1!
Welcome to the official documentation of BBMOD 3.6.2!

BBMOD is an advanced 3D rendering solution for GameMaker. It consists of a
custom model and animation file formats (`*.bbmod`, `*.bbanim`), a model
Expand Down
3 changes: 2 additions & 1 deletion gmdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"title": "BBMOD Docs",
"author": "BlueBurn",
"prefix": ["bbmod", "__bbmod"],
"version": "3.6.1",
"version": "3.6.2",
"analytics": "",
"api": {
"rating": "/bbmod/page_rating.php"
Expand All @@ -15,6 +15,7 @@
"Changelog": {
"file": "Changelog/Changelog_.md",
"pages": {
"3.6.2": "Changelog/Changelog3.6.2.md",
"3.6.1": "Changelog/Changelog3.6.1.md",
"3.6.0": "Changelog/Changelog3.6.0.md",
"3.5.1": "Changelog/Changelog3.5.1.md",
Expand Down

0 comments on commit 30aa31b

Please sign in to comment.