Skip to content

Commit 541b1d0

Browse files
committed
11.4.3000
1 parent b1d6f0e commit 541b1d0

61 files changed

Lines changed: 100 additions & 100 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/skills/dbr-js-sample-creator/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ your task. You do not need to understand these files — they are written for th
4949

5050
## SDK at a Glance
5151

52-
- **Package:** `dynamsoft-barcode-reader-bundle@11.4.2001`
53-
- **CDN:** `https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js`
52+
- **Package:** `dynamsoft-barcode-reader-bundle@11.4.3000`
53+
- **CDN:** `https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js`
5454
- **npm:** `npm install dynamsoft-barcode-reader-bundle`
5555
- **Trial license:** [Get a 30-day free trial](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=sampleReadme)
5656

.github/skills/dbr-js-sample-creator/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description: >
1515
# DBR JavaScript Sample Creator
1616

1717
This skill helps you write JavaScript/TypeScript/HTML sample code using the
18-
`dynamsoft-barcode-reader-bundle` SDK (version **11.4.2001**). The SDK can be loaded via CDN
18+
`dynamsoft-barcode-reader-bundle` SDK (version **11.4.3000**). The SDK can be loaded via CDN
1919
(no build step) or installed as an npm package for framework projects.
2020

2121
## Before You Start
@@ -53,7 +53,7 @@ Image/Camera Input → CaptureVisionRouter (with template) → CapturedResult
5353

5454
```html
5555
<!-- Barcode-only bundle (smaller) -->
56-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js"></script>
5757

5858
<!-- Full DCV bundle (includes ImageEditorView, QuadDrawingItem, DrawingLayer) -->
5959
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-bundle@3.4.2001/dist/dcv.bundle.js"></script>
@@ -77,7 +77,7 @@ All APIs are on the global `Dynamsoft` object:
7777
import {
7878
CoreModule, LicenseManager, CaptureVisionRouter,
7979
CameraView, CameraEnhancer, MultiFrameResultCrossFilter,
80-
} from "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.mjs";
80+
} from "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.mjs";
8181

8282
CoreModule.engineResourcePaths.rootDirectory = "https://cdn.jsdelivr.net/npm/";
8383
```

.github/skills/dbr-js-sample-creator/evals/evals.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"expected_output": "A single HTML file that loads the SDK from CDN, calls initLicense, creates CameraView + CameraEnhancer + CaptureVisionRouter, adds a result receiver and dedup filter, appends the camera UI to a container div, opens the camera, and starts capturing.",
88
"files": [],
99
"expectations": [
10-
"Loads SDK via CDN script tag: dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js",
10+
"Loads SDK via CDN script tag: dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js",
1111
"Calls Dynamsoft.License.LicenseManager.initLicense() with a license key",
1212
"Creates CameraView via Dynamsoft.DCE.CameraView.createInstance()",
1313
"Creates CameraEnhancer via Dynamsoft.DCE.CameraEnhancer.createInstance(cameraView)",
@@ -27,7 +27,7 @@
2727
"expected_output": "A single HTML file with a file input, that loads the SDK from CDN, calls initLicense, creates a CaptureVisionRouter, captures from the selected file using ReadBarcodes_ReadRateFirst, and displays results.",
2828
"files": [],
2929
"expectations": [
30-
"Loads SDK via CDN script tag: dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js",
30+
"Loads SDK via CDN script tag: dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js",
3131
"Calls Dynamsoft.License.LicenseManager.initLicense() with a license key",
3232
"Has an <input type='file'> element",
3333
"Creates CaptureVisionRouter once (not inside the event handler)",
@@ -65,7 +65,7 @@
6565
"files": [],
6666
"expectations": [
6767
"Uses <script type='module'>",
68-
"Imports from 'https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.mjs'",
68+
"Imports from 'https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.mjs'",
6969
"Sets CoreModule.engineResourcePaths.rootDirectory = 'https://cdn.jsdelivr.net/npm/'",
7070
"Calls LicenseManager.initLicense() with a license key",
7171
"Creates CameraView, CameraEnhancer, CaptureVisionRouter instances",

.github/skills/dbr-js-sample-creator/references/api-sdk.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DBR JavaScript Sample Creator — API Reference: SDK Loading & Core
22

3-
**SDK version:** `dynamsoft-barcode-reader-bundle@11.4.2001`
3+
**SDK version:** `dynamsoft-barcode-reader-bundle@11.4.3000`
44

55
---
66

@@ -10,7 +10,7 @@
1010

1111
```html
1212
<!-- From CDN (recommended) -->
13-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js"></script>
13+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js"></script>
1414

1515
<!-- Self-hosted (after downloading the package) -->
1616
<!-- <script src="../dist/dbr.bundle.js"></script> -->
@@ -30,7 +30,7 @@ import {
3030
CameraEnhancer,
3131
MultiFrameResultCrossFilter,
3232
EnumCapturedResultItemType,
33-
} from "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.mjs";
33+
} from "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.mjs";
3434

3535
// Required when using the CDN .mjs bundle — tells the SDK where to fetch WASM and resources
3636
CoreModule.engineResourcePaths.rootDirectory = "https://cdn.jsdelivr.net/npm/";

.github/skills/dbr-js-sample-creator/references/sample-patterns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Source: `hello-world.html`
1515
<meta charset="UTF-8" />
1616
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1717
<title>Dynamsoft Barcode Scanner Sample - Hello World (Decode via Camera)</title>
18-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js"></script>
18+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js"></script>
1919
</head>
2020
<body>
2121
<h1 class="barcode-scanner-title">Hello World (Scan Barcode via Camera)</h1>
@@ -177,7 +177,7 @@ Source: `frameworks/es6/es6.html`
177177
import {
178178
CoreModule, LicenseManager, CaptureVisionRouter,
179179
CameraView, CameraEnhancer, MultiFrameResultCrossFilter,
180-
} from "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.mjs";
180+
} from "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.mjs";
181181
182182
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9");
183183
CoreModule.engineResourcePaths.rootDirectory = "https://cdn.jsdelivr.net/npm/";

basics/hello-world.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<title>Dynamsoft Barcode Scanner Sample - Hello World (Decode via Camera)</title>
1111

1212
<!-- Include Dynamsoft Barcode Reader Bundle via CDN -->
13-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js"></script>
13+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js"></script>
1414
<!-- If the network is unstable or you prefer to self-host the SDK, uncomment the line below to load it locally -->
1515
<!-- <script src="../../dist/dbr.bundle.js"></script> -->
1616
</head>

basics/read-an-image.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link rel="canonical" href="https://demo.dynamsoft.com/Samples/DBR/JS/basics/read-an-image.html" />
1010
<title>Dynamsoft Barcode Reader Sample - Hello World (Read an Image)</title>
1111

12-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js"></script>
12+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js"></script>
1313
<!-- If the network is unstable or you prefer to self-host the SDK, uncomment the line below to load it locally -->
1414
<!-- <script src="../../dist/dbr.bundle.js"></script> -->
1515
</head>

basics/scan-a-single-barcode.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<title>Dynamsoft Barcode Scanner Sample - Scan a Single Barcode</title>
1111

1212
<!-- Include Dynamsoft Barcode Reader Bundle via CDN -->
13-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js"></script>
13+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.3000/dist/dbr.bundle.js"></script>
1414
<!-- If the network is unstable or you prefer to self-host the SDK, uncomment the line below to load it locally -->
1515
<!-- <script src="../../dist/dbr.bundle.js"></script> -->
1616
</head>

frameworks/angular/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[Angular](https://angular.dev/) is one of the most popular and mature JavaScript frameworks. Follow this guide to learn how to implement [Dynamsoft Barcode Reader JavaScript SDK](https://www.dynamsoft.com/barcode-reader/sdk-javascript/) (hereafter called "the library") into an Angular application. Note that in this sample, `TypeScript` is used.
44

5-
In this guide, we will be using [`dynamsoft-barcode-reader-bundle 11.4.2001`](https://www.npmjs.com/package/dynamsoft-barcode-reader-bundle/v/11.4.2001).
5+
In this guide, we will be using [`dynamsoft-barcode-reader-bundle 11.4.3000`](https://www.npmjs.com/package/dynamsoft-barcode-reader-bundle/v/11.4.3000).
66

77
> Note:
88
>
@@ -61,7 +61,7 @@ Below is the configuration used for this sample.
6161

6262
```cmd
6363
cd my-app
64-
npm install dynamsoft-barcode-reader-bundle@11.4.2001 -E
64+
npm install dynamsoft-barcode-reader-bundle@11.4.3000 -E
6565
```
6666

6767
## Start to implement
@@ -86,7 +86,7 @@ LicenseManager.initLicense('DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9', true);
8686
/**
8787
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=samples&product=dbr&package=js to get your own trial license good for 30 days.
8888
* Note that if you downloaded this sample from Dynamsoft while logged in, the above license key may already be your own 30-day trial license.
89-
* For more information, see https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/index.html?ver=11.4.2001&cVer=true#specify-the-license&utm_source=samples or contact support@dynamsoft.com.
89+
* For more information, see https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/index.html?ver=11.4.3000&cVer=true#specify-the-license&utm_source=samples or contact support@dynamsoft.com.
9090
* LICENSE ALERT - THE END
9191
*/
9292

frameworks/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@angular/platform-browser": "20.3.25",
1919
"@angular/platform-browser-dynamic": "20.3.25",
2020
"@angular/router": "20.3.25",
21-
"dynamsoft-barcode-reader-bundle": "11.4.2001",
21+
"dynamsoft-barcode-reader-bundle": "11.4.3000",
2222
"rxjs": "~7.8.0",
2323
"tslib": "^2.3.0",
2424
"zone.js": "~0.15.0"

0 commit comments

Comments
 (0)