Skip to content

Commit d700ce3

Browse files
committed
chore: update changelog.md & tooth.json
1 parent 424b054 commit d700ce3

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ 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.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

src/legacy/main/PluginManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ using ll::string_utils::str2wstr;
4848
bool 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
}

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.2.3",
4+
"version": "0.2.4",
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.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
}

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.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",

0 commit comments

Comments
 (0)