Skip to content

Commit 076c81b

Browse files
committed
chore: update CHANGELOG.md
1 parent d3213bd commit 076c81b

File tree

3 files changed

+39
-5
lines changed

3 files changed

+39
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.12.1] - 2025-07-13
11+
12+
### Added
13+
14+
- Implemented the internal support for event cancellation [#285] @xiaoqch
15+
- Added file version info @xiaoqch
16+
17+
### Changed
18+
19+
- Refactored npm command, revert event commit @xiaoqch
20+
21+
### Fixed
22+
23+
- Fixed entity.setMaxHealth [#291] @xiaoqch
24+
- Fixed onSetArmor, onEffectAdded and onEffectRemoved [#299] @xiaoqch
25+
- Fixed npm command @xiaoqch
26+
- Fixed unload crash [#300] @xiaoqch
27+
- Disabled input in console npm command @xiaoqch
28+
- Fixed old nodejs addon load error [#9] @xiaoqch
29+
- Ensured microtasks are executed automatically [#10] @xiaoqch
30+
- Fixed ll.onUnload [#303] @xiaoqch
31+
- Fixed onServerStarted event for nodejs engine @xiaoqch
32+
- Ensured mods are unloaded when the server stops [#303] @xiaoqch
33+
- Added missing enter scope on mods unload @xiaoqch
34+
- Fixed ll.isRelease @xiaoqch
35+
1036
## [0.12.0] - 2025-06-12
1137

1238
### Added
@@ -858,6 +884,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
858884

859885
- First release.
860886

887+
[#9]: https://github.com/LiteLDev/LegacyScriptEngine/issues/9
888+
[#10]: https://github.com/LiteLDev/LegacyScriptEngine/issues/10
861889
[#31]: https://github.com/LiteLDev/LegacyScriptEngine/issues/31
862890
[#35]: https://github.com/LiteLDev/LegacyScriptEngine/issues/35
863891
[#37]: https://github.com/LiteLDev/LegacyScriptEngine/issues/37
@@ -944,8 +972,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
944972
[#273]: https://github.com/LiteLDev/LegacyScriptEngine/issues/273
945973
[#277]: https://github.com/LiteLDev/LegacyScriptEngine/issues/277
946974
[#278]: https://github.com/LiteLDev/LegacyScriptEngine/issues/278
947-
948-
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.12.0...HEAD
975+
[#285]: https://github.com/LiteLDev/LegacyScriptEngine/issues/285
976+
[#291]: https://github.com/LiteLDev/LegacyScriptEngine/issues/291
977+
[#299]: https://github.com/LiteLDev/LegacyScriptEngine/issues/299
978+
[#300]: https://github.com/LiteLDev/LegacyScriptEngine/issues/300
979+
[#303]: https://github.com/LiteLDev/LegacyScriptEngine/issues/303
980+
981+
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.12.1...HEAD
982+
[0.12.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.12.0...v0.12.1
949983
[0.12.0]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.11.3...v0.12.0
950984
[0.11.3]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.11.2...v0.11.3
951985
[0.11.2]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.11.1...v0.11.2

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.12.0",
5+
"version": "0.12.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 018f6f96f93781b229c899923d9d7569f3424686", {configs = {target_type = "server"}})
6+
add_requires("levilamina 1.3.4", {configs = {target_type = "server"}})
77
else
8-
add_requires("levilamina 018f6f96f93781b229c899923d9d7569f3424686", {configs = {target_type = "client"}})
8+
add_requires("levilamina 1.3.4", {configs = {target_type = "client"}})
99
end
1010

1111
add_requires("levibuildscript")

0 commit comments

Comments
 (0)