mirror of
https://github.com/nqrduck/nqrduck-autotm.git
synced 2024-12-21 23:30:27 +00:00
Version bump v0.0.4
This commit is contained in:
parent
ccd662c503
commit
3a23b126fe
3 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### Version 0.0.4 (05-05-2024)
|
||||||
|
- Now using the FileManager class instead of QFileManager
|
||||||
|
|
||||||
### Version 0.0.3 (17-04-2024)
|
### Version 0.0.3 (17-04-2024)
|
||||||
- Fixed bug with missing dependencies (scipy)
|
- Fixed bug with missing dependencies (scipy)
|
||||||
### Version 0.0.2 (17-04-2024)
|
### Version 0.0.2 (17-04-2024)
|
||||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "nqrduck-autotm"
|
name = "nqrduck-autotm"
|
||||||
version = "0.0.3"
|
version = "0.0.4"
|
||||||
authors = [
|
authors = [
|
||||||
{ name="jupfi", email="support@nqrduck.cool" },
|
{ name="jupfi", email="support@nqrduck.cool" },
|
||||||
]
|
]
|
||||||
|
|
|
@ -402,7 +402,7 @@ class AutoTMView(ModuleView):
|
||||||
def on_export_button_clicked(self) -> None:
|
def on_export_button_clicked(self) -> None:
|
||||||
"""Slot for when the export button is clicked."""
|
"""Slot for when the export button is clicked."""
|
||||||
logger.debug("Export button clicked")
|
logger.debug("Export button clicked")
|
||||||
file_manager = self.QFileManager(S11Data.FILE_EXTENSION, parent=self.widget)
|
file_manager = self.FileManager(S11Data.FILE_EXTENSION, parent=self.widget)
|
||||||
file_name = file_manager.saveFileDialog()
|
file_name = file_manager.saveFileDialog()
|
||||||
if file_name:
|
if file_name:
|
||||||
self.module.controller.save_measurement(file_name)
|
self.module.controller.save_measurement(file_name)
|
||||||
|
@ -411,7 +411,7 @@ class AutoTMView(ModuleView):
|
||||||
def on_import_button_clicked(self) -> None:
|
def on_import_button_clicked(self) -> None:
|
||||||
"""Slot for when the import button is clicked."""
|
"""Slot for when the import button is clicked."""
|
||||||
logger.debug("Import button clicked")
|
logger.debug("Import button clicked")
|
||||||
file_manager = self.QFileManager(S11Data.FILE_EXTENSION, parent=self.widget)
|
file_manager = self.FileManager(S11Data.FILE_EXTENSION, parent=self.widget)
|
||||||
file_name = file_manager.loadFileDialog()
|
file_name = file_manager.loadFileDialog()
|
||||||
if file_name:
|
if file_name:
|
||||||
self.module.controller.load_measurement(file_name)
|
self.module.controller.load_measurement(file_name)
|
||||||
|
|
Loading…
Reference in a new issue