Skip to content

Commit f25bebb

Browse files
committed
update to 8.8.7
1 parent 87fe3dd commit f25bebb

File tree

15 files changed

+66
-65
lines changed

15 files changed

+66
-65
lines changed

1.hello-world/12.read-video-webpack/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import DBR from "dynamsoft-javascript-barcode";
99
/* When using your own license, uncomment the following line and specify your Organization ID. */
1010

1111
Dynamsoft.DBR.organizationID = "200000";
12-
Dynamsoft.DBR.handshakeCode = "200000-dbr_js_samples";
12+
Dynamsoft.DBR.handshakeCode = "200000-dbr_js_samples";
1313

1414
/* If you don't have a license yet, you can request a trial on this page: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=samples */
1515
/* For more information, please refer to https://www.dynamsoft.com/license-server/docs/about/licensefaq.html?ver=latest#how-to-use-a-trackable-license. */
@@ -24,7 +24,7 @@ DBR.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barc
2424

2525
let pScanner = null;
2626
if (document.getElementById('readBarcode')) {
27-
document.getElementById('readBarcode').onclick = async function() {
27+
document.getElementById('readBarcode').onclick = async function () {
2828
try {
2929
let scanner = await (pScanner = pScanner || DBR.BarcodeScanner.createInstance());
3030
scanner.onFrameRead = results => {

1.hello-world/3.read-video-angular/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,4 @@ Thumbs.db
4747

4848
# others
4949

50-
*-lock.json
5150
*.lock

1.hello-world/3.read-video-angular/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

1.hello-world/3.read-video-angular/src/app/barcode-scanner/barcode-scanner.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, OnInit, EventEmitter, Output, ElementRef } from '@angular/core';
2-
import DBR from 'dynamsoft-javascript-barcode'
2+
import DBR from '../dbr'
33
@Component({
44
selector: 'app-barcode-scanner',
55
templateUrl: './barcode-scanner.component.html',

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import DBR from "../dbr";
22
import React from 'react';
3-
import './BarcodeScanner.css';
43

54
class BarcodeScanner extends React.Component {
65
constructor(props) {

1.hello-world/4.read-video-react/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4301,10 +4301,10 @@ [email protected]:
43014301
resolved "https://registry.yarnpkg.com/dynamsoft-camera-enhancer/-/dynamsoft-camera-enhancer-2.0.3.tgz#a68ea225563f8e3888f552447693d7a2b5f97d4f"
43024302
integrity sha512-B8C72P2sg2wPPFQR/lDt1GT//qKamKonDYiIIN5DeIrRsSefw6hFraQly0nXCDGOxkyFfTVMZz7r8XS66Dwtug==
43034303

4304-
4305-
version "8.8.3"
4306-
resolved "https://registry.yarnpkg.com/dynamsoft-javascript-barcode/-/dynamsoft-javascript-barcode-8.8.3.tgz#ed47040a7e0623b387acb9fb229a9bba83c7b2ad"
4307-
integrity sha512-LL85kgfun5czDObFlvd7Kdm0o8Bl+76JhbaWyEGBuppCqt+qLI0ZeEmBQ91Ky3laVh+lsLEXLgiI34qFU0xzEg==
4304+
4305+
version "8.8.7"
4306+
resolved "https://registry.yarnpkg.com/dynamsoft-javascript-barcode/-/dynamsoft-javascript-barcode-8.8.7.tgz#54e84d586717380327c158a0822f12013e4a6090"
4307+
integrity sha512-Gm9vCuUQq7PJ2Am9u5w578/vAMvwVZle879r80eMfAtO7KR/CRKnNHO0mk7GOWHaQfb/Rjmtfu/IQ1iUbSNeOA==
43084308
dependencies:
43094309
dynamsoft-camera-enhancer "2.0.3"
43104310

1.hello-world/5.read-video-vue/src/components/BarcodeScanner.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
style="width:100%;height:100%;position:absolute;left:0;top:0;"></video>
1515
<canvas class="dbrScanner-cvs-drawarea" style="width:100%;height:100%;position:absolute;left:0;top:0;"></canvas>
1616
<div class="dbrScanner-cvs-scanarea" style="width:100%;height:100%;position:absolute;left:0;top:0;">
17-
<div class="dbrScanner-scanlight" style="display:none;width:100%;height:3%;position:absolute;animation:3s infinite dce-scanlight;border-radius:50%;box-shadow:0px 0px 2vw 1px #00e5ff;background:#fff;user-select:none;"></div>
17+
<div class="dbrScanner-scanlight" style="display:none;width:100%;height:3%;position:absolute;animation:3s infinite dbrScanner-scanlight;border-radius:50%;box-shadow:0px 0px 2vw 1px #00e5ff;background:#fff;user-select:none;"></div>
1818
</div>
1919
<select class="dce-sel-camera" style="margin:0 auto;position:absolute;left:0;top:0;"></select>
2020
<select class="dce-sel-resolution" style="position:absolute;left:0;top:20px;"></select>

1.hello-world/5.read-video-vue/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3264,10 +3264,10 @@ [email protected]:
32643264
resolved "https://registry.yarnpkg.com/dynamsoft-camera-enhancer/-/dynamsoft-camera-enhancer-2.0.3.tgz#a68ea225563f8e3888f552447693d7a2b5f97d4f"
32653265
integrity sha512-B8C72P2sg2wPPFQR/lDt1GT//qKamKonDYiIIN5DeIrRsSefw6hFraQly0nXCDGOxkyFfTVMZz7r8XS66Dwtug==
32663266

3267-
3268-
version "8.8.3"
3269-
resolved "https://registry.yarnpkg.com/dynamsoft-javascript-barcode/-/dynamsoft-javascript-barcode-8.8.3.tgz#ed47040a7e0623b387acb9fb229a9bba83c7b2ad"
3270-
integrity sha512-LL85kgfun5czDObFlvd7Kdm0o8Bl+76JhbaWyEGBuppCqt+qLI0ZeEmBQ91Ky3laVh+lsLEXLgiI34qFU0xzEg==
3267+
3268+
version "8.8.7"
3269+
resolved "https://registry.yarnpkg.com/dynamsoft-javascript-barcode/-/dynamsoft-javascript-barcode-8.8.7.tgz#54e84d586717380327c158a0822f12013e4a6090"
3270+
integrity sha512-Gm9vCuUQq7PJ2Am9u5w578/vAMvwVZle879r80eMfAtO7KR/CRKnNHO0mk7GOWHaQfb/Rjmtfu/IQ1iUbSNeOA==
32713271
dependencies:
32723272
dynamsoft-camera-enhancer "2.0.3"
32733273

1.hello-world/7.read-video-nextjs/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -907,10 +907,10 @@ [email protected]:
907907
resolved "https://registry.yarnpkg.com/dynamsoft-camera-enhancer/-/dynamsoft-camera-enhancer-2.0.3.tgz#a68ea225563f8e3888f552447693d7a2b5f97d4f"
908908
integrity sha512-B8C72P2sg2wPPFQR/lDt1GT//qKamKonDYiIIN5DeIrRsSefw6hFraQly0nXCDGOxkyFfTVMZz7r8XS66Dwtug==
909909

910-
911-
version "8.8.3"
912-
resolved "https://registry.yarnpkg.com/dynamsoft-javascript-barcode/-/dynamsoft-javascript-barcode-8.8.3.tgz#ed47040a7e0623b387acb9fb229a9bba83c7b2ad"
913-
integrity sha512-LL85kgfun5czDObFlvd7Kdm0o8Bl+76JhbaWyEGBuppCqt+qLI0ZeEmBQ91Ky3laVh+lsLEXLgiI34qFU0xzEg==
910+
911+
version "8.8.7"
912+
resolved "https://registry.yarnpkg.com/dynamsoft-javascript-barcode/-/dynamsoft-javascript-barcode-8.8.7.tgz#54e84d586717380327c158a0822f12013e4a6090"
913+
integrity sha512-Gm9vCuUQq7PJ2Am9u5w578/vAMvwVZle879r80eMfAtO7KR/CRKnNHO0mk7GOWHaQfb/Rjmtfu/IQ1iUbSNeOA==
914914
dependencies:
915915
dynamsoft-camera-enhancer "2.0.3"
916916

1.hello-world/8.read-video-nuxtjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"nuxt": "^2.15.7"
1515
},
1616
"devDependencies": {}
17-
}
17+
}

0 commit comments

Comments
 (0)