Skip to content

Commit

Permalink
chore: update tooth.json & CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed May 2, 2024
1 parent 957ccdf commit 2121eec
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 12 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.5] - 2024-05-02

### Added

- Add missing hopper events [#88]

### Changed

- Replace SimulatedPlayer::create

### Fixed

- Fix unexpected situation of onMobDie
- Fix some stupid exception process

## [0.7.4] - 2024-05-02

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

- Fix truePos pre calculation
- Fix onProjectileHitBlock & onProjectileHitEntity #108
- Fix mc.explode #111
- Fix onProjectileHitBlock & onProjectileHitEntity [#108]
- Fix mc.explode [#111]

## [0.7.3] - 2024-05-01

Expand Down Expand Up @@ -333,6 +348,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#81]: https://github.com/LiteLDev/LegacyScriptEngine/issues/81
[#82]: https://github.com/LiteLDev/LegacyScriptEngine/issues/82
[#87]: https://github.com/LiteLDev/LegacyScriptEngine/issues/87
[#88]: https://github.com/LiteLDev/LegacyScriptEngine/issues/88
[#91]: https://github.com/LiteLDev/LegacyScriptEngine/issues/91
[#92]: https://github.com/LiteLDev/LegacyScriptEngine/issues/92
[#94]: https://github.com/LiteLDev/LegacyScriptEngine/issues/94
Expand All @@ -343,9 +359,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#101]: https://github.com/LiteLDev/LegacyScriptEngine/issues/101
[#102]: https://github.com/LiteLDev/LegacyScriptEngine/issues/102
[#104]: https://github.com/LiteLDev/LegacyScriptEngine/issues/104
[#108]: https://github.com/LiteLDev/LegacyScriptEngine/issues/108
[#110]: https://github.com/LiteLDev/LegacyScriptEngine/issues/110
[#111]: https://github.com/LiteLDev/LegacyScriptEngine/issues/111
[#115]: https://github.com/LiteLDev/LegacyScriptEngine/issues/115

[0.7.5]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.7.4...v0.7.5
[0.7.4]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.7.3...v0.7.4
[0.7.3]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.7.2...v0.7.3
[0.7.2]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.7.1...v0.7.2
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "native",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
"author": "LiteLDev",
"version": "0.7.4",
"version": "0.7.5",
"dependencies": [
{
"name": "LegacyMoney"
Expand Down
4 changes: 2 additions & 2 deletions src/legacy/events/EventHooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@ LL_TYPE_INSTANCE_HOOK(
EVENT_TYPES::onHopperSearchItem,
false,
FloatPos::newPos(hopperPos, region.getDimensionId()),
Boolean::newBoolean(this->mTransferedFromChestMinecart),
Boolean::newBoolean(this->mIsEntity),
ItemClass::newItem(&item, false)
);
}
Expand All @@ -1107,7 +1107,7 @@ LL_TYPE_INSTANCE_HOOK(
EVENT_TYPES::onHopperPushOut,
false,
FloatPos::newPos(hopperPos, region.getDimensionId()),
Boolean::newBoolean(this->mTransferedFromChestMinecart),
Boolean::newBoolean(this->mIsEntity),
ItemClass::newItem(&item, false)
);
}
Expand Down
6 changes: 3 additions & 3 deletions tooth.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "github.com/LiteLDev/LegacyScriptEngine",
"version": "0.7.4",
"version": "0.7.5",
"info": {
"name": "LegacyScriptEngine",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand All @@ -12,7 +12,7 @@
]
},
"dependencies": {
"gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.7.4",
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.7.4"
"gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.7.5",
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.7.5"
}
}
2 changes: 1 addition & 1 deletion tooth.lua.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-lua",
"version": "0.7.4",
"version": "0.7.5",
"info": {
"name": "LegacyScriptEngine with Lua backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down
2 changes: 1 addition & 1 deletion tooth.nodejs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-nodejs",
"version": "0.7.4",
"version": "0.7.5",
"info": {
"name": "LegacyScriptEngine with NodeJs backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down
2 changes: 1 addition & 1 deletion tooth.python.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-python",
"version": "0.7.4",
"version": "0.7.5",
"info": {
"name": "LegacyScriptEngine with Python backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down
2 changes: 1 addition & 1 deletion tooth.quickjs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs",
"version": "0.7.4",
"version": "0.7.5",
"info": {
"name": "LegacyScriptEngine with QuickJs backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down

0 comments on commit 2121eec

Please sign in to comment.