Skip to content

Commit fdfc736

Browse files
committed
chore: update tooth.json
1 parent 6792c29 commit fdfc736

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.4.1] - 2024-02-25
9+
10+
### Fixed
11+
12+
- Fix getLastDeathPos [#45]
13+
- Fix Player::talkAs [#47]
14+
- Fix Player::setBossBar [#49]
15+
816
## [0.4.0] - 2024-02-24
917

1018
### Changed
@@ -94,7 +102,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
94102
[#43]: https://github.com/LiteLDev/LegacyScriptEngine/issues/43
95103
[#44]: https://github.com/LiteLDev/LegacyScriptEngine/issues/44
96104
[#45]: https://github.com/LiteLDev/LegacyScriptEngine/issues/45
105+
[#47]: https://github.com/LiteLDev/LegacyScriptEngine/issues/47
106+
[#49]: https://github.com/LiteLDev/LegacyScriptEngine/issues/49
97107

108+
[0.4.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.4.0...v0.4.1
98109
[0.4.0]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.2...v0.4.0
99110
[0.3.2]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.1...v0.3.2
100111
[0.3.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.0...v0.3.1

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.4.0",
7+
"version": "0.4.1",
88
"dependencies": [
99
{
1010
"name": "LegacyMoney"

src/legacy/api/PlayerAPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3035,7 +3035,7 @@ Local<Value> PlayerClass::getBlockFromViewVector(const Arguments& args) {
30353035
}
30363036
Block const& bl = player->getDimensionBlockSource().getBlock(bp);
30373037
if (bl.isEmpty()) return Local<Value>();
3038-
return BlockClass::newBlock(std::move(&bl), &bp, player->getDimensionId().id);
3038+
return BlockClass::newBlock(std::move(&bl), std::move(&bp), &player->getDimensionBlockSource());
30393039
}
30403040
CATCH("Fail in getBlockFromViewVector!");
30413041
}

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.4.0",
4+
"version": "0.4.1",
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.4.0",
16-
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.4.0"
15+
"gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.4.1",
16+
"gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.4.1"
1717
}
1818
}

tooth.template.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-${engine}",
4-
"version": "0.4.0",
4+
"version": "0.4.1",
55
"info": {
66
"name": "LegacyScriptEngine with ${engine} backend",
77
"description": "A plugin engine for running LLSE plugins on LeviLamina",

0 commit comments

Comments
 (0)