diff --git a/CHANGELOG.md b/CHANGELOG.md index 7729fcd..2b1300d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,24 @@ # Changelog -### Version 0.0.4 (05-05-2024) -- Added display of multiple measurements that can be displayed in th plot window. +## Version 0.0.5 (20-05-2024) + +- Fixed measurement dialog not showing in wayland (`f5705e4efcbaf1aa0efd558b1ec1dacf42a53944`) +- Measurement names are now editable (`be2e895c5768c3a82c329da62f9afef4bd953895`). +- Improved darkmode compatibility (`be2e895c5768c3a82c329da62f9afef4bd953895`). + +## Version 0.0.4 (05-05-2024) + +- Added display of multiple measurements that can be displayed in th plot window. - Now using the FileManager class instead of QFileManager -### Version 0.0.3 (26-04-2024) -- Switched to new formbuilder. This should make implementation of signal processing methods more robust and easier. +## Version 0.0.3 (26-04-2024) + +- Switched to new formbuilder. This should make implementation of signal processing methods more robust and easier. + +## Version 0.0.2 (17-04-2024) -### Version 0.0.2 (17-04-2024) - Deployment to PyPi via github actions -### Version 0.0.1 (15-04-2024) -- Initial release \ No newline at end of file +## Version 0.0.1 (15-04-2024) + +- Initial release diff --git a/pyproject.toml b/pyproject.toml index 5ea2dd9..b7d55ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ allow-direct-references = true [project] name = "nqrduck-measurement" -version = "0.0.4" +version = "0.0.5" authors = [ { name="jupfi", email="support@nqrduck.cool" }, ] diff --git a/src/nqrduck_measurement/view.py b/src/nqrduck_measurement/view.py index 8c34d47..af344d9 100644 --- a/src/nqrduck_measurement/view.py +++ b/src/nqrduck_measurement/view.py @@ -16,7 +16,7 @@ from PyQt6.QtWidgets import ( QLineEdit, ) from PyQt6.QtGui import QFontMetrics -from PyQt6.QtCore import pyqtSlot, Qt, QTimer +from PyQt6.QtCore import pyqtSlot, Qt from nqrduck.module.module_view import ModuleView from nqrduck.assets.icons import Logos from nqrduck.assets.animations import DuckAnimations