Skip to content

Commit 3db1937

Browse files
author
Cube
authored
Merge pull request #134 from Dynamsoft/_dev
9.6.31
2 parents 3d2e423 + 3848d73 commit 3db1937

18 files changed

+66
-61
lines changed

Api Reference.url

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[InternetShortcut]
2-
URL=https://www.dynamsoft.com/barcode-reader/programming/javascript/api-reference/?ver=9.6.30
2+
URL=https://www.dynamsoft.com/barcode-reader/programming/javascript/api-reference/?ver=9.6.31

README.md

+30-30
Large diffs are not rendered by default.

dist/dbr-9.6.30.browser.worker.js renamed to dist/dbr-9.6.31.browser.worker.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
File renamed without changes.
Binary file not shown.

dist/dbr-9.6.30.standby.full.wasm.js renamed to dist/dbr-9.6.31.standby.full.wasm.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ function updateGlobalBufferAndViews(buf) {
456456
Module["HEAPF64"] = HEAPF64 = new Float64Array(buf);
457457
}
458458

459-
var DYNAMIC_BASE = 7173824, DYNAMICTOP_PTR = 1930784;
459+
var DYNAMIC_BASE = 7173904, DYNAMICTOP_PTR = 1930864;
460460

461461
var INITIAL_INITIAL_MEMORY = Module["INITIAL_MEMORY"] || 16777216;
462462

@@ -5739,9 +5739,9 @@ function _fd_write(fd, iov, iovcnt, pnum) {
57395739
}
57405740
}
57415741

5742-
var ___tm_current = 1930800;
5742+
var ___tm_current = 1930880;
57435743

5744-
var ___tm_timezone = (stringToUTF8("GMT", 1930848, 4), 1930848);
5744+
var ___tm_timezone = (stringToUTF8("GMT", 1930928, 4), 1930928);
57455745

57465746
function _gmtime_r(time, tmPtr) {
57475747
var date = new Date(HEAP32[time >> 2] * 1e3);
Binary file not shown.

dist/dbr-9.6.30.standby.wasm.js renamed to dist/dbr-9.6.31.standby.wasm.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ function updateGlobalBufferAndViews(buf) {
456456
Module["HEAPF64"] = HEAPF64 = new Float64Array(buf);
457457
}
458458

459-
var DYNAMIC_BASE = 6638224, DYNAMICTOP_PTR = 1395184;
459+
var DYNAMIC_BASE = 6638304, DYNAMICTOP_PTR = 1395264;
460460

461461
var INITIAL_INITIAL_MEMORY = Module["INITIAL_MEMORY"] || 16777216;
462462

@@ -5739,9 +5739,9 @@ function _fd_write(fd, iov, iovcnt, pnum) {
57395739
}
57405740
}
57415741

5742-
var ___tm_current = 1395200;
5742+
var ___tm_current = 1395280;
57435743

5744-
var ___tm_timezone = (stringToUTF8("GMT", 1395248, 4), 1395248);
5744+
var ___tm_timezone = (stringToUTF8("GMT", 1395328, 4), 1395328);
57455745

57465746
function _gmtime_r(time, tmPtr) {
57475747
var date = new Date(HEAP32[time >> 2] * 1e3);
Binary file not shown.
File renamed without changes.

dist/dbr.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dbr.mjs

+4-4
Large diffs are not rendered by default.

dist/dbr.pure.esm.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dbr.pure.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dbr.pure.mjs

+2-2
Large diffs are not rendered by default.

package.json

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamsoft-javascript-barcode",
3-
"version": "9.6.30",
3+
"version": "9.6.31",
44
"description": "Dynamsoft Barcode Reader JS is a recognition SDK which enables you to embed barcode reading functionality in your web, desktop, and mobile applications. With a few lines of JavaScript code, you can develop a robust application to scan a linear barcode, QR Code, DaraMatrix, PDF417, and Aztec Code.",
55
"private": false,
66
"files": [
@@ -29,7 +29,8 @@
2929
"sideEffects": false,
3030
"types": "./dist/types/dbr.d.ts",
3131
"publishConfig": {
32-
"registry": "https://registry.npmjs.org/"
32+
"registry": "https://registry.npmjs.org/",
33+
"tag": "latest"
3334
},
3435
"author": {
3536
"name": "Dynamsoft",
@@ -63,10 +64,14 @@
6364
"build:doc": "typedoc",
6465
"build-dev": "rollup -c --environment BUILD:development",
6566
"build": "rollup -c --environment BUILD:production",
66-
"test": "node ./samples/node/helloworld.js",
67-
"update:readme": "node ./updateReadme.js"
67+
"update:readme": "updateReadme --package=dynamsoft-barcode-reader --version=auto --branch=v9.6.21 --path=programming/javascript/user-guide/index.md",
68+
"update:prod": "updatePackage --package=dynamsoft-javascript-barcode --version=auto --env=production --tag=latest",
69+
"update:beta": "updatePackage --package=dynamsoft-javascript-barcode --version=auto --env=beta --tag=beta",
70+
"update:iv": "updatePackage --package=dynamsoft-javascript-barcode --version=auto --env=internalVersion --tag=iv",
71+
"update:dev": "updatePackage --package=dynamsoft-javascript-barcode --version=auto --env=development --tag=latest"
6872
},
6973
"devDependencies": {
74+
"@dynamsoft/rd2-scripts": "^0.0.32",
7075
"@rollup/plugin-node-resolve": "13.0.5",
7176
"@rollup/plugin-replace": "3.0.0",
7277
"@rollup/plugin-typescript": "8.3.0",
@@ -102,6 +107,6 @@
102107
},
103108
"dependencies": {
104109
"dm-howler": "^2.2.4",
105-
"dynamsoft-camera-enhancer": "^3.3.6"
110+
"dynamsoft-camera-enhancer": "^3.3.8"
106111
}
107112
}

samples.url

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[InternetShortcut]
2-
URL=https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/v9.6.30
2+
URL=https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/v9.6.31

0 commit comments

Comments
 (0)