File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ 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.2.3 ] - 2024-02-08
8+ ## [ 0.2.4 ] - 2024-02-08
99
1010### Fixed
1111
12- - Chinese path.
12+ - Fix onCmdBlockExecute
1313
1414## [ 0.2.2] - 2024-02-06
1515
@@ -51,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5151
5252- First release.
5353
54- [ 0.2.3 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.2.2...v0.2.3
54+ [ 0.2.4 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.2.2...v0.2.4
5555[ 0.2.2 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.2.1...v0.2.2
5656[ 0.2.1 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.2.0...v0.2.1
5757[ 0.2.0 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.1.6...v0.2.0
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ using ll::string_utils::str2wstr;
4848bool PluginManager::loadPlugin (const std::string& fileOrDirPath, bool isHotLoad, bool mustBeCurrentModule) {
4949 if (fileOrDirPath == LLSE_DEBUG_ENGINE_NAME) return true ;
5050
51- if (!std::filesystem::exists (ll::string_utils::str2u8str (fileOrDirPath))) {
51+ if (!std::filesystem::exists (ll::string_utils::str2wstr (fileOrDirPath))) {
5252 lse::getSelfPluginInstance ().getLogger ().error (" Plugin not found! Check the path you input again." );
5353 return false ;
5454 }
Original file line number Diff line number Diff line change 11{
22 "format_version" : 2 ,
33 "tooth" : " github.com/LiteLDev/LegacyScriptEngine" ,
4- "version" : " 0.2.3 " ,
4+ "version" : " 0.2.4 " ,
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.2.3 " ,
16- "gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs" : " 0.2.3 "
15+ "gitea.litebds.com/LiteLDev/legacy-script-engine-lua" : " 0.2.4 " ,
16+ "gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs" : " 0.2.4 "
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.2.3 " ,
4+ "version" : " 0.2.4 " ,
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