Skip to content
Snippets Groups Projects
Commit 53102007 authored by Luca Longinotti's avatar Luca Longinotti
Browse files

bug-fix release 1.6.2.

parent 3327be77
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.22)
# Project name and version
PROJECT(
dv-runtime
VERSION 1.6.1
VERSION 1.6.2
LANGUAGES C CXX)
OPTION(DVR_ENABLE_TCMALLOC "Use Google Perftools' TCMalloc (fast memory allocation, heap checking/profiling)." ON)
......
Release 1.6.2 - 25.07.2023
BUG FIXES
- Accumulator: don't use deprecated functions and APIs from dv-processing.
- Calibration: improved chessboard pattern search area calculation.
- Cameras: properly handle exceptions during camera initialization.
- fmt formatting library: compatible with fmt 10.0.
- Network Outputs: fix maxDataBacklog feature, only allow new data after
last data confirmed as sent.
- Visualizer: improve error checking.
- Config: if configuration file passed via -c command-line parameter,
always put it as 'saveFile' (if previously empty), even if the file
doesn't exist yet, allowing for successful save on shutdown behavior.
- Modules: force back memory to OS on module destruction.
- Types: add missing dv-processing data types to type system.
Release 1.6.1 - 21.12.2022
BUG FIXES
......
......@@ -7,7 +7,7 @@
*/
#define DV_RUNTIME_VERSION_MAJOR 1
#define DV_RUNTIME_VERSION_MINOR 6
#define DV_RUNTIME_VERSION_PATCH 1
#define DV_RUNTIME_VERSION_PATCH 2
#define DV_RUNTIME_VERSION \
((DV_RUNTIME_VERSION_MAJOR * 10000) + (DV_RUNTIME_VERSION_MINOR * 100) + DV_RUNTIME_VERSION_PATCH)
......@@ -19,7 +19,7 @@
/**
* dv-runtime version string.
*/
#define DV_RUNTIME_VERSION_STRING "1.6.1"
#define DV_RUNTIME_VERSION_STRING "1.6.2"
namespace dv::runtime {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment