Skip to content

Commit d9473aa

Browse files
authored
Merge pull request #2376 from SCIInstitute/release_v6.6.0
Release v6.6.0 changes
2 parents 6236f3f + 45d6df2 commit d9473aa

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ cmake_minimum_required(VERSION 3.20)
66
SET(SHAPEWORKS_MAJOR_VERSION 6 CACHE INTERNAL "Major version number" FORCE)
77
SET(SHAPEWORKS_MINOR_VERSION 6 CACHE INTERNAL "Minor version number" FORCE)
88
SET(SHAPEWORKS_PATCH_VERSION 0 CACHE INTERNAL "Patch version number" FORCE)
9-
SET(SHAPEWORKS_VERSION_STRING "6.6.0_RC6")
9+
SET(SHAPEWORKS_VERSION_STRING "6.6.0")
1010
SET(SHAPEWORKS_VERSION "${SHAPEWORKS_MAJOR_VERSION}.${SHAPEWORKS_MINOR_VERSION}.${SHAPEWORKS_PATCH_VERSION}")
1111

1212
# First, check that files were checked out properly using git-lfs
1313
file(MD5 "${CMAKE_CURRENT_SOURCE_DIR}/Testing/data/icp_baseline.nrrd" HASH)
1414
if (NOT "${HASH}" STREQUAL "bb94438a695c749b264180019abbbb97")
15-
message( FATAL_ERROR "MD5 hash of '${CMAKE_CURRENT_SOURCE_DIR}/Testing/data/icp_baseline.nrrd' is incorrect. This most likely means that git-lfs was not installed when ShapeWorks was cloned." )
15+
message( FATAL_ERROR "MD5 hash of '${CMAKE_CURRENT_SOURCE_DIR}/Testing/data/icp_baseline.nrrd' is incorrect. This most likely means that git-lfs was not installed when ShapeWorks was cloned. If you have downloaded a zip or tar.gz of the source, then it will be missing Git-LFS objects. Please use git to clone ShapeWorks or download a source archive containing the Git-LFS objects under releases." )
1616
endif()
1717

1818
set(CMAKE_CXX_STANDARD 17) # available options are [98, 11, 14, 17. 20]

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ Latest Release
2222
<!--![](docs/img/about/release6.1.png)-->
2323
<!--![](docs/img/about/release6.2.png)-->
2424
<!--![](docs/img/about/release6.3.png)-->
25-
![](docs/img/about/release6.4.png)
25+
<!--![](docs/img/about/release6.4.png)-->
26+
<!--![](docs/img/about/release6.5.png)-->
27+
![](docs/img/about/release6.6.png)
2628

2729
Quick Links
2830
=====================

Studio/Analysis/AnalysisTool.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,9 @@ void AnalysisTool::on_metrics_open_button_toggled() {
16791679
//---------------------------------------------------------------------------
16801680
void AnalysisTool::initialize_mesh_warper() {
16811681
if (session_->particles_present() && session_->get_groomed_present()) {
1682-
compute_stats();
1682+
if (!compute_stats()) {
1683+
return;
1684+
}
16831685

16841686
auto params = session_->get_project()->get_parameters(Parameters::ANALYSIS_PARAMS);
16851687

Studio/Interface/ShapeWorksStudioApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,6 @@ void ShapeWorksStudioApp::open_project(QString filename) {
15281528
}
15291529

15301530
analysis_tool_->reset_stats();
1531-
analysis_tool_->initialize_mesh_warper();
15321531

15331532
block_update_ = true;
15341533

@@ -1565,6 +1564,7 @@ void ShapeWorksStudioApp::open_project(QString filename) {
15651564
on_zoom_slider_valueChanged();
15661565

15671566
session_->set_loading(false);
1567+
analysis_tool_->initialize_mesh_warper();
15681568

15691569
if (ui_->action_analysis_mode->isChecked() && !ui_->action_analysis_mode->isEnabled()) {
15701570
on_action_import_mode_triggered();

0 commit comments

Comments
 (0)