Skip to content

Commit

Permalink
Miscellaneous updates for the 3.3.2 release. (#18396)
Browse files Browse the repository at this point in the history
  • Loading branch information
brugger1 committed Dec 20, 2022
1 parent 4b9a556 commit 4424b1f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 17 deletions.
18 changes: 9 additions & 9 deletions src/INSTALL_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ followed by the Unix installation instructions.
Windows:
========

1. Download the visit3.3.1_x64.exe installer program to
1. Download the visit3.3.2_x64.exe installer program to
your desktop.

2. Double click on the installer program icon to run the installer.
Expand All @@ -24,7 +24,7 @@ MacOS X:

Downloads:

1. Download visit-3.3.1.dmg and copy it to the desktop.
1. Download visit-3.3.2.dmg and copy it to the desktop.

2. Double click on the file to open it. This will cause MacOS to mount the
disk image and open it in Finder.
Expand All @@ -46,12 +46,12 @@ Unix (gzipped tar file):
distribution directory or update an existing distribution. This is
handled automatically.

chmod 755 visit-install3_3_1
./visit-install3_3_1 "version" "platform" "directory"
chmod 755 visit-install3_3_2
./visit-install3_3_2 "version" "platform" "directory"

where

"version" will be 3.3.1 for the current distribution.
"version" will be 3.3.2 for the current distribution.

"platform" will be one of the following:

Expand All @@ -74,12 +74,12 @@ Unix (gzipped tar file):

For example

chmod 755 visit-install3_3_1
./visit-install3_3_1 3.3.1 linux-x86_64-rhel7 /usr/local/visit
chmod 755 visit-install3_3_2
./visit-install3_3_2 3.3.2 linux-x86_64-rhel7 /usr/local/visit

will install the linux-x86_64-rhel7, 3.3.1 version of visit in the
will install the linux-x86_64-rhel7, 3.3.2 version of visit in the
directory "/usr/local/visit". Note that you will need to have the
file "visit3_3_1.linux-x86_64-rhel7.tar.gz" present in the current
file "visit3_3_2.linux-x86_64-rhel7.tar.gz" present in the current
directory for this to function properly.

2. Add the bin directory below the installation directory
Expand Down
2 changes: 1 addition & 1 deletion src/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1
3.3.2
5 changes: 4 additions & 1 deletion src/gui/SplashScreen.C
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,9 @@
// Eric Brugger, Wed Sep 21 14:40:08 PDT 2022
// Changed the date on the splash screen to September 2022.
//
// Eric Brugger, Tue Dec 20 10:06:53 PST 2022
// Changed the date on the splash screen to December 2022.
//
// ****************************************************************************

SplashScreen::SplashScreen(bool cyclePictures) : QFrame(0, Qt::SplashScreen)
Expand Down Expand Up @@ -379,7 +382,7 @@ SplashScreen::SplashScreen(bool cyclePictures) : QFrame(0, Qt::SplashScreen)
<< tr("October")
<< tr("November")
<< tr("December");
int currentMonth = 9;
int currentMonth = 12;
lLayout->addWidget(new QLabel(versionText, this));
lLayout->addWidget(new QLabel(months[currentMonth-1] + " 2022", this));

Expand Down
9 changes: 4 additions & 5 deletions src/resources/help/en_US/relnotes3.3.2.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<li>Fixed a bug causing the blueprint plugin to incorrectly assign a zonal association to mfem grid functions that were neither H1 nor L2.</li>
<li>Fixed a bug reading a ".visit" file with more than 10,000 files and comments for each file.</li>
<li>Fixed a bug that caused the compute engine to crash when in scalable rendering mode. The specific bug involved saving non screen capture images, but the crash could occur whenever doing scalable rendering.</li>
<li>Fixed a bug in the Mili reader where Green Lagrange strain was using incorrect initial coordinates.</li>
<li>Fixed a bug in the Mili reader where the Green Lagrange strain was using incorrect initial coordinates.</li>
<li>Fixed a bug preventing files with the extension ".h5m" from being grouped with smart grouping turned on.</li>
<li>Fixed a rare issue with the color table window that caused it to resize horizontally larger than the screen, causing buttons to be off the screen.</li>
<li>Fixed a bug with Pick where it incorrectly used the node origin.</li>
Expand All @@ -43,10 +43,9 @@
<li>Added support to export PolyData with a single cell type to the Blueprint writer.</li>
<li>The X Ray Image Query now outputs Blueprint meshes representing the rays used in the raytrace if the Blueprint output type is selected.</li>
<li>The Blueprint output from the X Ray Image Query previously included coordinates for the spatial extents of the output image. These coordinates have been promoted to a valid blueprint mesh.</li>
<li>Updated the Silo Database plugin to support a rare decomposition format discovered in the wild.</li>
<li>Added support for reading Blueprint data with blueprint_index per-mesh partition maps to the Blueprint Database plugin writer.</li>
<li>Extended support for reading sparsely populated Blueprint trees in the Blueprint Database plugin.</li>
<li>The Silo Database plugin was updated to support a rare decomposition format discovered in the wild.</li>
<li>Updated the Silo reader to support a rare decomposition format discovered in the wild.</li>
<li>Added support for reading Blueprint data with blueprint_index per-mesh partition maps to the Blueprint reader.</li>
<li>Extended support for reading sparsely populated Blueprint trees in the Blueprint reader.</li>
<li>Enhanced the make movie script so that it sets the number of digits in the output file names based on the number needed rather than always using four. Note that it uses a minimum of four digits to maintain backwards compatibility and a maximum of seven digits on the assumption you will not create a movie longer than 92 hours.</li>
</ul>

Expand Down
2 changes: 1 addition & 1 deletion src/tools/dev/scripts/build_visit
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#10. bv_<module>_is_installed check if the module is properly installed
#11. bv_<module>_is_enabled and finally check if it is enabled

export VISIT_VERSION=${VISIT_VERSION:-"3.3.1"}
export VISIT_VERSION=${VISIT_VERSION:-"3.3.2"}

####
# Trunk:
Expand Down

0 comments on commit 4424b1f

Please sign in to comment.