Skip to content

Commit 01d01c1

Browse files
committed
update to 8.2.5
1 parent bacce3b commit 01d01c1

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

1.hello-world/1.minimum-code.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width,initial-scale=1.0">
77
<title>Dynamsoft Barcode Reader Sample - Hello World (Decoding via Camera)</title>
8-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.2.3/dist/dbr.js"></script>
8+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.2.5/dist/dbr.js"></script>
99
</head>
1010

1111
<body>

1.hello-world/3.read-video-angular/src/app/dbr.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import DBR from "dynamsoft-javascript-barcode";
99
/* When using your own license, please uncomment the following lines and fill in your own information. */
1010
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
1111

12-
// DBR..BarcodeReader.organizationID = "YOUR-ORGANIZATION-ID";
13-
// DBR..BarcodeReader.handshakeCode = "A-SPECIFIC-HANDSHAKECODE";
14-
// DBR..BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15-
// DBR..BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
12+
// DBR.BarcodeReader.organizationID = "YOUR-ORGANIZATION-ID";
13+
// DBR.BarcodeReader.handshakeCode = "A-SPECIFIC-HANDSHAKECODE";
14+
// DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15+
// DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
1616

1717
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
1818

19-
// DBR..BarcodeReader.productKeys = "YOUR-PRODUCT-KEY";
19+
// DBR.BarcodeReader.productKeys = "YOUR-PRODUCT-KEY";
2020

2121
/** LICENSE ALERT - THE END */
2222

1.hello-world/4.read-video-react/src/dbr.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import DBR from "dynamsoft-javascript-barcode";
99
/* When using your own license, please uncomment the following lines and fill in your own information. */
1010
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
1111

12-
// DBR..BarcodeReader.organizationID = "YOUR-ORGANIZATION-ID";
13-
// DBR..BarcodeReader.handshakeCode = "A-SPECIFIC-HANDSHAKECODE";
14-
// DBR..BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15-
// DBR..BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
12+
// DBR.BarcodeReader.organizationID = "YOUR-ORGANIZATION-ID";
13+
// DBR.BarcodeReader.handshakeCode = "A-SPECIFIC-HANDSHAKECODE";
14+
// DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15+
// DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
1616

1717
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
1818

19-
// DBR..BarcodeReader.productKeys = "YOUR-PRODUCT-KEY";
19+
// DBR.BarcodeReader.productKeys = "YOUR-PRODUCT-KEY";
2020

2121
/** LICENSE ALERT - THE END */
2222

1.hello-world/5.read-video-vue/src/dbr.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import DBR from "dynamsoft-javascript-barcode";
99
/* When using your own license, please uncomment the following lines and fill in your own information. */
1010
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
1111

12-
// DBR..BarcodeReader.organizationID = "YOUR-ORGANIZATION-ID";
13-
// DBR..BarcodeReader.handshakeCode = "A-SPECIFIC-HANDSHAKECODE";
14-
// DBR..BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15-
// DBR..BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
12+
// DBR.BarcodeReader.organizationID = "YOUR-ORGANIZATION-ID";
13+
// DBR.BarcodeReader.handshakeCode = "A-SPECIFIC-HANDSHAKECODE";
14+
// DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15+
// DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
1616

1717
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
1818

19-
// DBR..BarcodeReader.productKeys = "YOUR-PRODUCT-KEY";
19+
// DBR.BarcodeReader.productKeys = "YOUR-PRODUCT-KEY";
2020

2121
/** LICENSE ALERT - THE END */
2222

2.ui-tweaking/1.read-video-show-result.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width,initial-scale=1.0">
77
<title>Dynamsoft Barcode Reader Sample - Video Decoding</title>
8-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.2.3/dist/dbr.js"></script>
8+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.2.5/dist/dbr.js"></script>
99
</head>
1010

1111
<body>

3.settings/0.all-settings/src/dbr.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import DBR from "dynamsoft-javascript-barcode";
99
/* When using your own license, please uncomment the following lines and fill in your own information. */
1010
/* For more information, please refer to https://www.dynamsoft.com/license-tracking/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
1111

12-
// DBR..BarcodeReader.organizationID = "YOUR-ORGANIZATION-ID";
13-
// DBR..BarcodeReader.handshakeCode = "A-SPECIFIC-HANDSHAKECODE";
14-
// DBR..BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15-
// DBR..BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
12+
// DBR.BarcodeReader.organizationID = "YOUR-ORGANIZATION-ID";
13+
// DBR.BarcodeReader.handshakeCode = "A-SPECIFIC-HANDSHAKECODE";
14+
// DBR.BarcodeReader.sessionPassword = "PASSWORD-TO-PROTECT-YOUR-LICENSE"; // Important field to protect your license.
15+
// DBR.BarcodeReader.licenseServer = ["YOUR-OWN-MAIN-LTS", "YOUR-OWN-STANDBY-LTS"]; // Ignore this line if you are using Dynamsoft-hosting LTS
1616

1717
/* The API "productKeys" is an alternative way to license the library, the major difference is that it does not require a network. Contact support@dynamsoft.com for more information. */
1818

19-
// DBR..BarcodeReader.productKeys = "YOUR-PRODUCT-KEY";
19+
// DBR.BarcodeReader.productKeys = "YOUR-PRODUCT-KEY";
2020

2121
/** LICENSE ALERT - THE END */
2222

0 commit comments

Comments
 (0)