Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit 54ae1f5

Browse files
authored
Merge pull request #5 from Dynamsoft/_dev
3.0.1
2 parents 61526ee + aef37fc commit 54ae1f5

File tree

8 files changed

+34
-16
lines changed

8 files changed

+34
-16
lines changed

Api Reference.url

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[InternetShortcut]
2-
URL=https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/api-reference/?ver=3.0.0
2+
URL=https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/api-reference/?ver=3.0.1

README.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ In this guide, you will learn step by step on how to integrate this SDK into you
1313
* [Interact with the SDK](#interact-with-the-sdk)
1414
* [Hosting the SDK](#hosting-the-sdk)
1515
* [FAQ](#faq)
16+
* [API Documentation](#api-documentation)
17+
* [Release Notes](#release-notes)
18+
* [Next Steps](#next-steps)
1619

1720
> **Example Usage**
1821
>
@@ -31,13 +34,13 @@ The simplest way to include the SDK is to use either the [jsDelivr](https://jsde
3134
* jsDelivr
3235

3336
```html
34-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@3.0.0/dist/dce.js"></script>
37+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@3.0.1/dist/dce.js"></script>
3538
```
3639

3740
* UNPKG
3841

3942
```html
40-
<script src="https://unpkg.com/dynamsoft-camera-enhancer@3.0.0/dist/dce.js"></script>
43+
<script src="https://unpkg.com/dynamsoft-camera-enhancer@3.0.1/dist/dce.js"></script>
4144
```
4245

4346
#### Host the SDK yourself
@@ -65,7 +68,7 @@ The following shows a few ways to download the SDK.
6568
Depending on how you downloaded the SDK and where you put it. You can typically include it like this:
6669

6770
```html
68-
<script src="/dce-js-3.0.0/dist/dce.js"></script>
71+
<script src="/dce-js-3.0.1/dist/dce.js"></script>
6972
```
7073

7174
or
@@ -233,3 +236,20 @@ To make sure your web application can access the camera, please configure your w
233236
* IIS: [Create a Self Signed Certificate in IIS](https://aboutssl.org/how-to-create-a-self-signed-certificate-in-iis/)
234237
* Tomcat: [Setting Up SSL on Tomcat in 5 minutes](https://dzone.com/articles/setting-ssl-tomcat-5-minutes)
235238
* Node.js: [npm tls](https://nodejs.org/docs/v0.4.1/api/tls.html)
239+
240+
## API Documentation
241+
242+
You can check out the detailed documentation about the APIs of the SDK at
243+
[https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/api-reference/index.html](https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/api-reference/index.html).
244+
245+
## Release Notes
246+
247+
Learn about what are included in each release at [https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/release-note/index.html](https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/release-note/index.html).
248+
249+
## Next Steps
250+
251+
Now that you have got the SDK integrated, you can choose to move forward in the following directions
252+
253+
1. Learn how to make use of the [Shape Drawing Feature](https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/user-guide/features/draw-shapes.html).
254+
2. Check out the [official samples on Github](https://github.com/Dynamsoft/camera-enhancer-javascript-samples).
255+
3. Learn about the available [APIs](https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/api-reference/index.html).

dist/dce.esm.js

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

dist/dce.js

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

dist/dce.mjs

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

dist/types/class/cameraenhancer.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default class CameraEnhancer implements ImageSource {
3636
private static _engineResourcePath?;
3737
/**
3838
* ```js
39-
* Dynamsoft.DCE.CameraEnhancer.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@3.0.0/dist/";
39+
* Dynamsoft.DCE.CameraEnhancer.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@3.0.1/dist/";
4040
* ```
4141
*/
4242
static set engineResourcePath(value: string);
@@ -61,7 +61,7 @@ export default class CameraEnhancer implements ImageSource {
6161
* The url of the default UI.
6262
* Can only be changed before `createInstance`.
6363
* ```js
64-
* Dynamsoft.DCE.CameraEnhancer.defaultUIElementURL = "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@3.0.0/dist/dce.ui.html";
64+
* Dynamsoft.DCE.CameraEnhancer.defaultUIElementURL = "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@3.0.1/dist/dce.ui.html";
6565
* let pEnhancer = null;
6666
* (async()=>{
6767
* let enhancer = await (pEnhancer = pEnhancer || Dynamsoft.DCE.CameraEnhancer.createInstance());

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamsoft-camera-enhancer",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "Allow your website to easily control cameras on desktop and mobile devices.",
55
"private": false,
66
"homepage": "https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/?ver=latest",
@@ -32,8 +32,6 @@
3232
"web"
3333
],
3434
"scripts": {
35-
"~~tsc": "tsc",
36-
"~~rollup": "rollup",
3735
"test": "echo \"Error: no test specified\" && exit 1",
3836
"build-dev": "rollup -c --environment BUILD:development",
3937
"build": "rollup -c --environment BUILD:production",

samples.url

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[InternetShortcut]
2-
URL=https://github.com/Dynamsoft/camera-enhancer-javascript-samples/tree/v3.0.0
2+
URL=https://github.com/Dynamsoft/camera-enhancer-javascript-samples/tree/v3.0.1

0 commit comments

Comments
 (0)