Skip to content

Commit

Permalink
update for 1.62
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhumbert committed Apr 12, 2023
1 parent 998d385 commit b16cd12
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Binary file modified build/red4ext/plugins/input_loader/input_loader.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion deps/red4ext.sdk
Submodule red4ext.sdk updated 7887 files
4 changes: 2 additions & 2 deletions src/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ RED4EXT_C_EXPORT bool RED4EXT_CALL Main(RED4ext::PluginHandle aHandle, RED4ext::
//DisableThreadLibraryCalls(aHandle);

Utils::CreateLogger();
spdlog::info("Starting up Input Loader v0.0.9");
spdlog::info("Starting up Input Loader v0.0.10");
LoadInputConfigs();
break;
}
Expand All @@ -221,7 +221,7 @@ RED4EXT_C_EXPORT void RED4EXT_CALL Query(RED4ext::PluginInfo* aInfo)
{
aInfo->name = L"Input Loader";
aInfo->author = L"Jack Humbert";
aInfo->version = RED4EXT_SEMVER(0, 0, 9);
aInfo->version = RED4EXT_SEMVER(0, 0, 10);
aInfo->runtime = RED4EXT_RUNTIME_LATEST;
aInfo->sdk = RED4EXT_SDK_LATEST;
}
Expand Down
4 changes: 2 additions & 2 deletions src/input_loader.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<PostBuildEvent>
<Command>xcopy /y /d "$(SolutionDir)build\debug\bin\*.dll" "$(SolutionDir)..\build\red4ext\plugins\$(SolutionName)\"</Command>
<Command>copy /y /d "$(SolutionDir)build\debug\bin\*.dll" "$(SolutionDir)..\build\red4ext\plugins\$(SolutionName)\"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand All @@ -96,7 +96,7 @@
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<PostBuildEvent>
<Command>xcopy /y /d "$(SolutionDir)build\release\bin\*.dll" "$(SolutionDir)..\build\red4ext\plugins\$(SolutionName)\"</Command>
<Command>copy /y /d "$(SolutionDir)build\release\bin\*.dll" "$(SolutionDir)..\build\red4ext\plugins\$(SolutionName)\"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
Expand Down

0 comments on commit b16cd12

Please sign in to comment.