1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-28 10:24:20 +01:00

Roll version in metamod_version.h

This commit is contained in:
Nicholas Hastings 2024-04-06 16:35:02 +00:00 committed by GitHub
parent 9fbe7f37ab
commit 2f3822992b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
* vim: set ts=4 sw=4 tw=99 noet : * vim: set ts=4 sw=4 tw=99 noet :
* ====================================================== * ======================================================
* Metamod:Source * Metamod:Source
* Copyright (C) 2004-2010 AlliedModders LLC and authors. * Copyright (C) 2004-2024 AlliedModders LLC and authors.
* All rights reserved. * All rights reserved.
* ====================================================== * ======================================================
* *
@ -45,14 +45,14 @@
#define MMS_BUILD_TAG "manual" #define MMS_BUILD_TAG "manual"
#define MMS_BUILD_LOCAL_REV "0" #define MMS_BUILD_LOCAL_REV "0"
#define MMS_BUILD_CSET "0" #define MMS_BUILD_CSET "0"
#define MMS_BUILD_MAJOR "1" #define MMS_BUILD_MAJOR "2"
#define MMS_BUILD_MINOR "12" #define MMS_BUILD_MINOR "0"
#define MMS_BUILD_RELEASE "0" #define MMS_BUILD_RELEASE "0"
#define MMS_BUILD_UNIQUEID MMS_BUILD_LOCAL_REV ":" MMS_BUILD_CSET #define MMS_BUILD_UNIQUEID MMS_BUILD_LOCAL_REV ":" MMS_BUILD_CSET
#define MMS_VERSION_STRING MMS_BUILD_MAJOR "." MMS_BUILD_MINOR "." MMS_BUILD_RELEASE "-" MMS_BUILD_TAG #define MMS_VERSION_STRING MMS_BUILD_MAJOR "." MMS_BUILD_MINOR "." MMS_BUILD_RELEASE "-" MMS_BUILD_TAG
#define MMS_VERSION_FILE 1,12,0,0 #define MMS_VERSION_FILE 2,0,0,0
#endif #endif
#define MMS_BUILD_TIMESTAMP __DATE__ " " __TIME__ #define MMS_BUILD_TIMESTAMP __DATE__ " " __TIME__