You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`barcodeFormats`(optional) |`EnumBarcodeFormat`\|`Array<EnumBarcodeFormat>`|`N/A`|[EnumBarcodeFormat](https://www.dynamsoft.com/capture-vision/docs/core/enums/barcode-reader/barcode-format.html?lang=js&product=dbr) or an array of `EnumBarcodeFormat` specifying the formats to recognize. |
149
151
|`duplicateForgetTime`(optional) |`number`|`3000`| Time interval in milliseconds before duplicate barcodes can be reported again. |
150
152
|`showPoweredByDynamsoft`(optional) |`boolean`|`true`| Whether to show the "powered by" message. |
153
+
|`autoStartCapturing`(optional) |`boolean`|`true`| Whether to start capturing directly after opening the camera. |
151
154
|`container`(optional) |`HTMLElement`\|`string`|`N/A`| A container element or selector for rendering the scanner and/or result view. |
152
155
|`showResultView`(optional) |`boolean`|`true`| Whether to display a result view in SM_MULTI_UNIQUE mode. |
153
156
|`showUploadImageButton`(optional) |`boolean`|`false`| Determines the visibility of the "uploadImage" button that allows the user to upload an image for decoding. |
// The path to your custom JSON template that defines the scanning process.
174
178
templateFilePath:'./DBR-PresetTemplates.json',
175
179
// engineResourcePaths typically is only assigned when using a framework like React/Angular/Vue where the resources are not in the same location as the script reference.
// The container for rendering the scanner and/or result view. Note that ResultView is only valid for SM_MULTI_UNIQUE mode. If not specified, a full-viewport default UI will be created.
Copy file name to clipboardExpand all lines: programming/javascript/release-notes/js-11.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,27 @@ noTitleIndex: true
10
10
11
11
# Release Notes for Dynamsoft Barcode Reader JavaScript SDK
12
12
13
+
## 11.0.6000 (08/14/2025)
14
+
15
+
### New
16
+
17
+
- Introduced new samples:
18
+
19
+
-[`Pick One to Fill`](https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/main/barcode-scanner-api-samples/scan-single-barcode/pick-one-to-fill/index.html) - [run↗](https://demo.dynamsoft.com/samples/dbr/js/barcode-scanner-api-samples/scan-single-barcode/pick-one-to-fill/index.html?utm_source=sampleReadme): Pick one and auto-fill fields by simply opening the camera and scanning a group of barcodes.
20
+
-[`Use Customized Template`](https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/main/barcode-scanner-api-samples/scan-single-barcode/use-customized-template/index.html) - [run↗](https://demo.dynamsoft.com/samples/dbr/js/barcode-scanner-api-samples/scan-single-barcode/use-customized-template/index.html?utm_source=sampleReadme): Use different customized templates for scanning various barcode types.
21
+
-[`Batch Inventory`](https://github.com/Dynamsoft/barcode-reader-javascript-samples/blob/main/barcode-scanner-api-samples/scan-multiple-barcodes/batch-inventory/index.html) - [run↗](https://demo.dynamsoft.com/samples/dbr/js/barcode-scanner-api-samples/scan-multiple-barcodes/batch-inventory/index.html?utm_source=sampleReadme): An inventory management tool scan barcodes in batches and provide real-time analysis of the scanned data.
22
+
-[`Read and Parse GS1-AI`](https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/main/foundational-api-samples/use-case/read-and-parse-GS1-AI/index.html) - [run↗](https://demo.dynamsoft.com/samples/dbr/js/foundational-api-samples/use-case/read-and-parse-GS1-AI/index.html?utm_source=sampleReadme): Read GS1 Application Identifier (AI) barcode and parse its structured data.
23
+
24
+
- Template Version Validation: Introduced version checking for templates to prevent compatibility issues and mismatches.
25
+
26
+
### Changed
27
+
28
+
- License Validation Behavior: Instead of stopping execution immediately on an invalid license module, the library now continues processing and returns results from modules with valid licenses. An warning is still reported to indicate the license issue.
29
+
30
+
### Fixed
31
+
32
+
- Fixed various minor bugs and improved overall stability.
0 commit comments