diff --git a/CHANGELOG.md b/CHANGELOG.md index af785fd1..551c890e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Bag Database changelog +3.2.0 + +- Fix running scripts with multiple bags with the same name +- Increase maximum upload size from 4 GB to 50 GB +- Use exit code of scripts to determine success +- Support BGRA8 image encoding + 3.1.0 - Add a BAGDB\_PATH environment variable to change the path used to serve the application diff --git a/pom.xml b/pom.xml index 30fe686a..c90a4d41 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.github.swri-robotics bag-database war - 3.1.0 + 3.2.0 Bag Database UTF-8 diff --git a/src/main/webapp/resources/js/views/AboutWindow.js b/src/main/webapp/resources/js/views/AboutWindow.js index 7ab5af19..52f9622a 100644 --- a/src/main/webapp/resources/js/views/AboutWindow.js +++ b/src/main/webapp/resources/js/views/AboutWindow.js @@ -35,7 +35,7 @@ Ext.define('BagDatabase.views.AboutWindow', { layout: 'fit', bodyPadding: 5, constrainHeader: true, - html: "

Bag Database 3.1.0

" + + html: "

Bag Database 3.2.0

" + "

Documentation: https://swri-robotics.github.io/bag-database/

" + "

Source Code: https://github.com/swri-robotics/bag-database

" + "

Copyright 2015-2020 Southwest Research Institute

" +