Skip to content

Commit

Permalink
Version number increased, added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jankae committed Dec 5, 2021
1 parent 2ea668a commit 1c6a1ab
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## v1.2.1

Mostly bugfixes along with the occasional new feature.

- Calibration:
- File format changed to json
- Multiple measurements can be taken/deleted at the same time
- Calibration kit allows separate male/female standards
- configurable Z0 for short/open
- SCPI commands:
- load/save calibration files
- export to touchstone file format directly
- additional command for reading trace data
- fix typo in documentation
- UI improvements:
- Additional Y-axis options: Reactance/Real/Imaginary
- Graphs look a bit nicer
- Configurable line width for graphs
- finally added an application logo
- General bugfixes, among others:
- PLL divider calculation fixed for certain frequencies
- Improved USB buffer handling
- Better error handling when opening invalid files
- Various bugs when adding/deleting markers
- graph autoscaling with invisible traces

## v1.2.0

- Additional SCPI commands
Expand Down
2 changes: 1 addition & 1 deletion Software/PC_Application/LibreVNA-GUI.pro
Original file line number Diff line number Diff line change
Expand Up @@ -304,5 +304,5 @@ RESOURCES += \
CONFIG += c++17
REVISION = $$system(git rev-parse HEAD)
DEFINES += GITHASH=\\"\"$$REVISION\\"\"
DEFINES += FW_MAJOR=1 FW_MINOR=2 FW_PATCH=0 FW_SUFFIX=""#\\"\"-alpha.2\\"\"
DEFINES += FW_MAJOR=1 FW_MINOR=2 FW_PATCH=1 FW_SUFFIX=""#\\"\"-alpha.2\\"\"
DEFINES -= _UNICODE UNICODE
2 changes: 1 addition & 1 deletion Software/VNA_embedded/.cproject
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@

<listOptionValue builtIn="false" value="FW_MAJOR=1"/>

<listOptionValue builtIn="false" value="FW_PATCH=0"/>
<listOptionValue builtIn="false" value="FW_PATCH=1"/>

<listOptionValue builtIn="false" value="FW_MINOR=2"/>

Expand Down
4 changes: 2 additions & 2 deletions Software/VNA_embedded/.settings/language.settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>

<provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1307432939745961523" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1365419078466866483" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">

<language-scope id="org.eclipse.cdt.core.gcc"/>

Expand All @@ -33,7 +33,7 @@

<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>

<provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1307432939745961523" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1365419078466866483" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">

<language-scope id="org.eclipse.cdt.core.gcc"/>

Expand Down
2 changes: 1 addition & 1 deletion Software/VNA_embedded/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ MCU = $(CPU) -mthumb $(FLOAT-ABI) $(FPU)
C_DEFS = \
-DFW_MAJOR=1 \
-DFW_MINOR=2 \
-DFW_PATCH=0 \
-DFW_PATCH=1 \
-DUSE_FULL_LL_DRIVER \
-DHW_REVISION="'B'" \
-D__weak="__attribute__((weak))" \
Expand Down

0 comments on commit 1c6a1ab

Please sign in to comment.