Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a03ebcb
Set version to 6.8.0-RC1 on the release branch
akenmorris Aug 7, 2026
346b56a
Write 6.8.0 release notes and docs
akenmorris Aug 7, 2026
1176956
Cite the bundled-Python issues in the 6.8.0 release notes
akenmorris Aug 7, 2026
f0d1e8f
Lead the 6.8 tour tagline with the large-cohort speedups
akenmorris Aug 8, 2026
d057a75
Document the 6.8 Studio features and optimize parameters
akenmorris Aug 10, 2026
ce0fad7
Studio: antialias the 3D viewers with FXAA
akenmorris Aug 10, 2026
8ab901b
Studio: click the status message to clear it
akenmorris Aug 10, 2026
efebd68
Set version to 6.8.0 for release
akenmorris Aug 10, 2026
21b27bf
Note that the whole release branch merges back, not just docs
akenmorris Aug 10, 2026
c53b5f9
Studio: widen the bounding box lines
akenmorris Aug 10, 2026
cd5a8cd
Studio: keep the scale bar labels clear of the shape
akenmorris Aug 10, 2026
364e793
Update the 6.8 Studio screenshots
akenmorris Aug 10, 2026
c60690e
Add the Views dropdown screenshot to the viewer docs
akenmorris Aug 10, 2026
81b09ba
Add the Regression tab screenshot to the analyze docs
akenmorris Aug 10, 2026
1f3359f
Add the correspondence quality distance field image
akenmorris Aug 10, 2026
9ab9807
Update light-the-torch to 0.8.1
akenmorris Aug 10, 2026
ac2c16a
Add the 6.8 release banner image
akenmorris Aug 11, 2026
a41f941
Update banner image
akenmorris Aug 12, 2026
9a5d23d
Document updating version.json in the release process
akenmorris Aug 13, 2026
3a0862b
Set version to 6.8.0_RC1 for release-candidate testing
akenmorris Aug 13, 2026
b0009be
Update release notes
akenmorris Aug 13, 2026
1d9b46e
Fix clipped regression hint message in the Analysis panel
akenmorris Aug 17, 2026
cfabd6d
Bring the docs deploy script up to date on the release branch (#2635)
akenmorris Aug 18, 2026
b1e9af0
Merge branch 'release_v6.8.0' of github.com:SCIInstitute/ShapeWorks i…
akenmorris Aug 23, 2026
7be6a69
Merge 6.8 release branch to master
akenmorris Aug 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Studio/Analysis/AnalysisTool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,10 @@ void AnalysisTool::update_regression_interface() {
ui_->regression_hint_label->setText(
"The selected column needs at least two subjects with differing numeric values.");
}
ui_->regression_hint_label->show();
// a wrapped label's minimum is one line, too short for resize_tab_to_current()
auto* hint = ui_->regression_hint_label;
hint->setMinimumHeight(hint->heightForWidth(hint->width()));
hint->show();
ui_->regression_min_label->setText("");
ui_->regression_max_label->setText("");
ui_->regressionLabel->setText("");
Expand Down
Loading