mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-03-21 12:28:56 +01:00
Works with ServerGameDLL005 + SourceMM 1.2.3 Final Changelog
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40214
This commit is contained in:
parent
d9bd4e7b86
commit
e36f74bc0f
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user