From e36f74bc0f645e3078f5499dbac49dcd735f1d35 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Thu, 15 Jun 2006 00:01:06 +0000 Subject: [PATCH] Works with ServerGameDLL005 + SourceMM 1.2.3 Final Changelog --HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40214 --- sourcemm/changelog.txt | 4 ++++ sourcemm/sourcemm.h | 6 +++--- sourcemm/version.rc | 8 ++++---- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/sourcemm/changelog.txt b/sourcemm/changelog.txt index cfa4be5..06cca4f 100644 --- a/sourcemm/changelog.txt +++ b/sourcemm/changelog.txt @@ -1,3 +1,7 @@ +2006/06/14 1.2.3: + - Added SourceHook API for manual recalls: RETURN_META_(VALUE_)MNEWPARAMS + - Added support for ServerGameDLL005 (latest HL2DM update) + 2006/05/25 1.2.2: - Added the ability to "alias" plugin names in metaplugins.ini. - Added 'meta alias" command. diff --git a/sourcemm/sourcemm.h b/sourcemm/sourcemm.h index c88c172..4fe9761 100644 --- a/sourcemm/sourcemm.h +++ b/sourcemm/sourcemm.h @@ -34,16 +34,16 @@ * increase vers_release when bug fix releases are made * never increase major */ -#define SOURCEMM_VERSION "1.2.2" +#define SOURCEMM_VERSION "1.2.3" #define SOURCEMM_DATE __DATE__ #define SM_MAJOR_VERSION 1 //never need to increase this #define SM_VERS_API_MAJOR 1 //increase this on a breaking change #define SM_VERS_API_MINOR 3 //increase this on a non-breaking API change -#define SM_VERS_RELEASE 2 //increase this on a bug-fix release. +#define SM_VERS_RELEASE 3 //increase this on a bug-fix release. //We need a good CServerGameDLL version to work properly. We support these inclusively. #define MIN_GAMEDLL_VERSION 3 -#define MAX_GAMEDLL_VERSION 4 +#define MAX_GAMEDLL_VERSION 5 /** * @brief Entry point for HL2 Engine diff --git a/sourcemm/version.rc b/sourcemm/version.rc index 945b6ea..c9880f1 100755 --- a/sourcemm/version.rc +++ b/sourcemm/version.rc @@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,2,2,0 - PRODUCTVERSION 1,2,2,0 + FILEVERSION 1,2,3,0 + PRODUCTVERSION 1,2,3,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -43,12 +43,12 @@ BEGIN BEGIN VALUE "Comments", "Metamod: Source" VALUE "FileDescription", "Metamod: Source" - VALUE "FileVersion", "1.2.2" + VALUE "FileVersion", "1.2.3" VALUE "InternalName", "sourcemm" VALUE "LegalCopyright", "Copyright (c) 2004-2006, Metamod: Source Development Team" VALUE "OriginalFilename", "server.dll" VALUE "ProductName", "Metamod: Source" - VALUE "ProductVersion", "1.2.2" + VALUE "ProductVersion", "1.2.3" END END BLOCK "VarFileInfo"