Skip to content
Merged

Dev #40

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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\
4 changes: 2 additions & 2 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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

Expand Down
Binary file modified red4ext/RadioExt.dll
Binary file not shown.
Binary file modified red4ext/fmod.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <fmod_errors.h>
#include "SoundLoadData.hpp"

#define RADIOEXT_VERSION 0.7
#define RADIOEXT_VERSION 0.8
#define CHANNELS 256

const RED4ext::Sdk* sdk;
Expand Down Expand Up @@ -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;
}
Expand Down