mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-12-07 18:38:30 +00:00
Bumped version to 1.1
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40105
This commit is contained in:
parent
62133463ac
commit
619c7deba1
@ -22,6 +22,12 @@
|
|||||||
#include <sourcehook/sourcehook.h>
|
#include <sourcehook/sourcehook.h>
|
||||||
#include "IPluginManager.h"
|
#include "IPluginManager.h"
|
||||||
|
|
||||||
|
#if defined __GNUC__
|
||||||
|
#if ((__GNUC__ == 3) && (__GNUC_MINOR__ < 4)) || (__GNUC__ < 3)
|
||||||
|
#error "You must compile with at least GCC 3.4! If you know what you are doing, you can remove this message."
|
||||||
|
#endif //version check
|
||||||
|
#endif //__GNUC__
|
||||||
|
|
||||||
class ISmmPluginManager;
|
class ISmmPluginManager;
|
||||||
class ISmmPlugin;
|
class ISmmPlugin;
|
||||||
|
|
||||||
|
|||||||
@ -4,6 +4,7 @@
|
|||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="sample_mm"
|
Name="sample_mm"
|
||||||
ProjectGUID="{FAFF34FB-FE14-47B5-81BD-70D237392FB2}"
|
ProjectGUID="{FAFF34FB-FE14-47B5-81BD-70D237392FB2}"
|
||||||
|
RootNamespace="sample_mm"
|
||||||
Keyword="Win32Proj">
|
Keyword="Win32Proj">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
@ -31,7 +32,7 @@
|
|||||||
Name="VCCustomBuildTool"/>
|
Name="VCCustomBuildTool"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="tier0.lib"
|
AdditionalDependencies="tier0.lib vstdlib.lib"
|
||||||
OutputFile="$(OutDir)/sample_mm.dll"
|
OutputFile="$(OutDir)/sample_mm.dll"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
GenerateDebugInformation="TRUE"
|
GenerateDebugInformation="TRUE"
|
||||||
|
|||||||
@ -26,7 +26,7 @@
|
|||||||
#include "oslink.h"
|
#include "oslink.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
#define SOURCEMM_VERSION "1.00"
|
#define SOURCEMM_VERSION "1.10"
|
||||||
#define SOURCEMM_DATE __DATE__
|
#define SOURCEMM_DATE __DATE__
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -4,6 +4,7 @@
|
|||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="sourcemm"
|
Name="sourcemm"
|
||||||
ProjectGUID="{F7D47743-73B3-49B5-9D76-2333C5DFD565}"
|
ProjectGUID="{F7D47743-73B3-49B5-9D76-2333C5DFD565}"
|
||||||
|
RootNamespace="sourcemm"
|
||||||
Keyword="Win32Proj">
|
Keyword="Win32Proj">
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
@ -211,9 +212,18 @@
|
|||||||
<Filter
|
<Filter
|
||||||
Name="SourceHook"
|
Name="SourceHook"
|
||||||
Filter="">
|
Filter="">
|
||||||
|
<File
|
||||||
|
RelativePath="..\sourcehook\sh_list.h">
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\sourcehook\sh_string.h">
|
RelativePath="..\sourcehook\sh_string.h">
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\sourcehook\sh_tinyhash.h">
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\sourcehook\sh_vector.h">
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\sourcehook\sourcehook.cpp">
|
RelativePath="..\sourcehook\sourcehook.cpp">
|
||||||
</File>
|
</File>
|
||||||
|
|||||||
@ -27,8 +27,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,0,0,4
|
FILEVERSION 1,1,0,0
|
||||||
PRODUCTVERSION 1,0,0,4
|
PRODUCTVERSION 1,1,0,0
|
||||||
FILEFLAGSMASK 0x17L
|
FILEFLAGSMASK 0x17L
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
@ -45,12 +45,12 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
VALUE "Comments", "Metamod: Source"
|
VALUE "Comments", "Metamod: Source"
|
||||||
VALUE "FileDescription", "Metamod: Source"
|
VALUE "FileDescription", "Metamod: Source"
|
||||||
VALUE "FileVersion", "1.00"
|
VALUE "FileVersion", "1.10"
|
||||||
VALUE "InternalName", "sourcemm"
|
VALUE "InternalName", "sourcemm"
|
||||||
VALUE "LegalCopyright", "Copyright (c) 2004-2005, Metamod: Source Development Team"
|
VALUE "LegalCopyright", "Copyright (c) 2004-2005, Metamod: Source Development Team"
|
||||||
VALUE "OriginalFilename", "server.dll"
|
VALUE "OriginalFilename", "server.dll"
|
||||||
VALUE "ProductName", "Metamod: Source"
|
VALUE "ProductName", "Metamod: Source"
|
||||||
VALUE "ProductVersion", "1.00"
|
VALUE "ProductVersion", "1.10"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user