Skip to content

Commit

Permalink
chore: update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Sep 4, 2024
1 parent a4d45ad commit 937ea20
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 10 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.20] - 2024-08-04

### Fixed

- Fix setGameMode

## [0.8.19] - 2024-08-23

### Changed
Expand Down Expand Up @@ -590,7 +596,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#157]: https://github.com/LiteLDev/LegacyScriptEngine/issues/157
[#160]: https://github.com/LiteLDev/LegacyScriptEngine/issues/160

[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.8.19...HEAD
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.8.20...HEAD
[0.8.20]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.8.19...v0.8.20
[0.8.19]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.8.18...v0.8.19
[0.8.18]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.8.17...v0.8.18
[0.8.17]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.8.16...v0.8.17
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "native",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
"author": "LiteLDev",
"version": "0.8.19",
"version": "0.8.20",
"dependencies": [
{
"name": "LegacyMoney"
Expand Down
2 changes: 1 addition & 1 deletion src/legacy/api/PlayerAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@ Local<Value> PlayerClass::setGameMode(const Arguments& args) {

bool res = false;
int newMode = args[0].asNumber().toInt32();
if ((newMode >= 0 && newMode <= 3) || (newMode >= 5 && newMode <= 6)) {
if ((newMode >= 0 && newMode <= 2) || (newMode >= 5 && newMode <= 6)) {
player->setPlayerGameType((GameType)newMode);
res = true;
}
Expand Down
6 changes: 3 additions & 3 deletions tooth.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "github.com/LiteLDev/LegacyScriptEngine",
"version": "0.8.19",
"version": "0.8.20",
"info": {
"name": "LegacyScriptEngine",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand All @@ -12,7 +12,7 @@
]
},
"dependencies": {
"gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.8.19",
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.8.19"
"gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.8.20",
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.8.20"
}
}
2 changes: 1 addition & 1 deletion tooth.lua.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-lua",
"version": "0.8.19",
"version": "0.8.20",
"info": {
"name": "LegacyScriptEngine with Lua backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down
2 changes: 1 addition & 1 deletion tooth.nodejs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-nodejs",
"version": "0.8.19",
"version": "0.8.20",
"info": {
"name": "LegacyScriptEngine with NodeJs backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down
2 changes: 1 addition & 1 deletion tooth.python.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-python",
"version": "0.8.19",
"version": "0.8.20",
"info": {
"name": "LegacyScriptEngine with Python backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down
2 changes: 1 addition & 1 deletion tooth.quickjs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs",
"version": "0.8.19",
"version": "0.8.20",
"info": {
"name": "LegacyScriptEngine with QuickJs backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down

0 comments on commit 937ea20

Please sign in to comment.