From 29118157c96c9e10300bc1f6db9f6906943eb21c Mon Sep 17 00:00:00 2001 From: Christoph Schmidt <cschmidt.fs@gmail.com> Date: Wed, 22 Nov 2023 09:59:49 +0100 Subject: [PATCH] Added QProgressBarWindow.py for displaying progress bars when using iterables. Updated to version v0.0.3 --- pyproject.toml | 2 +- src/fswidgets/__init__.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3a23781..7de58c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fswidgets" -version = "0.0.2" +version = "0.0.3" authors = [ { name="Christoph Schmidt", email="cschmidt.fs@gmail.com" }, ] diff --git a/src/fswidgets/__init__.py b/src/fswidgets/__init__.py index 53ba06b..d99dcce 100644 --- a/src/fswidgets/__init__.py +++ b/src/fswidgets/__init__.py @@ -1,2 +1,3 @@ from .LEDIndicatorWidget import LEDIndicatorWidget -from .PlayPushButton import PlayPushButton \ No newline at end of file +from .PlayPushButton import PlayPushButton +from .QProgressBarWindow import QProgressBarWindow \ No newline at end of file -- GitLab