Skip to content

Commit

Permalink
Release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikp committed Oct 11, 2015
1 parent 814fe3e commit 9321fe4
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 4 additions & 4 deletions project/PluginManager.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,28 +75,28 @@
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(ProjectDir)..\..\..\Bin$(PlatformArchitecture)\Plugins\</OutDir>
<OutDir>$(ProjectDir)..\..\..\bin\win_$(PlatformTarget)\Plugins\</OutDir>
<TargetName>Plugin_Manager</TargetName>
<LocalDebuggerCommand>$(OutDir)\..\Launcher.exe</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(ProjectDir)..\..\..\Bin$(PlatformArchitecture)\Plugins\</OutDir>
<OutDir>$(ProjectDir)..\..\..\bin\win_$(PlatformTarget)\Plugins\</OutDir>
<TargetName>Plugin_Manager</TargetName>
<LocalDebuggerCommand>$(OutDir)\..\Launcher.exe</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(ProjectDir)..\..\..\Bin$(PlatformArchitecture)\Plugins\</OutDir>
<OutDir>$(ProjectDir)..\..\..\bin\win_$(PlatformTarget)\Plugins\</OutDir>
<TargetName>Plugin_Manager</TargetName>
<LocalDebuggerCommand>$(OutDir)\..\Launcher.exe</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(ProjectDir)..\..\..\Bin$(PlatformArchitecture)\Plugins\</OutDir>
<OutDir>$(ProjectDir)..\..\..\bin\win_$(PlatformTarget)\Plugins\</OutDir>
<TargetName>Plugin_Manager</TargetName>
<LocalDebuggerCommand>$(OutDir)\..\Launcher.exe</LocalDebuggerCommand>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
Expand Down
20 changes: 19 additions & 1 deletion tools/determine_cdkversion.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9321fe4

Please sign in to comment.