Skip to content

Commit 252c637

Browse files
update to internal commit 02597f5a
1 parent 11efeef commit 252c637

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

_data/product_version.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
useGroupedVersion: true
22

33
version_info_list:
4-
- value: latest version
4+
- value: latest version(2.2.10)
55
- value: 2.x
66
child:
7+
- 2.2.0
78
- 2.0.21
89
- 2.0.20
910
- 2.0.11

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default-layout
33
title: Dynamsoft Document Normalizer Documentation Homepage
44
keywords: homepage, documentation
55
breadcrumbText: HomePage
6-
description: Documentation Homepage
6+
description: Homepage of Dynamsoft Document Normalizer
77
---
88

99
# Documentation HomePage

license-activation/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ The following code snippets are using the public trial license to initialize the
3232
>
3333
>1.
3434
```javascript
35-
Dynamsoft.DDN.DocumentNormalizer.license = "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9";
35+
Dynamsoft.License.LicenseManager.initLicense("YOUR-LICENSE-KEY");
3636
```
3737
2.
3838
```java
39-
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", MainActivity.this, new LicenseVerificationListener() {
39+
LicenseManager.initLicense("YOUR-LICENSE-KEY", MainActivity.this, new LicenseVerificationListener() {
4040
@Override
4141
public void onLicenseVerified(boolean b, Exception e) {
4242
if(!b && e != null){
@@ -47,7 +47,7 @@ LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", MainActiv
4747
```
4848
3.
4949
```objc
50-
[DSLicenseManager initLicense:@"DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9" verificationDelegate:self];
50+
[DSLicenseManager initLicense:@"YOUR-LICENSE-KEY" verificationDelegate:self];
5151
- (void)onLicenseVerified:(bool)isSuccess error:(NSError *)error{
5252
if(!isSuccess && error != nil){
5353
NSString* msg = error.userInfo[NSUnderlyingErrorKey];
@@ -57,7 +57,7 @@ LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", MainActiv
5757
```
5858
4.
5959
```swift
60-
LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9",verificationDelegate:self)
60+
LicenseManager.initLicense("YOUR-LICENSE-KEY",verificationDelegate:self)
6161
func onLicenseVerified(_ isSuccess: Bool, error: Error?) {
6262
if(!isSuccess && error != nil){
6363
let err = error as NSError?
@@ -69,10 +69,10 @@ func onLicenseVerified(_ isSuccess: Bool, error: Error?) {
6969
5.
7070
```c
7171
char errorMessage[256];
72-
DC_InitLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwNSJ9", errorMessage, 256);
72+
DC_InitLicense("YOUR-LICENSE-KEY", errorMessage, 256);
7373
```
7474
6.
7575
```cpp
7676
char errorMessage[256];
77-
CLicenseManager::InitLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwNSJ9", errorMessage, 256);
77+
CLicenseManager::InitLicense("YOUR-LICENSE-KEY", errorMessage, 256);
7878
```

release-notes/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ needGenerateH3Content: false
1919

2020
| Versions | Available Editions |
2121
| -------- | ------------------ |
22-
| 2.2.10 | <a target="_blank" href="{{ site.cpp_release_notes}}cpp-2.html#2210-02292024" class="otherLinkColour refreshLink">C++</a> |
22+
| 2.2.10 | <a target="_blank" href="{{ site.cpp_release_notes}}cpp-2.html#2210-03012024" class="otherLinkColour refreshLink">C++</a> |
2323
| 2.2.0 | <a target="_blank" href="{{ site.cpp_release_notes}}cpp-2.html#220-01162024" class="otherLinkColour refreshLink">C++</a> |
2424

2525
## 2.0

0 commit comments

Comments
 (0)