Skip to content
Snippets Groups Projects
Commit 63b3fd28 authored by Kien Le's avatar Kien Le
Browse files

Merge branch 'build-2024.3.1.0' into 'develop'

Build 2024.3.1.0

See merge request !342
parents d1e98680 cb259b5b
No related branches found
No related tags found
1 merge request!342Build 2024.3.1.0
Pipeline #4148 passed with stage
in 9 minutes and 26 seconds
...@@ -57,3 +57,27 @@ database editor ...@@ -57,3 +57,27 @@ database editor
-------- --------
* Fix a bug that happens when building on some Linux machines * Fix a bug that happens when building on some Linux machines
* Bux fixes * Bux fixes
2024.3.1.0
--------
* Improve performance for RT130 data sets when only a subset of all data
streams is read.
* Add the ability to zoom out in the plot.
* Add unused SOH channels (VGT, VPH, VPO, VPP, VPV) for Pegasus datalogger to
the database. These channels are used for an unsupported model of the Pegasus
datalogger.
* Plot points with value 255 in the VAN channel for Pegasus datalogger in gray
instead of red. This distinguish them from points with value 2.
* Limit the zoom range. This fixes a bug that happens when the zoom range is
too small.
* Remove support for matplotlib versions below 3.6.2.
* Pause support for numpy versions 2.0 and above. Support will resume when all
dependencies have been updated to support numpy 2.0 and above.
* Fix the button to plot a different station in the same data set not being
enabled when needed.
* Fix default rows in the channel preference dialog being converted to
non-default rows on save.
* Fix artifacts showing up in the plot with some field laptops.
* Fix problems reading RT130 data sets caused by choosing specific data streams
to read.
* Fix TPS plot being broken for data sets with high-amplitude waveforms.
package: package:
name: sohviewer name: sohviewer
version: 2024.3.0.1 version: 2024.3.1.0
source: source:
path: ../ path: ../
......
...@@ -51,6 +51,6 @@ setup( ...@@ -51,6 +51,6 @@ setup(
name='sohviewer', name='sohviewer',
packages=find_packages(include=['sohstationviewer*']), packages=find_packages(include=['sohstationviewer*']),
url='https://git.passcal.nmt.edu/software_public/passoft/sohstationviewer', url='https://git.passcal.nmt.edu/software_public/passoft/sohstationviewer',
version='2024.3.0.1', version='2024.3.1.0',
zip_safe=False, zip_safe=False,
) )
...@@ -5,8 +5,8 @@ from typing import Literal ...@@ -5,8 +5,8 @@ from typing import Literal
ROOT_PATH = Path(__file__).resolve().parent.parent ROOT_PATH = Path(__file__).resolve().parent.parent
# The current version of SOHStationViewer # The current version of SOHStationViewer
SOFTWARE_VERSION = '2024.3.0.1' SOFTWARE_VERSION = '2024.3.1.0'
BUILD_TIME = "March 13, 2024" BUILD_TIME = "August 15, 2024"
# waveform pattern # waveform pattern
WF_1ST = 'A-HLM-V' WF_1ST = 'A-HLM-V'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment