mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
ryzomcore/v0.11.2
This commit is contained in:
parent
fe5c94505f
commit
c522248f2d
3 changed files with 10 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
||||||
#
|
#
|
||||||
# NeL
|
# NeL
|
||||||
# Authors: Nevrax and the NeL Community
|
# Authors: Nevrax and the NeL Community
|
||||||
# Version: 0.11.1
|
# Version: 0.11.2
|
||||||
#
|
#
|
||||||
# Notes:
|
# Notes:
|
||||||
# * Changing install location: add -DCMAKE_INSTALL_PREFIX:PATH=/my/new/path
|
# * Changing install location: add -DCMAKE_INSTALL_PREFIX:PATH=/my/new/path
|
||||||
|
@ -48,7 +48,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
|
||||||
PROJECT(RyzomCore CXX C)
|
PROJECT(RyzomCore CXX C)
|
||||||
SET(NL_VERSION_MAJOR 0)
|
SET(NL_VERSION_MAJOR 0)
|
||||||
SET(NL_VERSION_MINOR 11)
|
SET(NL_VERSION_MINOR 11)
|
||||||
SET(NL_VERSION_PATCH 1)
|
SET(NL_VERSION_PATCH 2)
|
||||||
SET(NL_VERSION "${NL_VERSION_MAJOR}.${NL_VERSION_MINOR}.${NL_VERSION_PATCH}")
|
SET(NL_VERSION "${NL_VERSION_MAJOR}.${NL_VERSION_MINOR}.${NL_VERSION_PATCH}")
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
|
|
|
@ -514,8 +514,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 0, 11, 0, 0
|
FILEVERSION 0, 11, 2, 0
|
||||||
PRODUCTVERSION 0, 11, 0, 0
|
PRODUCTVERSION 0, 11, 2, 0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -533,13 +533,13 @@ BEGIN
|
||||||
VALUE "Comments", "Based on Kinetix 3D Studio Max 3.0 plugin sample\0"
|
VALUE "Comments", "Based on Kinetix 3D Studio Max 3.0 plugin sample\0"
|
||||||
VALUE "CompanyName", "Ryzom Core"
|
VALUE "CompanyName", "Ryzom Core"
|
||||||
VALUE "FileDescription", "NeL Patch Edit"
|
VALUE "FileDescription", "NeL Patch Edit"
|
||||||
VALUE "FileVersion", "0.11.0"
|
VALUE "FileVersion", "0.11.2"
|
||||||
VALUE "InternalName", "neleditpatch"
|
VALUE "InternalName", "neleditpatch"
|
||||||
VALUE "LegalCopyright", "Copyright © 2000 Nevrax Ltd. Copyright © 1998 Autodesk Inc."
|
VALUE "LegalCopyright", "Copyright © 2000 Nevrax Ltd. Copyright © 1998 Autodesk Inc."
|
||||||
VALUE "LegalTrademarks", "The following are registered trademarks of Autodesk, Inc.: 3D Studio MAX. The following are trademarks of Autodesk, Inc.: Kinetix, Kinetix(logo), BIPED, Physique, Character Studio, MAX DWG, DWG Unplugged, Heidi, FLI, FLC, DXF."
|
VALUE "LegalTrademarks", "The following are registered trademarks of Autodesk, Inc.: 3D Studio MAX. The following are trademarks of Autodesk, Inc.: Kinetix, Kinetix(logo), BIPED, Physique, Character Studio, MAX DWG, DWG Unplugged, Heidi, FLI, FLC, DXF."
|
||||||
VALUE "OriginalFilename", "neleditpatch.dlm"
|
VALUE "OriginalFilename", "neleditpatch.dlm"
|
||||||
VALUE "ProductName", "Ryzom Core"
|
VALUE "ProductName", "Ryzom Core"
|
||||||
VALUE "ProductVersion", "0.11.0"
|
VALUE "ProductVersion", "0.11.2"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -17,7 +17,10 @@
|
||||||
#ifndef RYZOM_VERSION_H
|
#ifndef RYZOM_VERSION_H
|
||||||
#define RYZOM_VERSION_H
|
#define RYZOM_VERSION_H
|
||||||
|
|
||||||
#define RYZOM_VERSION "ryzomcore/v0.11.1"
|
#define RYZOM_VERSION "ryzomcore" \
|
||||||
|
"/" \
|
||||||
|
"v0.11.2" \
|
||||||
|
""
|
||||||
|
|
||||||
#endif // RYZOM_VERSION_H
|
#endif // RYZOM_VERSION_H
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue