Skip to content
GitLab
Next
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
dv-runtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
iniVation AG
dv-core
dv-runtime
Commits
53102007
Commit
53102007
authored
1 year ago
by
Luca Longinotti
Browse files
Options
Downloads
Patches
Plain Diff
bug-fix release 1.6.2.
parent
3327be77
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
ChangeLog
+17
-0
17 additions, 0 deletions
ChangeLog
include/dv-sdk/version.hpp
+2
-2
2 additions, 2 deletions
include/dv-sdk/version.hpp
with
20 additions
and
3 deletions
CMakeLists.txt
+
1
−
1
View file @
53102007
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
ChangeLog
+
17
−
0
View file @
53102007
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
...
...
This diff is collapsed.
Click to expand it.
include/dv-sdk/version.hpp
+
2
−
2
View file @
53102007
...
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment