feat: update version

This commit is contained in:
zimuya4153
2025-03-22 01:49:40 +08:00
Unverified
parent 9016cbf01c
commit 0ffd32a5d1
4 changed files with 49 additions and 28 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "${pluginName}", "name": "${pluginName}",
"entry": "${pluginFile}", "entry": "${pluginFile}",
"version": "0.13.6", "version": "1.0.0-rc.1",
"author": "GroupMountain", "author": "GroupMountain",
"type": "native", "type": "native",
"passive": true, "passive": true,
+8 -3
View File
@@ -9,11 +9,16 @@
#define PLUGIN_NAME fmt::format(fg(fmt::color::light_green), "GMLIB-LRCA") #define PLUGIN_NAME fmt::format(fg(fmt::color::light_green), "GMLIB-LRCA")
#define LIB_VERSION_MAJOR 0 #define LIB_VERSION_MAJOR 1
#define LIB_VERSION_MINOR 13 #define LIB_VERSION_MINOR 0
#define LIB_VERSION_PATCH 6 #define LIB_VERSION_PATCH 0
#define LIB_VERSION_PRERELEASE "rc.1"
#ifdef LIB_VERSION_PRERELEASE
#define LIB_VERSION ll::data::Version(LIB_VERSION_MAJOR, LIB_VERSION_MINOR, LIB_VERSION_PATCH, LIB_VERSION_PRERELEASE)
#else
#define LIB_VERSION ll::data::Version(LIB_VERSION_MAJOR, LIB_VERSION_MINOR, LIB_VERSION_PATCH) #define LIB_VERSION ll::data::Version(LIB_VERSION_MAJOR, LIB_VERSION_MINOR, LIB_VERSION_PATCH)
#endif
extern void Export_Legacy_GMLib_ModAPI(); extern void Export_Legacy_GMLib_ModAPI();
extern void Export_Legacy_GMLib_ServerAPI(); extern void Export_Legacy_GMLib_ServerAPI();
+30 -14
View File
@@ -1,29 +1,45 @@
{ {
"format_version": 2, "format_version": 3,
"format_uuid": "289f771f-2c9a-4d73-9f3f-8492495a924d",
"tooth": "github.com/GroupMountain/GMLIB-LegacyRemoteCallApi", "tooth": "github.com/GroupMountain/GMLIB-LegacyRemoteCallApi",
"version": "0.13.6", "version": "1.0.0-rc.1",
"info": { "info": {
"name": "GMLIB-LegacyRemoteCallApi", "name": "GMLIB-LegacyRemoteCallApi",
"description": "Legacy RemoteCall API for GMLIB", "description": "Legacy RemoteCall API for GMLIB",
"source": "github.com/GroupMountain/GMLIB-LegacyRemoteCallApi",
"author": "GroupMountain",
"tags": [ "tags": [
"levilamina", "platform:levilamina",
"type:mod",
"gmlib", "gmlib",
"lse", "lse",
"library" "library"
] ],
"avatar_url": "https://raw.githubusercontent.com/GroupMountain/GMLIB-LegacyRemoteCallApi/refs/heads/main/icon.jpg"
}, },
"asset_url": "https://github.com/GroupMountain/GMLIB-LegacyRemoteCallApi/releases/download/v0.13.6/GMLIB-LegacyRemoteCallApi-windows-x64.zip", "variants": [
"dependencies": {
"github.com/GroupMountain/GMLIB": ">=0.13.9"
},
"files": {
"place": [
{ {
"src": "GMLIB-LegacyRemoteCallApi/*", "platform": "win-x64",
"dest": "plugins/GMLIB-LegacyRemoteCallApi" "dependencies": {
"github.com/LiteLDev/LeviLamina": ">=1.1.1",
"github.com/GroupMountain/GMLIB-Release": ">=1.0.0-rc.3"
},
"assets": [
{
"type": "zip",
"urls": [
"https://github.com/GroupMountain/GMLIB-LegacyRemoteCallApi/releases/download/v$(version)/GMLIB-LegacyRemoteCallApi-windows-x64.zip"
],
"placements": [
{
"type": "dir",
"src": "GMLIB-LegacyRemoteCallApi",
"dest": "plugins/GMLIB-LegacyRemoteCallApi/"
} }
] ]
} }
],
"remove_files": [
"plugins/GMLIB-LegacyRemoteCallApi"
]
}
]
} }