Skip to content

Commit

Permalink
chore: update tooth.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Feb 25, 2024
1 parent 6792c29 commit fdfc736
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.4.1] - 2024-02-25

### Fixed

- Fix getLastDeathPos [#45]
- Fix Player::talkAs [#47]
- Fix Player::setBossBar [#49]

## [0.4.0] - 2024-02-24

### Changed
Expand Down Expand Up @@ -94,7 +102,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#43]: https://github.com/LiteLDev/LegacyScriptEngine/issues/43
[#44]: https://github.com/LiteLDev/LegacyScriptEngine/issues/44
[#45]: https://github.com/LiteLDev/LegacyScriptEngine/issues/45
[#47]: https://github.com/LiteLDev/LegacyScriptEngine/issues/47
[#49]: https://github.com/LiteLDev/LegacyScriptEngine/issues/49

[0.4.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.2...v0.4.0
[0.3.2]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.0...v0.3.1
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.4.0",
"version": "0.4.1",
"dependencies": [
{
"name": "LegacyMoney"
Expand Down
2 changes: 1 addition & 1 deletion src/legacy/api/PlayerAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3035,7 +3035,7 @@ Local<Value> PlayerClass::getBlockFromViewVector(const Arguments& args) {
}
Block const& bl = player->getDimensionBlockSource().getBlock(bp);
if (bl.isEmpty()) return Local<Value>();
return BlockClass::newBlock(std::move(&bl), &bp, player->getDimensionId().id);
return BlockClass::newBlock(std::move(&bl), std::move(&bp), &player->getDimensionBlockSource());
}
CATCH("Fail in getBlockFromViewVector!");
}
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.4.0",
"version": "0.4.1",
"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.4.0",
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.4.0"
"gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.4.1",
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.4.1"
}
}
2 changes: 1 addition & 1 deletion tooth.template.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-${engine}",
"version": "0.4.0",
"version": "0.4.1",
"info": {
"name": "LegacyScriptEngine with ${engine} backend",
"description": "A plugin engine for running LLSE plugins on LeviLamina",
Expand Down

0 comments on commit fdfc736

Please sign in to comment.