Skip to content

Commit

Permalink
Release version 2.6 revision 2
Browse files Browse the repository at this point in the history
Using tarball (with SHA1):
25efd7732292b5f33ae29bab3657183a5ffd45aa *SARndbox-2.6.tar.gz
  • Loading branch information
Doc-Ok authored and melanopsis committed Jun 17, 2019
1 parent 6d6438f commit d1e51b5
Show file tree
Hide file tree
Showing 35 changed files with 18 additions and 16 deletions.
4 changes: 2 additions & 2 deletions BathymetrySaverTool.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/***********************************************************************
BathymetrySaverTool - Tool to save the current bathymetry grid of an
augmented reality sandbox to a file or network socket.
Copyright (c) 2016 Oliver Kreylos
Copyright (c) 2016-2018 Oliver Kreylos
This file is part of the Augmented Reality Sandbox (SARndbox).
Expand Down Expand Up @@ -643,7 +643,7 @@ void BathymetrySaverTool::frame(void)
postUpdate();
}
}
catch(std::runtime_error err)
catch(const std::runtime_error& err)
{
Misc::formattedUserError("Save Bathymetry: Unable to save bathymetry due to exception \"%s\"",err.what());
}
Expand Down
4 changes: 4 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,7 @@ SARndbox-2.5:
is pressed.
- Added handling of multi-line commands on the control pipe and simple
error checking.

SARndbox-2.6:
- Bumped Vrui version requirement to Vrui-4.6-005.
- Bumped Kinect version requirement to Kinect-3.7.
8 changes: 4 additions & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
========================================================================
README for Augmented Reality Sandbox (SARndbox) version 2.5
README for Augmented Reality Sandbox (SARndbox) version 2.6
Copyright (c) 2012-2018 Oliver Kreylos
========================================================================

Expand All @@ -15,8 +15,8 @@ surface using a calibrated projector.
Requirements
============

The Augmented Reality Sandbox requires Vrui version 4.5 build 001 or
newer, and the Kinect 3D Video Capture Project version 3.5 or newer.
The Augmented Reality Sandbox requires Vrui version 4.6 build 005 or
newer, and the Kinect 3D Video Capture Project version 3.7 or newer.

Installation Guide
==================
Expand All @@ -42,7 +42,7 @@ references to ~/src in the following instructions need to be changed.
2. Change into the Augmented Reality Sandbox's base directory:
> cd SARndbox-<version>

3. If the Vrui version installed in step 0 was not 4.5, or Vrui's
3. If the Vrui version installed in step 0 was not 4.6, or Vrui's
installation directory was changed from the default of /usr/local,
adapt the makefile using a text editor. Change the value of
VRUI_MAKEDIR close to the beginning of the file as follows:
Expand Down
6 changes: 3 additions & 3 deletions Sandbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ void Sandbox::RenderSettings::loadProjectorTransform(const char* projectorTransf

projectorTransformValid=true;
}
catch(std::runtime_error err)
catch(const std::runtime_error& err)
{
/* Print an error message and disable calibrated projections: */
std::cerr<<"Unable to load projector transformation from file "<<fullProjectorTransformName<<" due to exception "<<err.what()<<std::endl;
Expand All @@ -235,7 +235,7 @@ void Sandbox::RenderSettings::loadHeightMap(const char* heightMapName)
delete elevationColorMap;
elevationColorMap=newElevationColorMap;
}
catch(std::runtime_error err)
catch(const std::runtime_error& err)
{
std::cerr<<"Ignoring height map due to exception "<<err.what()<<std::endl;
}
Expand Down Expand Up @@ -1221,7 +1221,7 @@ void Sandbox::frame(void)
if(rsIt->elevationColorMap!=0)
rsIt->elevationColorMap->load(tokens[1].c_str());
}
catch(std::runtime_error err)
catch(const std::runtime_error& err)
{
std::cerr<<"Cannot read height color map "<<tokens[1]<<" due to exception "<<err.what()<<std::endl;
}
Expand Down
2 changes: 1 addition & 1 deletion SurfaceRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ void SurfaceRenderer::renderSinglePass(const int viewport[4],const PTransform& p
glDeleteObjectARB(dataItem->heightMapShader);
dataItem->heightMapShader=newShader;
}
catch(std::runtime_error err)
catch(const std::runtime_error& err)
{
Misc::formattedUserError("SurfaceRenderer::renderSinglePass: Caught exception %s while rebuilding surface shader",err.what());
}
Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Augmented Reality Sandbox 2.5
release date 05/17/2018
Augmented Reality Sandbox 2.6
release date 12/16/2018
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 2 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# matches the default Vrui installation; if Vrui's installation
# directory was changed during Vrui's installation, the directory below
# must be adapted.
VRUI_MAKEDIR := /usr/local/share/Vrui-4.5/make
VRUI_MAKEDIR := /usr/local/share/Vrui-4.6/make
ifdef DEBUG
VRUI_MAKEDIR := $(VRUI_MAKEDIR)/debug
endif
Expand All @@ -47,7 +47,7 @@ INSTALLDIR := $(PWD)
# clobbering each other. The value should be identical to the
# major.minor version number found in VERSION in the root package
# directory.
VERSION = 2.5
VERSION = 2.6

# Set up resource directories: */
CONFIGDIR = etc/SARndbox-$(VERSION)
Expand All @@ -71,8 +71,6 @@ SHAREINSTALLDIR = $(INSTALLDIR)/$(RESOURCEDIR)
# Specify additional compiler and linker flags
########################################################################

CFLAGS += -Wall -pedantic

########################################################################
# List common packages used by all components of this project
# (Supported packages can be found in $(VRUI_MAKEDIR)/Packages.*)
Expand Down

0 comments on commit d1e51b5

Please sign in to comment.