From 9321fe46f3dd445592cdabcc39ae3aab9b811b5e Mon Sep 17 00:00:00 2001 From: Hendrik Polczynski Date: Sun, 11 Oct 2015 15:05:21 +0200 Subject: [PATCH] Release 2.3.0 --- changelog.md | 7 +++++++ project/PluginManager.vcxproj | 8 ++++---- tools/determine_cdkversion.bat | 20 +++++++++++++++++++- 3 files changed, 30 insertions(+), 5 deletions(-) diff --git a/changelog.md b/changelog.md index 70e1304..6e646eb 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,10 @@ +Plugin SDK 2.3.0 (11.10.2015) +----------------------------- +Stable Release for CryEngine 3.8.4 (32/64 bit) + +New: +* Verfied 3.8.4 compatibility + Plugin SDK 2.2.0 (11.10.2015) ----------------------------- Stable Release for CryEngine 3.8.3 (32/64 bit) diff --git a/project/PluginManager.vcxproj b/project/PluginManager.vcxproj index 923dcd4..994f5bc 100644 --- a/project/PluginManager.vcxproj +++ b/project/PluginManager.vcxproj @@ -75,28 +75,28 @@ false - $(ProjectDir)..\..\..\Bin$(PlatformArchitecture)\Plugins\ + $(ProjectDir)..\..\..\bin\win_$(PlatformTarget)\Plugins\ Plugin_Manager $(OutDir)\..\Launcher.exe WindowsLocalDebugger false - $(ProjectDir)..\..\..\Bin$(PlatformArchitecture)\Plugins\ + $(ProjectDir)..\..\..\bin\win_$(PlatformTarget)\Plugins\ Plugin_Manager $(OutDir)\..\Launcher.exe WindowsLocalDebugger false - $(ProjectDir)..\..\..\Bin$(PlatformArchitecture)\Plugins\ + $(ProjectDir)..\..\..\bin\win_$(PlatformTarget)\Plugins\ Plugin_Manager $(OutDir)\..\Launcher.exe WindowsLocalDebugger false - $(ProjectDir)..\..\..\Bin$(PlatformArchitecture)\Plugins\ + $(ProjectDir)..\..\..\bin\win_$(PlatformTarget)\Plugins\ Plugin_Manager $(OutDir)\..\Launcher.exe WindowsLocalDebugger diff --git a/tools/determine_cdkversion.bat b/tools/determine_cdkversion.bat index 198b5ab..941d4ef 100644 --- a/tools/determine_cdkversion.bat +++ b/tools/determine_cdkversion.bat @@ -6,10 +6,28 @@ set "tempvers=%~dp0tempvers.tmp" if exist "%~dp0..\..\..\Bin64\CrySystem.dll" ( "%~dp0sigcheck.exe" -n -q "%~dp0..\..\..\Bin64\CrySystem.dll" > "%tempvers%" -) else ( +) + +if exist "%~dp0..\..\..\Bin32\CrySystem.dll" ( "%~dp0sigcheck.exe" -n -q "%~dp0..\..\..\Bin32\CrySystem.dll" > "%tempvers%" ) +if exist "%~dp0..\..\..\bin\win_x64_release\CrySystem.dll" ( + "%~dp0sigcheck.exe" -n -q "%~dp0..\..\..\bin\win_x64_release\CrySystem.dll" > "%tempvers%" +) + +if exist "%~dp0..\..\..\bin\win_x86_release\CrySystem.dll" ( + "%~dp0sigcheck.exe" -n -q "%~dp0..\..\..\bin\win_x86_release\CrySystem.dll" > "%tempvers%" +) + +if exist "%~dp0..\..\..\bin\win_x64\CrySystem.dll" ( + "%~dp0sigcheck.exe" -n -q "%~dp0..\..\..\bin\win_x64\CrySystem.dll" > "%tempvers%" +) + +if exist "%~dp0..\..\..\bin\win_x86\CrySystem.dll" ( + "%~dp0sigcheck.exe" -n -q "%~dp0..\..\..\bin\win_x86\CrySystem.dll" > "%tempvers%" +) + for /f "usebackq tokens=1-3 delims=, " %%A in ("%tempvers%") do ( echo Plugin SDK detected CryEngine %%~A.%%~B.%%~C