Skip to content

Commit 2121eec

Browse files
committed
chore: update tooth.json & CHANGELOG.md
1 parent 957ccdf commit 2121eec

File tree

8 files changed

+31
-12
lines changed

8 files changed

+31
-12
lines changed

CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.7.5] - 2024-05-02
9+
10+
### Added
11+
12+
- Add missing hopper events [#88]
13+
14+
### Changed
15+
16+
- Replace SimulatedPlayer::create
17+
18+
### Fixed
19+
20+
- Fix unexpected situation of onMobDie
21+
- Fix some stupid exception process
22+
823
## [0.7.4] - 2024-05-02
924

1025
### Changed
@@ -14,8 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1429
### Fixed
1530

1631
- Fix truePos pre calculation
17-
- Fix onProjectileHitBlock & onProjectileHitEntity #108
18-
- Fix mc.explode #111
32+
- Fix onProjectileHitBlock & onProjectileHitEntity [#108]
33+
- Fix mc.explode [#111]
1934

2035
## [0.7.3] - 2024-05-01
2136

@@ -333,6 +348,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
333348
[#81]: https://github.com/LiteLDev/LegacyScriptEngine/issues/81
334349
[#82]: https://github.com/LiteLDev/LegacyScriptEngine/issues/82
335350
[#87]: https://github.com/LiteLDev/LegacyScriptEngine/issues/87
351+
[#88]: https://github.com/LiteLDev/LegacyScriptEngine/issues/88
336352
[#91]: https://github.com/LiteLDev/LegacyScriptEngine/issues/91
337353
[#92]: https://github.com/LiteLDev/LegacyScriptEngine/issues/92
338354
[#94]: https://github.com/LiteLDev/LegacyScriptEngine/issues/94
@@ -343,9 +359,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
343359
[#101]: https://github.com/LiteLDev/LegacyScriptEngine/issues/101
344360
[#102]: https://github.com/LiteLDev/LegacyScriptEngine/issues/102
345361
[#104]: https://github.com/LiteLDev/LegacyScriptEngine/issues/104
362+
[#108]: https://github.com/LiteLDev/LegacyScriptEngine/issues/108
346363
[#110]: https://github.com/LiteLDev/LegacyScriptEngine/issues/110
364+
[#111]: https://github.com/LiteLDev/LegacyScriptEngine/issues/111
347365
[#115]: https://github.com/LiteLDev/LegacyScriptEngine/issues/115
348366

367+
[0.7.5]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.7.4...v0.7.5
349368
[0.7.4]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.7.3...v0.7.4
350369
[0.7.3]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.7.2...v0.7.3
351370
[0.7.2]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.7.1...v0.7.2

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "native",
55
"description": "A plugin engine for running LLSE plugins on LeviLamina",
66
"author": "LiteLDev",
7-
"version": "0.7.4",
7+
"version": "0.7.5",
88
"dependencies": [
99
{
1010
"name": "LegacyMoney"

src/legacy/events/EventHooks.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ LL_TYPE_INSTANCE_HOOK(
10951095
EVENT_TYPES::onHopperSearchItem,
10961096
false,
10971097
FloatPos::newPos(hopperPos, region.getDimensionId()),
1098-
Boolean::newBoolean(this->mTransferedFromChestMinecart),
1098+
Boolean::newBoolean(this->mIsEntity),
10991099
ItemClass::newItem(&item, false)
11001100
);
11011101
}
@@ -1107,7 +1107,7 @@ LL_TYPE_INSTANCE_HOOK(
11071107
EVENT_TYPES::onHopperPushOut,
11081108
false,
11091109
FloatPos::newPos(hopperPos, region.getDimensionId()),
1110-
Boolean::newBoolean(this->mTransferedFromChestMinecart),
1110+
Boolean::newBoolean(this->mIsEntity),
11111111
ItemClass::newItem(&item, false)
11121112
);
11131113
}

tooth.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"format_version": 2,
33
"tooth": "github.com/LiteLDev/LegacyScriptEngine",
4-
"version": "0.7.4",
4+
"version": "0.7.5",
55
"info": {
66
"name": "LegacyScriptEngine",
77
"description": "A plugin engine for running LLSE plugins on LeviLamina",
@@ -12,7 +12,7 @@
1212
]
1313
},
1414
"dependencies": {
15-
"gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.7.4",
16-
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.7.4"
15+
"gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.7.5",
16+
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.7.5"
1717
}
1818
}

tooth.lua.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"format_version": 2,
33
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-lua",
4-
"version": "0.7.4",
4+
"version": "0.7.5",
55
"info": {
66
"name": "LegacyScriptEngine with Lua backend",
77
"description": "A plugin engine for running LLSE plugins on LeviLamina",

tooth.nodejs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"format_version": 2,
33
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-nodejs",
4-
"version": "0.7.4",
4+
"version": "0.7.5",
55
"info": {
66
"name": "LegacyScriptEngine with NodeJs backend",
77
"description": "A plugin engine for running LLSE plugins on LeviLamina",

tooth.python.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"format_version": 2,
33
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-python",
4-
"version": "0.7.4",
4+
"version": "0.7.5",
55
"info": {
66
"name": "LegacyScriptEngine with Python backend",
77
"description": "A plugin engine for running LLSE plugins on LeviLamina",

tooth.quickjs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"format_version": 2,
33
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs",
4-
"version": "0.7.4",
4+
"version": "0.7.5",
55
"info": {
66
"name": "LegacyScriptEngine with QuickJs backend",
77
"description": "A plugin engine for running LLSE plugins on LeviLamina",

0 commit comments

Comments
 (0)