File tree Expand file tree Collapse file tree 10 files changed +64
-4
lines changed
_includes/sidelist-programming Expand file tree Collapse file tree 10 files changed +64
-4
lines changed Original file line number Diff line number Diff line change 1- < li lang ="{{include.lang}} "> < a href ="{{ site.dbr_parameters }}structure-and-interfaces-of-parameters .html " class ="otherLinkColour "> Parameters</ a >
1+ < li lang ="{{include.lang}} "> < a href ="{{ site.dcvb_parameters }}file/index .html " class ="otherLinkColour "> Parameters</ a >
22 < ul >
33 < li > < a href ="{{ site.dcvb_parameters }}file/capture-vision-template.html " class ="otherLinkColour "> CaptureVisionTemplate Object</ a >
44 < ul >
247247 < li > < a href ="{{ site.dcvb_parameters_reference }}barcode-format-specification/australian-post-encoding-table.html " class ="otherLinkColour "> AustralianPostEncodingTable</ a > </ li >
248248 < li > < a href ="{{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-angle-range-array.html " class ="otherLinkColour "> BarcodeAngleRangeArray</ a > </ li >
249249 < li > < a href ="{{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-bytes-length-range-array.html " class ="otherLinkColour "> BarcodeBytesLengthRangeArray</ a > </ li >
250+ < li > < a href ="{{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-format-ids.html " class ="otherLinkColour "> BarcodeFormatIds</ a > </ li >
250251 < li > < a href ="{{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-height-range-array.html " class ="otherLinkColour "> BarcodeHeightRangeArray</ a > </ li >
251252 < li > < a href ="{{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-text-length-range-array.html " class ="otherLinkColour "> BarcodeTextLengthRangeArray</ a > </ li >
252253 < li > < a href ="{{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-text-regex-pattern.html " class ="otherLinkColour "> BarcodeTextRegExPattern</ a > </ li >
285286 < ul >
286287 < li > < a href ="{{ site.dcvb_parameters }}file/auxiliary/capture-vision-model.html#directorypath " class ="otherLinkColour "> DirectoryPath</ a > </ li >
287288 < li > < a href ="{{ site.dcvb_parameters }}file/auxiliary/capture-vision-model.html#maxmodelinstances " class ="otherLinkColour "> MaxModelInstances</ a > </ li >
288- < li > < a href ="{{ site.dcvb_parameters }}file/auxiliary/capture-vision-model.html#modelargs " class ="otherLinkColour "> ModelArgs</ a > </ li >
289+ < li > < a href ="{{ site.dcvb_parameters }}file/auxiliary/capture-vision-model.html#modelargs " class ="otherLinkColour "> ModelArgs</ a >
289290 < ul >
290291 < li > < a href ="{{ site.dcvb_parameters }}file/auxiliary/char-set.html# " class ="otherLinkColour "> CharSet Object</ a > </ li >
291292 </ ul >
293+ </ li >
292294 < li > < a href ="{{ site.dcvb_parameters }}file/auxiliary/capture-vision-model.html#name " class ="otherLinkColour "> Name</ a > </ li >
293295 </ ul >
294296 </ li >
Original file line number Diff line number Diff line change @@ -8,6 +8,20 @@ needGenerateH3Content: false
88
99# Release Notes for C++ Edition - 11.x
1010
11+ ## 11.2.5000 (12/16/2025)
12+
13+ This release includes security maintenance updates to ensure continued protection of the product.
14+
15+ ### Security Updates
16+
17+ - Updated third-party libraries to incorporate the latest security fixes.
18+
19+ ### Bug Fixes
20+
21+ - Fixed memory leak, crash, and hang issues in various scenarios.
22+ - Improved stability in multi-threading operations.
23+
24+
1125## 11.2.1000 (10/14/2025)
1226
1327### 🎉Milestone Release
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ needAutoGenerateSidebar: false
88
99# Release Notes - C++ Edition
1010
11+ - [ 11.2.5000 (12/16/2025)] ({{ site.dbr_cpp_release_notes_v11 }}cpp-11.html#1125000-12162025)
1112- [ 11.2.1000 (10/14/2025)] ({{ site.dbr_cpp_release_notes_v11 }}cpp-11.html#1121000-10142025)
1213- [ 11.0.6000 (08/06/2025)] ({{ site.dbr_cpp_release_notes_v11 }}cpp-11.html#1106000-08062025)
1314- [ 11.0.4000 (07/15/2025)] ({{ site.dbr_cpp_release_notes_v11 }}cpp-11.html#1104000-07152025)
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ delete cvRouter, cvRouter = NULL;
1651651 . In Visual Studio, set the solution to build as ` Release|x64 ` .
1661662 . Build the project to generate the program ` DBRCPPSample.exe ` .
1671673 . Copy ** ALL** ` *.dll ` files under ` [INSTALLATION FOLDER]/DynamsoftBarcodeReader/Dist/Lib/Windows/x64 ` to the same folder as the ` DBRCPPSample.exe ` .
168- 4 . Copy the folder ` [INSTALLATION FOLDER]/DynamsoftBarcodeReader/Dist/Templates ` to the same folder as the ` DBRCPPSample.exe ` .
168+ 4 . Copy the folder ` Templates ` and ` Models ` under ` [INSTALLATION FOLDER]/DynamsoftBarcodeReader/Dist/ ` to the same folder as the ` DBRCPPSample.exe ` .
1691695 . Run the program ` DBRCPPSample.exe ` .
170170
171171#### For Linux
@@ -177,10 +177,11 @@ delete cvRouter, cvRouter = NULL;
177177 g++ -o DBRCPPSample DBRCPPSample.cpp -lDynamsoftCaptureVisionRouter -lDynamsoftLicense -lDynamsoftCore -lDynamsoftUtility -L ../Dist/Lib/Linux/x64 -Wl,-rpath=../Dist/Lib/Linux/x64 -std=c++11
178178 ```
179179
180- 3. Copy the preset template:
180+ 3. Copy the preset template and model files :
181181
182182 ` ` ` bash
183183 cp -r ../Dist/Templates ../Dist/Lib/Linux/x64/
184+ cp -r ../Dist/Models ../Dist/Lib/Linux/x64/
184185 ` ` `
185186
1861874. Run the program:
Original file line number Diff line number Diff line change @@ -8,6 +8,19 @@ needGenerateH3Content: false
88
99# Release Notes for .NET Edition - 11.x
1010
11+ ## 11.2.5000 (12/16/2025)
12+
13+ This release includes security maintenance updates to ensure continued protection of the product.
14+
15+ ### Security Updates
16+
17+ - Updated third-party libraries to incorporate the latest security fixes.
18+
19+ ### Bug Fixes
20+
21+ - Fixed memory leak, crash, and hang issues in various scenarios.
22+ - Improved stability in multi-threading operations.
23+
1124## 11.2.1000 (10/14/2025)
1225
1326### 🎉Milestone Release
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ needAutoGenerateSidebar: false
88
99# Release Notes for .NET Edition
1010
11+ - [ 11.2.5000 (12/16/2025)] ({{ site.dbr_dotnet_release_notes_v11 }}dotnet-11.html#1125000-12162025)
1112- [ 11.2.1000 (10/14/2025)] ({{ site.dbr_dotnet_release_notes_v11 }}dotnet-11.html#1121000-10142025)
1213- [ 11.0.6000 (08/06/2025)] ({{ site.dbr_dotnet_release_notes_v11 }}dotnet-11.html#1106000-08062025)
1314- [ 11.0.4000 (07/15/2025)] ({{ site.dbr_dotnet_release_notes_v11 }}dotnet-11.html#1104000-07152025)
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ needAutoGenerateSidebar: false
88
99# Release Notes for Java Edition
1010
11+ - [ 11.2.5000 (12/16/2025)] ({{ site.dbr_java_release_notes_v11 }}java-11.html#1125000-12162025)
1112- [ 11.2.1100 (10/28/2025)] ({{ site.dbr_java_release_notes_v11 }}java-11.html#1121100-10282025)
1213- [ 11.2.1000 (10/14/2025)] ({{ site.dbr_java_release_notes_v11 }}java-11.html#1121000-10142025)
1314- [ 11.0.6100 (08/19/2025)] ({{ site.dbr_java_release_notes_v11 }}java-11.html#1106100-08192025)
Original file line number Diff line number Diff line change @@ -8,6 +8,19 @@ needGenerateH3Content: false
88
99# Release Notes for Java Edition - 11.x
1010
11+ ## 11.2.5000 (12/16/2025)
12+
13+ This release includes security maintenance updates to ensure continued protection of the product.
14+
15+ ### Security Updates
16+
17+ - Updated third-party libraries to incorporate the latest security fixes.
18+
19+ ### Bug Fixes
20+
21+ - Fixed memory leak, crash, and hang issues in various scenarios.
22+ - Improved stability in multi-threading operations.
23+
1124## 11.2.1100 (10/28/2025)
1225
1326### Fixed
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ needAutoGenerateSidebar: false
88
99# Release Notes for Python Edition
1010
11+ - [ 11.2.5000 (12/16/2025)] ({{ site.dbr_python_release_notes_v11 }}python-11.html#1125000-12162025)
1112- [ 11.2.1000 (10/14/2025)] ({{ site.dbr_python_release_notes_v11 }}python-11.html#1121000-10142025)
1213- [ 11.0.6000 (08/06/2025)] ({{ site.dbr_python_release_notes_v11 }}python-11.html#1106000-08062025)
1314- [ 11.0.4000 (07/15/2025)] ({{ site.dbr_python_release_notes_v11 }}python-11.html#1104000-07152025)
Original file line number Diff line number Diff line change @@ -8,6 +8,19 @@ needGenerateH3Content: false
88
99# Release Notes for Python Edition - 11.x
1010
11+ ## 11.2.5000 (12/16/2025)
12+
13+ This release includes security maintenance updates to ensure continued protection of the product.
14+
15+ ### Security Updates
16+
17+ - Updated third-party libraries to incorporate the latest security fixes.
18+
19+ ### Bug Fixes
20+
21+ - Fixed memory leak, crash, and hang issues in various scenarios.
22+ - Improved stability in multi-threading operations.
23+
1124## 11.2.1000 (10/14/2025)
1225
1326### 🎉Milestone Release
You can’t perform that action at this time.
0 commit comments