File tree Expand file tree Collapse file tree 3 files changed +23
-4
lines changed Expand file tree Collapse file tree 3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.11.1] - 2025-05-31
11
+
12
+ ### Added
13
+
14
+ - Added ll.pluginsRoot and ll.getCurrentPluginInfo apis @xiaoqch
15
+
16
+ ### Changed
17
+
18
+ - Updated LeviLamina to 1.2.0
19
+ - Updated ScriptX to fix v8 backend issue [ #277 ] @ShrBox
20
+ - Refactored onAte event (#279 ) @killcerr
21
+
22
+ ### Fixed
23
+
24
+ - Fixed compatibility with custom mods directory @xiaoqch
25
+ - Fixed ll.getPluginInfo fails to get current plugin info during loading @xiaoqch
26
+
10
27
## [ 0.11.0] - 2025-05-20
11
28
12
29
### Changed
@@ -877,8 +894,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
877
894
[ #264 ] : https://github.com/LiteLDev/LegacyScriptEngine/issues/264
878
895
[ #269 ] : https://github.com/LiteLDev/LegacyScriptEngine/issues/269
879
896
[ #273 ] : https://github.com/LiteLDev/LegacyScriptEngine/issues/273
897
+ [ #277 ] : https://github.com/LiteLDev/LegacyScriptEngine/issues/277
880
898
881
- [ Unreleased ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.11.0...HEAD
899
+ [ Unreleased ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.11.1...HEAD
900
+ [ 0.11.1 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.11.0...v0.11.1
882
901
[ 0.11.0 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.10.8...v0.11.0
883
902
[ 0.10.8 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.10.7...v0.10.8
884
903
[ 0.10.7 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.10.6...v0.10.7
Original file line number Diff line number Diff line change 2
2
"format_version" : 3 ,
3
3
"format_uuid" : " 289f771f-2c9a-4d73-9f3f-8492495a924d" ,
4
4
"tooth" : " github.com/LiteLDev/LegacyScriptEngine" ,
5
- "version" : " 0.11.0 " ,
5
+ "version" : " 0.11.1 " ,
6
6
"info" : {
7
7
"name" : " LegacyScriptEngine" ,
8
8
"description" : " A plugin engine for running LLSE plugins on LeviLamina" ,
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ add_rules("mode.debug", "mode.release")
3
3
add_repositories (" levimc-repo https://github.com/LiteLDev/xmake-repo.git" )
4
4
5
5
if is_config (" target_type" , " server" ) then
6
- add_requires (" levilamina a22a1e5ac62a1fdf9470e9711660d1cac36a0c2f " , {configs = {target_type = " server" }})
6
+ add_requires (" levilamina 1.2.0 " , {configs = {target_type = " server" }})
7
7
else
8
- add_requires (" levilamina a22a1e5ac62a1fdf9470e9711660d1cac36a0c2f " , {configs = {target_type = " client" }})
8
+ add_requires (" levilamina 1.2.0 " , {configs = {target_type = " client" }})
9
9
end
10
10
11
11
add_requires (" levibuildscript" )
You can’t perform that action at this time.
0 commit comments