Skip to content

Commit e7b1e19

Browse files
committed
fix: fix node engine installation
1 parent 68ae503 commit e7b1e19

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.13.2] - 2025-08-07
11+
12+
### Fixed
13+
14+
- Fixed Node engine installation issue
15+
1016
## [0.13.1] - 2025-07-18
1117

1218
### Fixed
@@ -997,7 +1003,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9971003
[#309]: https://github.com/LiteLDev/LegacyScriptEngine/issues/309
9981004
[#310]: https://github.com/LiteLDev/LegacyScriptEngine/issues/310
9991005

1000-
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.13.1...HEAD
1006+
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.13.2...HEAD
1007+
[0.13.2]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.13.1...v0.13.2
10011008
[0.13.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.13.0...v0.13.1
10021009
[0.13.0]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.12.1...v0.13.0
10031010
[0.12.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.12.0...v0.12.1

tooth.json

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"format_version": 3,
33
"format_uuid": "289f771f-2c9a-4d73-9f3f-8492495a924d",
44
"tooth": "github.com/LiteLDev/LegacyScriptEngine",
5-
"version": "0.13.1",
5+
"version": "0.13.2",
66
"info": {
77
"name": "LegacyScriptEngine",
88
"description": "A plugin engine for running LLSE plugins on LeviLamina",
@@ -45,25 +45,19 @@
4545
]
4646
},
4747
{
48-
"type": "uncompressed",
48+
"type": "zip",
4949
"urls": [
5050
"https://github.com/LiteLDev/node/releases/download/v22.12.0/node-prebuilt.zip"
5151
],
5252
"placements": [
5353
{
54-
"type": "file",
54+
"type": "dir",
5555
"src": "",
56-
"dest": "plugins/legacy-script-engine-nodejs/node.zip"
56+
"dest": "plugins/legacy-script-engine-nodejs/"
5757
}
5858
]
5959
}
60-
],
61-
"scripts": {
62-
"install": [
63-
"7za.exe x -y plugins/legacy-script-engine-nodejs/node.zip -o./plugins/legacy-script-engine-nodejs/",
64-
"del plugins\\legacy-script-engine-nodejs\\node.zip"
65-
]
66-
}
60+
]
6761
},
6862
{
6963
"label": "quickjs",

xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ add_rules("mode.debug", "mode.release")
33
add_repositories("levimc-repo https://github.com/LiteLDev/xmake-repo.git")
44

55
if is_config("target_type", "server") then
6-
add_requires("levilamina 1.4.0", {configs = {target_type = "server"}})
6+
add_requires("levilamina 1.4.3", {configs = {target_type = "server"}})
77
else
8-
add_requires("levilamina 1.4.0", {configs = {target_type = "client"}})
8+
add_requires("levilamina 1.4.3", {configs = {target_type = "client"}})
99
end
1010

1111
add_requires("levibuildscript")

0 commit comments

Comments
 (0)