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

Merge branch 'build-2024.3.0.0' into 'develop'

Build 2024.3.0.0

See merge request !313
parents 56aebfef 3c88aa6f
No related branches found
No related tags found
1 merge request!313Build 2024.3.0.0
Pipeline #3965 passed with stage
in 7 minutes
...@@ -32,3 +32,23 @@ input ...@@ -32,3 +32,23 @@ input
* Add ability to edit a channel's plotting information from the plot * Add ability to edit a channel's plotting information from the plot
* Change the size of the main information box * Change the size of the main information box
* Bug fixes * Bug fixes
2024.3.0.0
--------
* Improve the performance of the program
* Add ability to print a help document to PDF
* Let users hide/show and reorder plotted channels
* Update editor for value colors in database editor
* Add backup database and ability to revert to it
* Add ability to revert a row to the value in the backup database in the
database editor
* Shows information about a gap when it is clicked
* Show external devices when selecting the data directory in Linux
* Add version information to various places
* Disable replot button during various times
* Add ability to add a data type to data sets without detected one
* Improve how TPS plots look
* Improve the UI of the database editor
* Add support for VST channel in Pegasus data
* Update the colors in the plot for white background
* Bug fixes
package: package:
name: sohviewer name: sohviewer
version: 2024.2.1.0 version: 2024.3.0.0
source: source:
path: ../ path: ../
...@@ -25,6 +25,8 @@ test: ...@@ -25,6 +25,8 @@ test:
- tests - tests
- sohstationviewer/database/soh.db - sohstationviewer/database/soh.db
- sohstationviewer/database/backup.db - sohstationviewer/database/backup.db
- sohstationviewer/documentation
- sohstationviewer/documentation/images
commands: commands:
- python -m unittest - python -m unittest
......
...@@ -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.2.1.0', version='2024.3.0.0',
zip_safe=False, zip_safe=False,
) )
...@@ -5,7 +5,7 @@ from typing import Literal ...@@ -5,7 +5,7 @@ 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.2.1.0' SOFTWARE_VERSION = '2024.3.0.0'
BUILD_TIME = "March 13, 2024" BUILD_TIME = "March 13, 2024"
# waveform pattern # waveform pattern
......
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