From 0a2bf51c63cbac0f00a570cc4f63135f04e86c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20M=C3=BCller?= Date: Sat, 27 Jun 2020 21:27:52 +0200 Subject: [PATCH 1/3] fixed calibration assitant save crash --- NanoVNASaver/Windows/CalibrationSettings.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/NanoVNASaver/Windows/CalibrationSettings.py b/NanoVNASaver/Windows/CalibrationSettings.py index 6c29fab..42946fc 100644 --- a/NanoVNASaver/Windows/CalibrationSettings.py +++ b/NanoVNASaver/Windows/CalibrationSettings.py @@ -673,7 +673,7 @@ class CalibrationWindow(QtWidgets.QWidget): if self.nextStep == 0: # Short - self.save("short") + self.cal_save("short") self.nextStep = 1 open_step = QtWidgets.QMessageBox( @@ -697,7 +697,7 @@ class CalibrationWindow(QtWidgets.QWidget): if self.nextStep == 1: # Open - self.save("open") + self.cal_save("open") self.nextStep = 2 load_step = QtWidgets.QMessageBox( QtWidgets.QMessageBox.Information, @@ -718,7 +718,7 @@ class CalibrationWindow(QtWidgets.QWidget): if self.nextStep == 2: # Load - self.save("load") + self.cal_save("load") self.nextStep = 3 continue_step = QtWidgets.QMessageBox( QtWidgets.QMessageBox.Information, @@ -762,7 +762,7 @@ class CalibrationWindow(QtWidgets.QWidget): if self.nextStep == 3: # Isolation - self.save("isolation") + self.cal_save("isolation") self.nextStep = 4 through_step = QtWidgets.QMessageBox( QtWidgets.QMessageBox.Information, @@ -784,7 +784,7 @@ class CalibrationWindow(QtWidgets.QWidget): if self.nextStep == 4: # Done - self.save("through") + self.cal_save("through") apply_step = QtWidgets.QMessageBox( QtWidgets.QMessageBox.Information, "Calibrate complete", From 3dca605297e36cf0d8ffc1c461f236d04ebd11f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20M=C3=BCller?= Date: Sat, 27 Jun 2020 21:37:55 +0200 Subject: [PATCH 2/3] bump version --- NanoVNASaver/About.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NanoVNASaver/About.py b/NanoVNASaver/About.py index f454478..e20905a 100644 --- a/NanoVNASaver/About.py +++ b/NanoVNASaver/About.py @@ -17,7 +17,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -VERSION = "0.3.0" +VERSION = "0.3.1" VERSION_URL = ( "https://raw.githubusercontent.com/" "NanoVNA-Saver/nanovna-saver/master/NanoVNASaver/About.py") From 76420abd5740907503dbc1d2bb916f6a710efd9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20M=C3=BCller?= Date: Sat, 27 Jun 2020 21:48:28 +0200 Subject: [PATCH 3/3] Updated version and changelog --- CHANGELOG.md | 5 +++++ NanoVNASaver/About.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc4b2fd..100a448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +v0.3.1 +====== + +- fixed crash with calibration assistant + v0.3.0 ====== diff --git a/NanoVNASaver/About.py b/NanoVNASaver/About.py index e20905a..a260609 100644 --- a/NanoVNASaver/About.py +++ b/NanoVNASaver/About.py @@ -22,7 +22,7 @@ VERSION_URL = ( "https://raw.githubusercontent.com/" "NanoVNA-Saver/nanovna-saver/master/NanoVNASaver/About.py") -INFO_URL="https://github.com/NanoVNA-Saver/nanovna-saver" +INFO_URL = "https://github.com/NanoVNA-Saver/nanovna-saver" INFO = f"""NanoVNASaver {VERSION} Copyright (C) 2019, 2020 Rune B. Broberg @@ -34,4 +34,4 @@ This program is licensed under the GNU General Public License version 3 See {INFO_URL} for further details. """ -RELEASE_URL="https://github.com/NanoVNA-Saver/nanovna-saver" +RELEASE_URL = "https://github.com/NanoVNA-Saver/nanovna-saver"