Version bump and changelog
This commit is contained in:
parent
38da235175
commit
a3223aa08c
20
CHANGELOG.md
20
CHANGELOG.md
@ -1,6 +1,26 @@
|
||||
# Changelog
|
||||
|
||||
## v1.5.1
|
||||
|
||||
Mostly bugfixes with only minor new features
|
||||
|
||||
- New features:
|
||||
- Z0 of through standard now adjustable
|
||||
- Option to automatically adjust the span to the active calibration
|
||||
- Bugfixes:
|
||||
- Make De-embedding menu visible on MacOS
|
||||
- Detection of handling of LibreCAL in the automatic calibration dialog
|
||||
- Allow updates of devices with older firmwares (a matching older GUI version had to be used previously)
|
||||
- Fix port excitation when not all S-parameters are measured
|
||||
- Do not use DFT in spectrum analyzer when in zero span mode
|
||||
- Readback of certain GUI values on Windows now correct (was stuck on 0 before)
|
||||
- Prevent crash when disconnecting the device while a dialog was open
|
||||
- Prevent occasional crash at the end of calibration measurements
|
||||
- Fix spikes in sweep when a frequency calibration is set
|
||||
- Improve sample timing between ADC and FPGA (resulted in very noisy traces on some devices)
|
||||
|
||||
## v1.5.0
|
||||
|
||||
- New features:
|
||||
- Further abstraction from the LibreVNA hardware. The GUI now supports VNAs with up to 8 ports
|
||||
- Capsulation of communication to the hardware inside of the DeviceDriver class. This simplifies the integration of drivers for other equipment
|
||||
|
@ -395,5 +395,5 @@ QMAKE_CXXFLAGS += -Wno-deprecated -Wno-deprecated-declarations -Wno-deprecated-c
|
||||
CONFIG += c++17
|
||||
REVISION = $$system(git rev-parse HEAD)
|
||||
DEFINES += GITHASH=\\"\"$$REVISION\\"\"
|
||||
DEFINES += FW_MAJOR=1 FW_MINOR=5 FW_PATCH=0 FW_SUFFIX=""
|
||||
DEFINES += FW_MAJOR=1 FW_MINOR=5 FW_PATCH=1 FW_SUFFIX=""
|
||||
DEFINES -= _UNICODE UNICODE
|
||||
|
@ -44,7 +44,7 @@
|
||||
<listOptionValue builtIn="false" value="_SNK"/>
|
||||
<listOptionValue builtIn="false" value="FW_MAJOR=1"/>
|
||||
<listOptionValue builtIn="false" value="FW_MINOR=5"/>
|
||||
<listOptionValue builtIn="false" value="FW_PATCH=0"/>
|
||||
<listOptionValue builtIn="false" value="FW_PATCH=1"/>
|
||||
<listOptionValue builtIn="false" value="HW_REVISION='B'"/>
|
||||
<listOptionValue builtIn="false" value="USE_FULL_LL_DRIVER"/>
|
||||
<listOptionValue builtIn="false" value="USE_HAL_DRIVER"/>
|
||||
@ -91,7 +91,7 @@
|
||||
<listOptionValue builtIn="false" value="DEBUG"/>
|
||||
<listOptionValue builtIn="false" value="FW_MAJOR=1"/>
|
||||
<listOptionValue builtIn="false" value="FW_MINOR=5"/>
|
||||
<listOptionValue builtIn="false" value="FW_PATCH=0"/>
|
||||
<listOptionValue builtIn="false" value="FW_PATCH=1"/>
|
||||
<listOptionValue builtIn="false" value="HW_REVISION='B'"/>
|
||||
<listOptionValue builtIn="false" value="USE_FULL_LL_DRIVER"/>
|
||||
<listOptionValue builtIn="false" value="USE_HAL_DRIVER"/>
|
||||
|
@ -101,7 +101,7 @@ MCU = $(CPU) -mthumb $(FLOAT-ABI) $(FPU)
|
||||
C_DEFS = \
|
||||
-DFW_MAJOR=1 \
|
||||
-DFW_MINOR=5 \
|
||||
-DFW_PATCH=0 \
|
||||
-DFW_PATCH=1 \
|
||||
-DDEBUG \
|
||||
-DUSE_FULL_LL_DRIVER \
|
||||
-DHW_REVISION="'B'" \
|
||||
|
Loading…
Reference in New Issue
Block a user