From 2aff937a59b3dbf41c58658bf60f85927c16b14b Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 10 Mar 2024 14:05:18 +1100 Subject: [PATCH] Fix issue #15 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- setup.py | 2 +- wavebin/__main__.py | 2 +- wavebin/interface.py | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0836ae8..bec9321 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ All notable changes to this project will be documented in this file. +## [v2.3.1](https://github.com/sam210723/wavebin/releases/tag/v2.3.1) - 2024-03-10 +Fixes issue [#15](https://github.com/sam210723/wavebin/issues/15), missing argument in sidebar update function call. + + ## [v2.3](https://github.com/sam210723/wavebin/releases/tag/v2.3) - 2024-02-11 Add support for Rigol DHO800 waveform captures, plus some minor fixes. diff --git a/README.md b/README.md index 2db7287..cc43f26 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![GitHub release](https://img.shields.io/github/release/sam210723/wavebin.svg)](https://pypi.org/project/wavebin/) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/wavebin)](https://pypi.org/project/wavebin/) -[![PyPI - Downloads](https://img.shields.io/pypi/dw/wavebin)](https://pypi.org/project/wavebin/) +[![PyPI - Downloads](https://img.shields.io/pypi/dm/wavebin)](https://pypi.org/project/wavebin/) [![GitHub license](https://img.shields.io/github/license/sam210723/wavebin.svg)](https://github.com/sam210723/wavebin/master/LICENSE) **wavebin** reads binary capture files generated by Agilent, Keysight and Rigol oscilloscopes and renders the waveforms in an interactive plot. Waveforms can be inspected, [filtered](#filtering), [clipped](#clipping), [subsampled](#subsampling) and exported to [sigrok PulseView](#export-to-pulseview) or [WAV files](#export-to-wav). @@ -45,7 +45,7 @@ For more information about the **wavebin** command-line arguments run: _ ______ __ _____ / /_ (_)___ | | /| / / __ `/ | / / _ \/ __ \/ / __ \ | |/ |/ / /_/ /| |/ / __/ /_/ / / / / / - |__/|__/\__,_/ |___/\___/_.___/_/_/ /_/ v2.3 + |__/|__/\__,_/ |___/\___/_.___/_/_/ /_/ v2.3.1 vksdr.com/wavebin diff --git a/setup.py b/setup.py index 6f371f8..744a12a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='wavebin', - version='2.3', + version='2.3.1', packages=['wavebin'], author="sam210723", author_email="pypi@vksdr.com", diff --git a/wavebin/__main__.py b/wavebin/__main__.py index 2ddfff3..bb593ab 100644 --- a/wavebin/__main__.py +++ b/wavebin/__main__.py @@ -12,7 +12,7 @@ from wavebin.plot import QtPlot from wavebin.wave import WaveParser -__version__ = 2.3 +__version__ = "2.3.1" def init(): diff --git a/wavebin/interface.py b/wavebin/interface.py index d1dad5a..f1a9106 100644 --- a/wavebin/interface.py +++ b/wavebin/interface.py @@ -179,7 +179,7 @@ def menu_file_open(self): return # Reset sidebar controls - self.sidebar.update(0, False, -1) + self.sidebar.update(0, False, -1, 0) # Parse waveform capture if not self.config['wave'].parse(file_path):