diff --git a/.github/workflows/pack.yml b/.github/workflows/pack.yml index d13e5e1..5ff8d50 100644 --- a/.github/workflows/pack.yml +++ b/.github/workflows/pack.yml @@ -30,7 +30,7 @@ jobs: xcopy red4ext\RadioExt.dll \packed\red4ext\plugins\RadioExt /e xcopy red4ext\fmod.dll \packed\red4ext\plugins\RadioExt /e - name: Upload zip - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: radioExtLatest path: \packed\ diff --git a/init.lua b/init.lua index a99fbcb..45bab09 100644 --- a/init.lua +++ b/init.lua @@ -7,7 +7,7 @@ -- * You may not fork this code and make your own competing version of this mod available for download without my permission. ------------------------------------------------------------------------------------------------------------------------------- -local minR4Version = 0.7 +local minR4Version = 0.8 radio = { runtimeData = { @@ -34,7 +34,7 @@ function radio:new() return end if math.abs(RadioExt.GetVersion() - minR4Version) > 0.05 then - print("[RadioExt] Red4Ext Part is not up to date: Version is " .. RadioExt.GetVersion() .. " Expected: " .. minR4Version .. " or newer") + print("[RadioExt] Red4Ext Part version mismatch: Version is " .. RadioExt.GetVersion() .. " Expected: " .. minR4Version .. " or newer") return end diff --git a/red4ext/RadioExt.dll b/red4ext/RadioExt.dll index 1d6016d..958c6b4 100644 Binary files a/red4ext/RadioExt.dll and b/red4ext/RadioExt.dll differ diff --git a/red4ext/fmod.dll b/red4ext/fmod.dll index 09e72fc..115a3b9 100644 Binary files a/red4ext/fmod.dll and b/red4ext/fmod.dll differ diff --git a/src/main.cpp b/src/main.cpp index 15acb35..f3bc7f0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -6,7 +6,7 @@ #include #include "SoundLoadData.hpp" -#define RADIOEXT_VERSION 0.7 +#define RADIOEXT_VERSION 0.8 #define CHANNELS 256 const RED4ext::Sdk* sdk; @@ -591,7 +591,7 @@ RED4EXT_C_EXPORT void RED4EXT_CALL Query(RED4ext::PluginInfo* aInfo) { aInfo->name = L"RadioExt"; aInfo->author = L"keanuWheeze"; - aInfo->version = RED4EXT_SEMVER(2, 2, 0); + aInfo->version = RED4EXT_SEMVER(2, 3, 0); aInfo->runtime = RED4EXT_RUNTIME_INDEPENDENT; aInfo->sdk = RED4EXT_SDK_LATEST; }