File tree 5 files changed +17
-6
lines changed 5 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
16
## [ 0.4.0] - 2024-02-24
9
17
10
18
### Changed
@@ -94,7 +102,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
94
102
[ #43 ] : https://github.com/LiteLDev/LegacyScriptEngine/issues/43
95
103
[ #44 ] : https://github.com/LiteLDev/LegacyScriptEngine/issues/44
96
104
[ #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
97
107
108
+ [ 0.4.1 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.4.0...v0.4.1
98
109
[ 0.4.0 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.2...v0.4.0
99
110
[ 0.3.2 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.1...v0.3.2
100
111
[ 0.3.1 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.3.0...v0.3.1
Original file line number Diff line number Diff line change 4
4
"type" : " native" ,
5
5
"description" : " A plugin engine for running LLSE plugins on LeviLamina" ,
6
6
"author" : " LiteLDev" ,
7
- "version" : " 0.4.0 " ,
7
+ "version" : " 0.4.1 " ,
8
8
"dependencies" : [
9
9
{
10
10
"name" : " LegacyMoney"
Original file line number Diff line number Diff line change @@ -3035,7 +3035,7 @@ Local<Value> PlayerClass::getBlockFromViewVector(const Arguments& args) {
3035
3035
}
3036
3036
Block const & bl = player->getDimensionBlockSource ().getBlock (bp);
3037
3037
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 () );
3039
3039
}
3040
3040
CATCH (" Fail in getBlockFromViewVector!" );
3041
3041
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"format_version" : 2 ,
3
3
"tooth" : " github.com/LiteLDev/LegacyScriptEngine" ,
4
- "version" : " 0.4.0 " ,
4
+ "version" : " 0.4.1 " ,
5
5
"info" : {
6
6
"name" : " LegacyScriptEngine" ,
7
7
"description" : " A plugin engine for running LLSE plugins on LeviLamina" ,
12
12
]
13
13
},
14
14
"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 "
17
17
}
18
18
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"format_version" : 2 ,
3
3
"tooth" : " gitea.litebds.com/LiteLDev/legacy-script-engine-${engine}" ,
4
- "version" : " 0.4.0 " ,
4
+ "version" : " 0.4.1 " ,
5
5
"info" : {
6
6
"name" : " LegacyScriptEngine with ${engine} backend" ,
7
7
"description" : " A plugin engine for running LLSE plugins on LeviLamina" ,
You can’t perform that action at this time.
0 commit comments