1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-03-21 12:28:56 +01:00

Bumped version to 1.1

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40105
This commit is contained in:
David Anderson 2005-09-13 18:20:53 +00:00
parent 62133463ac
commit 619c7deba1
5 changed files with 23 additions and 6 deletions

View File

@ -22,6 +22,12 @@
#include <sourcehook/sourcehook.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 ISmmPlugin;

View File

@ -4,6 +4,7 @@
Version="7.10"
Name="sample_mm"
ProjectGUID="{FAFF34FB-FE14-47B5-81BD-70D237392FB2}"
RootNamespace="sample_mm"
Keyword="Win32Proj">
<Platforms>
<Platform
@ -31,7 +32,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="tier0.lib"
AdditionalDependencies="tier0.lib vstdlib.lib"
OutputFile="$(OutDir)/sample_mm.dll"
LinkIncremental="2"
GenerateDebugInformation="TRUE"

View File

@ -26,7 +26,7 @@
#include "oslink.h"
#include "util.h"
#define SOURCEMM_VERSION "1.00"
#define SOURCEMM_VERSION "1.10"
#define SOURCEMM_DATE __DATE__
/**

View File

@ -4,6 +4,7 @@
Version="7.10"
Name="sourcemm"
ProjectGUID="{F7D47743-73B3-49B5-9D76-2333C5DFD565}"
RootNamespace="sourcemm"
Keyword="Win32Proj">
<Platforms>
<Platform
@ -211,9 +212,18 @@
<Filter
Name="SourceHook"
Filter="">
<File
RelativePath="..\sourcehook\sh_list.h">
</File>
<File
RelativePath="..\sourcehook\sh_string.h">
</File>
<File
RelativePath="..\sourcehook\sh_tinyhash.h">
</File>
<File
RelativePath="..\sourcehook\sh_vector.h">
</File>
<File
RelativePath="..\sourcehook\sourcehook.cpp">
</File>

View File

@ -27,8 +27,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,4
PRODUCTVERSION 1,0,0,4
FILEVERSION 1,1,0,0
PRODUCTVERSION 1,1,0,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -45,12 +45,12 @@ BEGIN
BEGIN
VALUE "Comments", "Metamod: Source"
VALUE "FileDescription", "Metamod: Source"
VALUE "FileVersion", "1.00"
VALUE "FileVersion", "1.10"
VALUE "InternalName", "sourcemm"
VALUE "LegalCopyright", "Copyright (c) 2004-2005, Metamod: Source Development Team"
VALUE "OriginalFilename", "server.dll"
VALUE "ProductName", "Metamod: Source"
VALUE "ProductVersion", "1.00"
VALUE "ProductVersion", "1.10"
END
END
BLOCK "VarFileInfo"