From 5f2890ea20ab5b60adb6dc464c45f41ccd00c5ac Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos-Pita Date: Tue, 17 Feb 2026 11:50:41 +0100 Subject: [PATCH 1/3] Started v2.6.1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4c7843e..7364d410 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10) set(MOORDYN_MAJOR_VERSION 2) set(MOORDYN_MINOR_VERSION 6) -set(MOORDYN_PATCH_VERSION 0) +set(MOORDYN_PATCH_VERSION 1) set(MOORDYN_VERSION ${MOORDYN_MAJOR_VERSION}.${MOORDYN_MINOR_VERSION}) project(Moordyn VERSION ${MOORDYN_VERSION}) From 0c7d961086eaded4d227bb50bdb8e53acd7e9599 Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos-Pita Date: Fri, 20 Feb 2026 10:17:01 +0100 Subject: [PATCH 2/3] fix(core): Save with VTP extension --- tests/vtk.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/vtk.cpp b/tests/vtk.cpp index 4d026c6a..6ff03f74 100644 --- a/tests/vtk.cpp +++ b/tests/vtk.cpp @@ -87,7 +87,7 @@ write_vtk_by_instances() } std::stringstream filepath; filepath << fs::temp_directory_path().string() << "/" - << "vtk_body_" << body_i << ".00000.vtu"; + << "vtk_body_" << body_i << ".00000.vtp"; std::cout << "*** Saving on '" << filepath.str().c_str() << "'..." << std::endl; @@ -116,7 +116,7 @@ write_vtk_by_instances() } std::stringstream filepath; filepath << fs::temp_directory_path().string() << "/" - << "vtk_rod_" << rod_i << ".00000.vtu"; + << "vtk_rod_" << rod_i << ".00000.vtp"; std::cout << "*** Saving on '" << filepath.str().c_str() << "'..." << std::endl; @@ -146,7 +146,7 @@ write_vtk_by_instances() } std::stringstream filepath; filepath << fs::temp_directory_path().string() << "/" - << "vtk_point_" << point_i << ".00000.vtu"; + << "vtk_point_" << point_i << ".00000.vtp"; std::cout << "*** Saving on '" << filepath.str().c_str() << "'..." << std::endl; @@ -176,7 +176,7 @@ write_vtk_by_instances() } std::stringstream filepath; filepath << fs::temp_directory_path().string() << "/" - << "vtk_line_" << line_i << ".00000.vtu"; + << "vtk_line_" << line_i << ".00000.vtp"; std::cout << "*** Saving on '" << filepath.str().c_str() << "'..." << std::endl; From 299f75c0130ca106fe0e344ede2a3169a34b0e3e Mon Sep 17 00:00:00 2001 From: Jose Luis Cercos-Pita Date: Fri, 20 Feb 2026 10:19:20 +0100 Subject: [PATCH 3/3] fix(core): Wrong Fortran indexes --- tests/fortran_bindings.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fortran_bindings.f90 b/tests/fortran_bindings.f90 index e1b689bd..79d9a3d5 100644 --- a/tests/fortran_bindings.f90 +++ b/tests/fortran_bindings.f90 @@ -50,7 +50,7 @@ program main stop 1 end if do j = 1, 3 - x(3 * i + j) = r(j) + x(3 * (i_point - 1) + (j - 1)) = r(j - 1) end do end do