adapt: adapt to GMLIB v0.12.0

This commit is contained in:
Tsubasa6848
2024-04-28 22:22:46 +08:00
Unverified
parent 76086c8fcf
commit d9067c1282
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "${pluginName}",
"entry": "${pluginFile}",
"version": "0.11.0",
"version": "0.12.0",
"author": "GroupMountain",
"type": "native",
"dependencies": [
+4 -4
View File
@@ -168,16 +168,16 @@ void Export_Compatibility_API() {
RemoteCall::exportAs(
"GMLIB_API",
"resourcePackTranslate",
[](std::string key, std::vector<std::string> params) -> std::string { return I18n::get(key, params); }
[](std::string key, std::vector<std::string> params) -> std::string { return I18nAPI::get(key, params); }
);
RemoteCall::exportAs("GMLIB_API", "chooseResourcePackI18nLanguage", [](std::string code) -> void {
if (GMLIB_Level::getInstance()) {
I18n::chooseLanguage(code);
I18nAPI::chooseLanguage(code);
}
});
RemoteCall::exportAs("GMLIB_API", "getResourcePackI18nLanguage", []() -> std::string {
if (GMLIB_Level::getInstance()) {
return I18n::getCurrentLanguage()->getFullLanguageCode();
if (auto result = I18nAPI::getCurrentLanguageCode()) {
return result.value();
}
return "unknown";
});
+1 -1
View File
@@ -4,7 +4,7 @@
#include <RemoteCallAPI.h>
#define PLUGIN_NAME "GMLIB-LRCA"
#define LIB_VERSION GMLIB::Version(0, 11, 0)
#define LIB_VERSION GMLIB::Version(0, 12, 0)
extern ll::Logger logger;
+3 -3
View File
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "github.com/GroupMountain/GMLIB-LegacyRemoteCallApi",
"version": "0.11.0",
"version": "0.12.0",
"info": {
"name": "GMLIB-LegacyRemoteCallApi",
"description": "Legacy RemoteCall API for GMLIB",
@@ -14,9 +14,9 @@
"library"
]
},
"asset_url": "https://github.com/GroupMountain/GMLIB-LegacyRemoteCallApi/releases/download/v0.11.0/GMLIB-LegacyRemoteCallApi-windows-x64.zip",
"asset_url": "https://github.com/GroupMountain/GMLIB-LegacyRemoteCallApi/releases/download/v0.12.0/GMLIB-LegacyRemoteCallApi-windows-x64.zip",
"dependencies": {
"github.com/GroupMountain/GMLIB": ">=0.10.0"
"github.com/GroupMountain/GMLIB": ">=0.12.0"
},
"files": {
"place": [