Skip to content

Commit b16cd12

Browse files
committed
update for 1.62
1 parent 998d385 commit b16cd12

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
-1.5 KB
Binary file not shown.

deps/red4ext.sdk

Submodule red4ext.sdk updated 7887 files

src/Main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ RED4EXT_C_EXPORT bool RED4EXT_CALL Main(RED4ext::PluginHandle aHandle, RED4ext::
203203
//DisableThreadLibraryCalls(aHandle);
204204

205205
Utils::CreateLogger();
206-
spdlog::info("Starting up Input Loader v0.0.9");
206+
spdlog::info("Starting up Input Loader v0.0.10");
207207
LoadInputConfigs();
208208
break;
209209
}
@@ -221,7 +221,7 @@ RED4EXT_C_EXPORT void RED4EXT_CALL Query(RED4ext::PluginInfo* aInfo)
221221
{
222222
aInfo->name = L"Input Loader";
223223
aInfo->author = L"Jack Humbert";
224-
aInfo->version = RED4EXT_SEMVER(0, 0, 9);
224+
aInfo->version = RED4EXT_SEMVER(0, 0, 10);
225225
aInfo->runtime = RED4EXT_RUNTIME_LATEST;
226226
aInfo->sdk = RED4EXT_SDK_LATEST;
227227
}

src/input_loader.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<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>
7474
</Link>
7575
<PostBuildEvent>
76-
<Command>xcopy /y /d "$(SolutionDir)build\debug\bin\*.dll" "$(SolutionDir)..\build\red4ext\plugins\$(SolutionName)\"</Command>
76+
<Command>copy /y /d "$(SolutionDir)build\debug\bin\*.dll" "$(SolutionDir)..\build\red4ext\plugins\$(SolutionName)\"</Command>
7777
</PostBuildEvent>
7878
</ItemDefinitionGroup>
7979
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@@ -96,7 +96,7 @@
9696
<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>
9797
</Link>
9898
<PostBuildEvent>
99-
<Command>xcopy /y /d "$(SolutionDir)build\release\bin\*.dll" "$(SolutionDir)..\build\red4ext\plugins\$(SolutionName)\"</Command>
99+
<Command>copy /y /d "$(SolutionDir)build\release\bin\*.dll" "$(SolutionDir)..\build\red4ext\plugins\$(SolutionName)\"</Command>
100100
</PostBuildEvent>
101101
</ItemDefinitionGroup>
102102
<ItemGroup>

0 commit comments

Comments
 (0)