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

Commit 2d1a745

Browse files
authored
Merge pull request #18 from Dynamsoft/_dev
Dev
2 parents 843d9a3 + 211dba4 commit 2d1a745

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+110
-142
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=4.0.1
2+
URL=https://www.dynamsoft.com/camera-enhancer/docs/programming/javascript/api-reference/?ver=4.0.2

LEGAL.txt

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
===================================================================================
2+
>>>>>>>>>>>>>>>>>>>>>>>>>>>> dynamsoft-camera-enhancer <<<<<<<<<<<<<<<<<<<<<<<<<<<<
3+
===================================================================================
4+
15
Legal Notices:
26

37
This SDK contains parts of following softwares which are used under license.
@@ -22,12 +26,3 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2226
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2327
SOFTWARE.
2428
===================================================================================
25-
26-
===================================================================================
27-
howler
28-
29-
Copyright (c) 2013-2020 James Simpson and GoldFire Studios, Inc.
30-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
31-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
32-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33-
===================================================================================

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,23 @@ The simplest way to include the SDK is to use a CDN such as [jsDelivr](https://j
4545
- jsDelivr
4646

4747
```html
48-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.30/dist/core.js"></script>
49-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/license.js"></script>
50-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/dce.js"></script>
48+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-core@3.2.10/dist/core.js"></script>
49+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-license@3.2.10/dist/license.js"></script>
50+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.2/dist/dce.js"></script>
5151
```
5252

5353
- UNPKG
5454

5555
```html
56-
<script src="https://unpkg.com/dynamsoft-core@3.0.30/dist/core.js"></script>
57-
<script src="https://unpkg.com/dynamsoft-license@3.0.20/dist/license.js"></script>
58-
<script src="https://unpkg.com/dynamsoft-camera-enhancer@4.0.1/dist/dce.js"></script>
56+
<script src="https://unpkg.com/dynamsoft-core@3.2.10/dist/core.js"></script>
57+
<script src="https://unpkg.com/dynamsoft-license@3.2.10/dist/license.js"></script>
58+
<script src="https://unpkg.com/dynamsoft-camera-enhancer@4.0.2/dist/dce.js"></script>
5959
```
6060

6161
> In some rare cases, you might not be able to access the CDN. If this happens, you can use
62-
>- [https://download2.dynamsoft.com/packages/dynamsoft-core@3.0.30/dist/core.js](https://download2.dynamsoft.com/packages/dynamsoft-core@3.0.30/dist/core.js)
63-
>- [https://download2.dynamsoft.com/packages/dynamsoft-license@3.0.20/dist/license.js](https://download2.dynamsoft.com/packages/dynamsoft-license@3.0.20/dist/license.js)
64-
>- [https://download2.dynamsoft.com/packages/dynamsoft-camera-enhancer@4.0.1/dist/dce.js](https://download2.dynamsoft.com/packages/dynamsoft-camera-enhancer@4.0.1/dist/dce.js)
62+
>- [https://download2.dynamsoft.com/packages/dynamsoft-core@3.2.10/dist/core.js](https://download2.dynamsoft.com/packages/dynamsoft-core@3.2.10/dist/core.js)
63+
>- [https://download2.dynamsoft.com/packages/dynamsoft-license@3.2.10/dist/license.js](https://download2.dynamsoft.com/packages/dynamsoft-license@3.2.10/dist/license.js)
64+
>- [https://download2.dynamsoft.com/packages/dynamsoft-camera-enhancer@4.0.2/dist/dce.js](https://download2.dynamsoft.com/packages/dynamsoft-camera-enhancer@4.0.2/dist/dce.js)
6565
6666
#### Host the SDK yourself
6767

@@ -90,8 +90,8 @@ The following shows a few ways to download the SDK.
9090
Depending on how you downloaded the SDK and where you put it. You can typically include it like this:
9191

9292
```html
93-
<script src="./dynamsoft-camera-enhancer-js-4.0.1/dynamsoft/distributables/dynamsoft-core@3.0.30/dist/core.js"></script>
94-
<script src="./dynamsoft-camera-enhancer-js-4.0.1/dynamsoft/distributables/dynamsoft-camera-enhancer@4.0.1/dist/dce.js"></script>
93+
<script src="./dynamsoft-camera-enhancer-js-4.0.2/dynamsoft/distributables/dynamsoft-core@3.2.10/dist/core.js"></script>
94+
<script src="./dynamsoft-camera-enhancer-js-4.0.2/dynamsoft/distributables/dynamsoft-camera-enhancer@4.0.2/dist/dce.js"></script>
9595
```
9696

9797
or

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.
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
export declare class CameraEnhancerModule {
22
static getVersion(): string;
33
}
4-
//# sourceMappingURL=CameraEnhancerModule.d.ts.map

dist/types/class/CameraView.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,4 +226,3 @@ export declare class CameraView extends View {
226226
*/
227227
dispose(): void;
228228
}
229-
//# sourceMappingURL=CameraView.d.ts.map

dist/types/class/DrawingStyleManager.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ export declare class DrawingStyleManager {
1616
static createDrawingStyle(styleDefinition: DrawingStyle): number;
1717
private static _getDrawingStyle;
1818
static getDrawingStyle(styleId: number): DrawingStyle;
19-
static getDrawingStyles(): Array<DrawingStyle>;
19+
static getAllDrawingStyles(): Array<DrawingStyle>;
2020
private static _updateDrawingStyle;
2121
static updateDrawingStyle(styleId: number, styleDefinition: DrawingStyle): void;
2222
}
23-
//# sourceMappingURL=DrawingStyleManager.d.ts.map

dist/types/class/Feedback.d.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
export declare class Feedback {
22
#private;
3+
static beepSoundSource: string;
4+
static beep(): void;
35
static vibrateDuration: number;
4-
static get beepSoundSource(): string;
5-
static set beepSoundSource(value: string);
66
static vibrate(): void;
7-
static beep(): void;
87
}
9-
//# sourceMappingURL=Feedback.d.ts.map

0 commit comments

Comments
 (0)