Skip to content

Commit

Permalink
Fix issue #15
Browse files Browse the repository at this point in the history
  • Loading branch information
sam210723 committed Mar 10, 2024
1 parent 6f1b8a6 commit 2aff937
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ All notable changes to this project will be documented in this file.
</details>


## [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.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -45,7 +45,7 @@ For more information about the **wavebin** command-line arguments run:
_ ______ __ _____ / /_ (_)___
| | /| / / __ `/ | / / _ \/ __ \/ / __ \
| |/ |/ / /_/ /| |/ / __/ /_/ / / / / /
|__/|__/\__,_/ |___/\___/_.___/_/_/ /_/ v2.3
|__/|__/\__,_/ |___/\___/_.___/_/_/ /_/ v2.3.1
vksdr.com/wavebin
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='wavebin',
version='2.3',
version='2.3.1',
packages=['wavebin'],
author="sam210723",
author_email="pypi@vksdr.com",
Expand Down
2 changes: 1 addition & 1 deletion wavebin/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from wavebin.plot import QtPlot
from wavebin.wave import WaveParser

__version__ = 2.3
__version__ = "2.3.1"


def init():
Expand Down
2 changes: 1 addition & 1 deletion wavebin/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 2aff937

Please sign in to comment.