2 Commits

5 changed files with 14 additions and 11 deletions
+2 -1
View File
@@ -16,7 +16,8 @@ jobs:
- uses: xmake-io/github-action-setup-xmake@v1 - uses: xmake-io/github-action-setup-xmake@v1
with: with:
xmake-version: latest xmake-version: 2.9.9
- run: | - run: |
xmake repo -u xmake repo -u
+2 -1
View File
@@ -16,7 +16,8 @@ jobs:
- uses: xmake-io/github-action-setup-xmake@v1 - uses: xmake-io/github-action-setup-xmake@v1
with: with:
xmake-version: latest xmake-version: 2.9.9
- run: | - run: |
xmake repo -u xmake repo -u
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "${modName}", "name": "${modName}",
"entry": "${modFile}", "entry": "${modFile}",
"type": "native", "type": "native",
"version": "0.13.5", "version": "0.13.6",
"author": "GroupMountain", "author": "GroupMountain",
"description": "Clean Entities", "description": "Clean Entities",
"dependencies": [ "dependencies": [
+4 -4
View File
@@ -2,7 +2,7 @@
"format_version": 3, "format_version": 3,
"format_uuid": "289f771f-2c9a-4d73-9f3f-8492495a924d", "format_uuid": "289f771f-2c9a-4d73-9f3f-8492495a924d",
"tooth": "github.com/GroupMountain/Cleaner", "tooth": "github.com/GroupMountain/Cleaner",
"version": "0.13.5", "version": "0.13.6",
"info": { "info": {
"name": "Cleaner", "name": "Cleaner",
"description": "A Powerful Entities Cleaning up Mod for BDS", "description": "A Powerful Entities Cleaning up Mod for BDS",
@@ -18,14 +18,14 @@
"label": "", "label": "",
"platform": "win-x64", "platform": "win-x64",
"dependencies": { "dependencies": {
"github.com/GroupMountain/GMLIB": ">=1.0.0", "github.com/GroupMountain/GMLIB": ">=1.2.0-rc.1",
"github.com/MiracleForest/iListenAttentively-Release": ">=0.4.1" "github.com/MiracleForest/iListenAttentively-Release": ">=0.5.0-rc.1"
}, },
"assets": [ "assets": [
{ {
"type": "zip", "type": "zip",
"urls": [ "urls": [
"https://github.com/GroupMountain/Cleaner/releases/download/v0.13.5/Cleaner-windows-x64.zip" "https://github.com/GroupMountain/Cleaner/releases/download/v0.13.6/Cleaner-windows-x64.zip"
], ],
"placements": [ "placements": [
{ {
+5 -4
View File
@@ -9,10 +9,10 @@ if not has_config("vs_runtime") then
end end
-- Option 1: Use the latest version of LeviLamina released on GitHub. -- Option 1: Use the latest version of LeviLamina released on GitHub.
add_requires("levilamina 1.1.1") add_requires("levilamina 1.2.0")
add_requires("levibuildscript 0.3.0") add_requires("levibuildscript 0.4.0")
add_requires("gmlib 1.0.0") add_requires("gmlib 1.2.0-rc.1")
add_requires("ilistenattentively 0.4.1") add_requires("ilistenattentively 0.5.0-rc.1")
target("Cleaner") -- Change this to your mod name. target("Cleaner") -- Change this to your mod name.
add_cxflags( add_cxflags(
@@ -39,6 +39,7 @@ target("Cleaner") -- Change this to your mod name.
set_exceptions("none") set_exceptions("none")
set_kind("shared") set_kind("shared")
set_languages("cxx20") set_languages("cxx20")
set_symbols("debug")
after_build(function (target) after_build(function (target)
local mod_packer = import("scripts.after_build") local mod_packer = import("scripts.after_build")