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.
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.2.3 ] - 2024-02-08
8
+ ## [ 0.2.4 ] - 2024-02-08
9
9
10
10
### Fixed
11
11
12
- - Chinese path.
12
+ - Fix onCmdBlockExecute
13
13
14
14
## [ 0.2.2] - 2024-02-06
15
15
@@ -51,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51
51
52
52
- First release.
53
53
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
55
55
[ 0.2.2 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.2.1...v0.2.2
56
56
[ 0.2.1 ] : https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.2.0...v0.2.1
57
57
[ 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;
48
48
bool PluginManager::loadPlugin (const std::string& fileOrDirPath, bool isHotLoad, bool mustBeCurrentModule) {
49
49
if (fileOrDirPath == LLSE_DEBUG_ENGINE_NAME) return true ;
50
50
51
- if (!std::filesystem::exists (ll::string_utils::str2u8str (fileOrDirPath))) {
51
+ if (!std::filesystem::exists (ll::string_utils::str2wstr (fileOrDirPath))) {
52
52
lse::getSelfPluginInstance ().getLogger ().error (" Plugin not found! Check the path you input again." );
53
53
return false ;
54
54
}
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.2.3 " ,
4
+ "version" : " 0.2.4 " ,
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.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 "
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.2.3 " ,
4
+ "version" : " 0.2.4 " ,
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