Skip to content

Commit 5fee370

Browse files
committed
Changelog + version bump
1 parent 65e1002 commit 5fee370

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## v1.6.5
4+
Long overdue release with several small improvements:
5+
6+
- Bugfixes:
7+
- handle calibration data from log sweeps
8+
- PLL algorithm improvements, fixes small frequency deviations which show up at low IF bandwidths
9+
- Various UI improvements
10+
- Quality of life improvements:
11+
- remember touchstone export settings
12+
- remember load/save paths
13+
- optionally prevent LibreCAL calibrations when temperature unstable
14+
- Dialog for viewing the active calibration model: Calibration->View error term model
15+
- Calibration can use already existing measurements (saves the user from attaching the calibrations standards again if the measurement is already available)
16+
- Improve marker handling when displayed at the very edge of a graph
17+
- Only load default calibration when initially connecting to a device, not when switching modes or closing dialogs
18+
- New features:
19+
- new SOL calibration type (calibrates reflections only, possible to calibrate both ports at the same time)
20+
- Experimental SVG export options for images
21+
- Restore to default option for device configuration
22+
- SCPI API improvements:
23+
- Set/get calibration kit metadata
24+
- Allow spaces in arguments (for file paths)
25+
- Support lower case for calkit file names
26+
- Query the position in the current sweep
27+
- New commands for editing calibration kit standards
28+
- New command for dwell time
29+
330
## v1.6.4
431

532
Critical bugfix for the embedded firmware:

Software/PC_Application/LibreVNA-GUI/LibreVNA-GUI.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,5 +435,5 @@ QMAKE_CXXFLAGS += -Wno-deprecated -Wno-deprecated-declarations -Wno-deprecated-c
435435
CONFIG += c++17
436436
REVISION = $$system(git rev-parse HEAD)
437437
DEFINES += GITHASH=\\"\"$$REVISION\\"\"
438-
DEFINES += FW_MAJOR=1 FW_MINOR=6 FW_PATCH=4 FW_SUFFIX=""
438+
DEFINES += FW_MAJOR=1 FW_MINOR=6 FW_PATCH=5 FW_SUFFIX=""
439439
DEFINES -= _UNICODE UNICODE

Software/VNA_embedded/.cproject

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<listOptionValue builtIn="false" value="_SNK"/>
4545
<listOptionValue builtIn="false" value="FW_MAJOR=1"/>
4646
<listOptionValue builtIn="false" value="FW_MINOR=6"/>
47-
<listOptionValue builtIn="false" value="FW_PATCH=4"/>
47+
<listOptionValue builtIn="false" value="FW_PATCH=5"/>
4848
<listOptionValue builtIn="false" value="HW_REVISION='B'"/>
4949
<listOptionValue builtIn="false" value="USE_FULL_LL_DRIVER"/>
5050
<listOptionValue builtIn="false" value="USE_HAL_DRIVER"/>
@@ -91,7 +91,7 @@
9191
<listOptionValue builtIn="false" value="DEBUG"/>
9292
<listOptionValue builtIn="false" value="FW_MAJOR=1"/>
9393
<listOptionValue builtIn="false" value="FW_MINOR=6"/>
94-
<listOptionValue builtIn="false" value="FW_PATCH=4"/>
94+
<listOptionValue builtIn="false" value="FW_PATCH=5"/>
9595
<listOptionValue builtIn="false" value="HW_REVISION='B'"/>
9696
<listOptionValue builtIn="false" value="USE_FULL_LL_DRIVER"/>
9797
<listOptionValue builtIn="false" value="USE_HAL_DRIVER"/>

Software/VNA_embedded/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ MCU = $(CPU) -mthumb $(FLOAT-ABI) $(FPU)
101101
C_DEFS = \
102102
-DFW_MAJOR=1 \
103103
-DFW_MINOR=6 \
104-
-DFW_PATCH=4 \
104+
-DFW_PATCH=5 \
105105
-DDEBUG \
106106
-DUSE_FULL_LL_DRIVER \
107107
-DHW_REVISION="'B'" \

0 commit comments

Comments
 (0)