Skip to content

Commit 955c2f0

Browse files
author
Cube
authored
Merge branch 'demo' into _dev
2 parents b16c6fe + e918d04 commit 955c2f0

31 files changed

+26
-36
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
.DS_Store
22
node_modules
3-
dist
4-
build
53

64
# local env files
75
.env.local

hello-world/angular/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

33
# Compiled output
4-
/dist
54
/tmp
65
/out-tsc
76
/bazel-out

hello-world/angular/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import 'dynamsoft-barcode-reader';
4545
*/
4646

4747
LicenseManager.initLicense(
48-
'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9'
48+
'DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAwLWRicl9qc19zYW1wbGVzIiwib3JnYW5pemF0aW9uSUQiOiIyMDAwMDAifQ=='
4949
);
5050

5151
/**

hello-world/angular/src/cvr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'dynamsoft-barcode-reader';
77
*/
88

99
LicenseManager.initLicense(
10-
'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9'
10+
'DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAwLWRicl9qc19zYW1wbGVzIiwib3JnYW5pemF0aW9uSUQiOiIyMDAwMDAifQ=='
1111
);
1212

1313
/**

hello-world/electron/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Create the page to be loaded in the created window.
119119
*/
120120

121121
Dynamsoft.License.LicenseManager.initLicense(
122-
"DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9"
122+
"DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAwLWRicl9qc19zYW1wbGVzIiwib3JnYW5pemF0aW9uSUQiOiIyMDAwMDAifQ=="
123123
);
124124

125125
/**

hello-world/electron/action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
Dynamsoft.License.LicenseManager.initLicense(
6-
"DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9"
6+
"DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAwLWRicl9qc19zYW1wbGVzIiwib3JnYW5pemF0aW9uSUQiOiIyMDAwMDAifQ=="
77
);
88

99
/**

hello-world/es6.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h1>Hello World for ES6 (Decode via Camera)</h1>
6161
*/
6262

6363
LicenseManager.initLicense(
64-
"DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9"
64+
"DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAwLWRicl9qc19zYW1wbGVzIiwib3JnYW5pemF0aW9uSUQiOiIyMDAwMDAifQ=="
6565
);
6666

6767
/**

hello-world/hello-world.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h1>Hello World (Decode via Camera)</h1>
4242
*/
4343

4444
Dynamsoft.License.LicenseManager.initLicense(
45-
"DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9"
45+
"DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAwLWRicl9qc19zYW1wbGVzIiwib3JnYW5pemF0aW9uSUQiOiIyMDAwMDAifQ=="
4646
);
4747

4848
/**

hello-world/next/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import 'dynamsoft-barcode-reader';
4343
*/
4444

4545
LicenseManager.initLicense(
46-
'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9'
46+
'DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAwLWRicl9qc19zYW1wbGVzIiwib3JnYW5pemF0aW9uSUQiOiIyMDAwMDAifQ=='
4747
);
4848

4949
/**

hello-world/next/cvr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'dynamsoft-barcode-reader';
77
*/
88

99
LicenseManager.initLicense(
10-
'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9'
10+
'DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAwLWRicl9qc19zYW1wbGVzIiwib3JnYW5pemF0aW9uSUQiOiIyMDAwMDAifQ=='
1111
);
1212

1313
/**

0 commit comments

Comments
 (0)