Skip to content

Commit 7b3beee

Browse files
committed
chore: update LeviLamina to 1.2.0
1 parent ec3126d commit 7b3beee

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

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+
1027
## [0.11.0] - 2025-05-20
1128

1229
### Changed
@@ -877,8 +894,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
877894
[#264]: https://github.com/LiteLDev/LegacyScriptEngine/issues/264
878895
[#269]: https://github.com/LiteLDev/LegacyScriptEngine/issues/269
879896
[#273]: https://github.com/LiteLDev/LegacyScriptEngine/issues/273
897+
[#277]: https://github.com/LiteLDev/LegacyScriptEngine/issues/277
880898

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
882901
[0.11.0]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.10.8...v0.11.0
883902
[0.10.8]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.10.7...v0.10.8
884903
[0.10.7]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.10.6...v0.10.7

tooth.json

Lines changed: 1 addition & 1 deletion
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.11.0",
5+
"version": "0.11.1",
66
"info": {
77
"name": "LegacyScriptEngine",
88
"description": "A plugin engine for running LLSE plugins on LeviLamina",

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 a22a1e5ac62a1fdf9470e9711660d1cac36a0c2f", {configs = {target_type = "server"}})
6+
add_requires("levilamina 1.2.0", {configs = {target_type = "server"}})
77
else
8-
add_requires("levilamina a22a1e5ac62a1fdf9470e9711660d1cac36a0c2f", {configs = {target_type = "client"}})
8+
add_requires("levilamina 1.2.0", {configs = {target_type = "client"}})
99
end
1010

1111
add_requires("levibuildscript")

0 commit comments

Comments
 (0)