File tree Expand file tree Collapse file tree 5 files changed +17
-6
lines changed Expand file tree Collapse file tree 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.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 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" ,
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}
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments