Switched Release version to 5.0 and updated changelog

This commit is contained in:
Jan Möbius
2015-11-11 09:13:10 +01:00
parent 7a2f97104b
commit 4b322f792c
5 changed files with 19 additions and 6 deletions

View File

@@ -7,7 +7,7 @@
<!-- --------------------------------------------------------------------- --> <!-- --------------------------------------------------------------------- -->
<tr valign=top><td><b>4.2</b> (?/?/?)</td><td> <tr valign=top><td><b>5.0</b> (?/?/?)</td><td>
<b>General</b> <b>General</b>
<ul> <ul>
@@ -19,6 +19,14 @@
<li>Fixed bug where range iterators contained an invalid element when the range was empty</li> <li>Fixed bug where range iterators contained an invalid element when the range was empty</li>
<li>Reintroduced and polished the StatusSet API (Thanks to Martin Marinov)</li> <li>Reintroduced and polished the StatusSet API (Thanks to Martin Marinov)</li>
<li>More efficient implementation of opposite_halfedge_handle (Less instructions required)</li> <li>More efficient implementation of opposite_halfedge_handle (Less instructions required)</li>
<li>PolyMeshes: More robust algorithm for computing surface normals (Fixes bad normals on concave polygons)</li>
</ul>
<b>VectorT</b>
<ul>
<li>Modernized VectorT constructors for C++11 (Less redundancy, make some of the VectorT constructors constexpr)</li>
<li>C++11: Added _htmlColor literal operator.</li>
<li>C++11: Added explicit static_cast along with static SFINAE checks to VectorT constructor.</li>
</ul> </ul>
<b>IO</b> <b>IO</b>

View File

@@ -1,4 +1,4 @@
# OpenMesh, 4.2 # OpenMesh, 5.0
## Getting OpenMesh ## Getting OpenMesh

View File

@@ -1,6 +1,6 @@
VERSION=4.2 VERSION=5.0
MAJOR=4 MAJOR=5
MINOR=2 MINOR=0
PATCH=0 PATCH=0
ID=OPENMESH ID=OPENMESH

View File

@@ -63,6 +63,7 @@ IF (NOT OPENMESH_FOUND)
"${CMAKE_SOURCE_DIR}/OpenMesh/src/OpenMesh" "${CMAKE_SOURCE_DIR}/OpenMesh/src/OpenMesh"
"${CMAKE_SOURCE_DIR}/libs_required/OpenMesh/src/OpenMesh" "${CMAKE_SOURCE_DIR}/libs_required/OpenMesh/src/OpenMesh"
"${CMAKE_SOURCE_DIR}/../OpenMesh/src/OpenMesh" "${CMAKE_SOURCE_DIR}/../OpenMesh/src/OpenMesh"
"C:/Program Files/OpenMesh 5.0"
"C:/Program Files/OpenMesh 4.2" "C:/Program Files/OpenMesh 4.2"
"C:/Program Files/OpenMesh 4.1" "C:/Program Files/OpenMesh 4.1"
"C:/Program Files/OpenMesh 4.0" "C:/Program Files/OpenMesh 4.0"
@@ -74,6 +75,9 @@ IF (NOT OPENMESH_FOUND)
"C:/Program Files/OpenMesh 2.4.1" "C:/Program Files/OpenMesh 2.4.1"
"C:/Program Files/OpenMesh 2.4" "C:/Program Files/OpenMesh 2.4"
"C:/Program Files/OpenMesh 2.0/include" "C:/Program Files/OpenMesh 2.0/include"
"C:/libs/OpenMesh 5.0"
"C:/libs/OpenMesh 4.2"
"C:/libs/OpenMesh 4.1"
"C:/libs/OpenMesh 4.0" "C:/libs/OpenMesh 4.0"
"C:/libs/OpenMesh 3.4" "C:/libs/OpenMesh 3.4"
"C:/libs/OpenMesh 3.3" "C:/libs/OpenMesh 3.3"

View File

@@ -64,7 +64,8 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#define OM_VERSION 0x40200 #define OM_VERSION 0x50000
//#define OM_VERSION 0x40200
// only defined, if it is a beta version // only defined, if it is a beta version
//#define OM_VERSION_BETA 4 //#define OM_VERSION_BETA 4