diff --git a/manifest.json b/manifest.json index f937351..439dae2 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name": "${modName}", "entry": "${modFile}", "type": "native", - "version": "0.13.2", + "version": "0.13.1", "author": "GroupMountain", "description": "Better Death Messages", "dependencies": [ diff --git a/tooth.json b/tooth.json index 7e7b2f8..97824ea 100644 --- a/tooth.json +++ b/tooth.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "github.com/GroupMountain/DeathMessages", - "version": "0.13.2", + "version": "0.13.1", "info": { "name": "DeathMessages", "description": "Better Death Messages on MCBE", @@ -11,7 +11,7 @@ "DeathMessages" ] }, - "asset_url": "https://github.com/GroupMountain/DeathMessages/releases/download/v0.13.2/DeathMessages-windows-x64.zip", + "asset_url": "https://github.com/GroupMountain/DeathMessages/releases/download/v0.13.1/DeathMessages-windows-x64.zip", "dependencies": { "github.com/GroupMountain/GMLIB": ">=0.13.10" }, diff --git a/xmake.lua b/xmake.lua index fd7161e..841da63 100644 --- a/xmake.lua +++ b/xmake.lua @@ -7,18 +7,15 @@ if not has_config("vs_runtime") then set_runtimes("MD") end -add_requires("levilamina") -add_requires("levibuildscript") -add_requires("gmlib") +add_requires("levilamina 1.0.0") +add_requires("levibuildscript 0.3.0") +add_requires("gmlib 0.13.10") target("DeathMessages") -- Change this to your mod name. add_cxflags( "/EHa", "/utf-8" ) - add_defines( - "_HAS_CXX23=1" -- To enable C++23 features - ) add_files( "src/**.cpp" ) @@ -37,9 +34,9 @@ target("DeathMessages") -- Change this to your mod name. "_HAS_CXX23" ) add_rules("@levibuildscript/linkrule") - set_exceptions("none") -- To avoid conflicts with /EHa + set_exceptions("none") set_kind("shared") - set_languages("cxx23") + set_languages("cxx20") set_symbols("debug") after_build(function (target)