Skip to content

Commit 44911dd

Browse files
committed
Fix meshing with Gmsh version 4.13
Simple fix.
1 parent dc5b36b commit 44911dd

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

VERSIONS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
New in 4.10.1-1 (08 Oct 2024):
2+
- module -M: simple fix.
3+
14
New in 4.10.0 (01 Oct 2024):
25
- general: switched "active" and "passive" for orientation convention (see
36
incompatibility note below), changed convention for HCP directions.

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
import sphinx_rtd_theme
1212

1313
project = u'Neper'
14-
version = u'4.10.0'
15-
release = u'4.10.0'
14+
version = u'4.10.1-1'
15+
release = u'4.10.1-1'
1616
author = u'Romain Quey'
1717
copyright = u'Romain Quey'
1818
language = 'en'

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if(POLICY CMP0077)
77
cmake_policy(SET CMP0077 NEW)
88
endif()
99

10-
set(NEPER_VERSION \"4.10.0\")
10+
set(NEPER_VERSION \"4.10.1-1\")
1111
project(neper)
1212
1313
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8.1)

src/neut/neut_mesh/neut_mesh_fscanf/neut_mesh_fscanf_msh/neut_mesh_fscanf_msh1.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ neut_mesh_fscanf_msh (FILE * file, struct NODES *pNodes, struct MESH *pMesh0D,
6565
else if (ut_file_nextstring_test (file, "$NodePartitions"))
6666
neut_mesh_fscanf_msh_nodeparts (file, pNodes);
6767

68+
else if (ut_file_nextstring_test (file, "$MeshVersion"))
69+
neut_mesh_fscanf_msh_version (file, &version);
70+
6871
else
6972
ut_print_message (2, 2, "Failed to read msh file\n");
7073
}

0 commit comments

Comments
 (0)