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 Jan 15, 2025
1 parent cd2c348 commit c5ceb09
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0-rc.5] - 2025-01-15

### Fixed

- Add missing condition for onContainerChange
- Fix onFarmLandDecay cancellation
- Fix processConsolePipCmd [#208]
- Fix NodeJs engine disabling

## [0.9.0-rc.4] - 2025-01-13

### Changed
Expand Down Expand Up @@ -693,7 +702,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[#207]: https://github.com/LiteLDev/LegacyScriptEngine/issues/207

[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.9.0-rc.4...HEAD
[#208]: https://github.com/LiteLDev/LegacyScriptEngine/issues/208

[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.9.0-rc.5...HEAD

[0.9.0-rc.5]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.9.0-rc.4...v0.9.0-rc.5

[0.9.0-rc.4]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.9.0-rc.3...v0.9.0-rc.4

Expand Down
7 changes: 1 addition & 6 deletions src/lse/Entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,7 @@ bool LegacyScriptEngine::load() {
}
}

bool LegacyScriptEngine::disable() {
#ifdef LEGACY_SCRIPT_ENGINE_BACKEND_NODEJS
NodeJsHelper::shutdownNodeJs();
#endif
return true;
}
bool LegacyScriptEngine::disable() { return true; }

Config const& LegacyScriptEngine::getConfig() { return config; }

Expand Down
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.9.0-rc.4",
"version": "0.9.0-rc.5",
"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.9.0-rc.4",
"version": "0.9.0-rc.5",
"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.9.0-rc.4",
"version": "0.9.0-rc.5",
"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.9.0-rc.4",
"version": "0.9.0-rc.5",
"info": {
"name": "LegacyScriptEngine with QuickJs backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down

0 comments on commit c5ceb09

Please sign in to comment.