diff --git a/CMakeLists.txt b/CMakeLists.txt index 945122535d401bf126d04ec787b59f5261f71edf..4a2a9ea055c3c032ce0825a7d3ac38753c057265 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -82,7 +82,7 @@ option(ENABLE_WRAP_PYTHON "Build Python wrappers" OFF) set(GMSH_MAJOR_VERSION 2) set(GMSH_MINOR_VERSION 8) -set(GMSH_PATCH_VERSION 0) +set(GMSH_PATCH_VERSION 1) set(GMSH_EXTRA_VERSION "" CACHE STRING "Gmsh extra version string") set(GMSH_VERSION "${GMSH_MAJOR_VERSION}.${GMSH_MINOR_VERSION}") diff --git a/Mesh/meshGRegion.cpp b/Mesh/meshGRegion.cpp index 809307b98c31989d81d1cc93bbefd2990f50503c..57a631fbdf8d12ef6ebb0ea1069af7a64b453fb8 100644 --- a/Mesh/meshGRegion.cpp +++ b/Mesh/meshGRegion.cpp @@ -567,7 +567,7 @@ void MeshDelaunayVolume(std::vector<GRegion*> ®ions) (Msg::GetVerbosity() > 6) ? 'V': '\0'); } else { - sprintf(opts, "-Ype%c", + sprintf(opts, "Ype%c", (Msg::GetVerbosity() < 3) ? 'Q': (Msg::GetVerbosity() > 6) ? 'V': '\0'); // removed -q because mesh sizes at new vertices are wrong diff --git a/doc/VERSIONS.txt b/doc/VERSIONS.txt index 35ed72b21a9aa915ef156fb14346cd53ef77417b..5bbaee4b703530e6ba0cae3b851bcffcc871ef20 100644 --- a/doc/VERSIONS.txt +++ b/doc/VERSIONS.txt @@ -1,3 +1,5 @@ +2.8.1 (July ?, 2013): improved compound surfaces. + 2.8.0 (July 8, 2013): improved Delaunay point insertion; fixed mesh orientation of plane surfaces; fixed mesh size prescribed at embedded points; improved display of vectors at COG; new experimental text string display engines;