From e50ac5702dca84347eade8a535ae1bec8dac40ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Wed, 20 Apr 2022 15:43:37 +0200 Subject: [PATCH] Version number increase + changelog --- CHANGELOG.md | 22 ++++++++++++++++------ Software/PC_Application/LibreVNA-GUI.pro | 2 +- Software/VNA_embedded/Makefile | 4 ++-- 3 files changed, 19 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d970278..024b8a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,22 @@ # Changelog -## v1.2.2 +## v1.3.0 -Mostly bugfixes along with the occasional new feature. - -- Additional graph features: - - Group delay option - - (Optionally) show units on all axes +Some new software features along with a few bug fixes. + +- New features: + - Allow multiple VNA/Signal generator/Spectrum analyzer tabs + - Software work-around to allow up to 65535 points per sweep + - Impedance renormalizetion (as de-embedding option) + - Waterfall plot + - CSV export options extended + - logarithmic sweeps (logarithmic frequency steps) + - Graph display improvements: + - (Optionally) show units on all axes + - Configurable font size + - New Y axis options: dBuV, linear magnitude, unwrapped phase, group delay + - Zoom feature for smith chart + - User-selectable IF frequencies - General bugfixes, among others: - Fixed valgrind issues (mostly uninitialized variables) diff --git a/Software/PC_Application/LibreVNA-GUI.pro b/Software/PC_Application/LibreVNA-GUI.pro index 48cc28b..29ce2de 100644 --- a/Software/PC_Application/LibreVNA-GUI.pro +++ b/Software/PC_Application/LibreVNA-GUI.pro @@ -316,5 +316,5 @@ RESOURCES += \ CONFIG += c++17 REVISION = $$system(git rev-parse HEAD) DEFINES += GITHASH=\\"\"$$REVISION\\"\" -DEFINES += FW_MAJOR=1 FW_MINOR=2 FW_PATCH=2 FW_SUFFIX=""#\\"\"-alpha.2\\"\" +DEFINES += FW_MAJOR=1 FW_MINOR=3 FW_PATCH=0 FW_SUFFIX=""#\\"\"-alpha.2\\"\" DEFINES -= _UNICODE UNICODE diff --git a/Software/VNA_embedded/Makefile b/Software/VNA_embedded/Makefile index 117c903..36b2829 100644 --- a/Software/VNA_embedded/Makefile +++ b/Software/VNA_embedded/Makefile @@ -100,8 +100,8 @@ MCU = $(CPU) -mthumb $(FLOAT-ABI) $(FPU) # C defines C_DEFS = \ -DFW_MAJOR=1 \ --DFW_MINOR=2 \ --DFW_PATCH=2 \ +-DFW_MINOR=3 \ +-DFW_PATCH=0 \ -DUSE_FULL_LL_DRIVER \ -DHW_REVISION="'B'" \ -D__weak="__attribute__((weak))" \