Skip to content

Commit b587145

Browse files
Merge pull request #33 from dynamsoft-docs/preview
update to internal commit 27d6808f
2 parents c87acbf + 74da1c7 commit b587145

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

_data/product_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
useGroupedVersion: true
22

33
version_info_list:
4-
- value: latest version(3.2.30)
4+
- value: latest version
55
- value: 3.x
66
child:
77
- 3.2.20_cplusplus

programming/dotnet/release-notes/dotnet-3.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ needAutoGenerateSidebar: false
88

99
# Release Notes - .NET 3.x
1010

11+
## 3.2.31 (06/12/2024)
12+
13+
- Fixed a bug where calling the method `GetSimplifiedSettings` would throw a `System.IO.FileNotFoundException` with the message "Could not load file or assembly ...".
14+
1115
## 3.2.30 (05/30/2024)
1216

1317
### Highlights

programming/dotnet/release-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ needAutoGenerateSidebar: false
88

99
# Release Notes - .NET
1010

11+
- [3.2.31 (06/12/2024)](dotnet-3.md#3231-06122024)
1112
- [3.2.30 (05/30/2024)](dotnet-3.md#3230-05302024)
1213
- [2.0 (08/26/2021)](dotnet-2.md#20-08262021)
1314
- [1.2.1 (06/08/2021)](dotnet-1.md#121-06082021)

programming/dotnet/user-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Open the `Program.cs` file and add the following code inside the `Main` method t
9191
int errorCode = 1;
9292
string errorMsg;
9393
errorCode = LicenseManager.InitLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", out errorMsg);
94-
if (errorCode != (int)EnumErrorCode.EC_OK)
94+
if (errorCode != (int)EnumErrorCode.EC_OK && errorCode != (int)EnumErrorCode.EC_LICENSE_CACHE_USED)
9595
Console.WriteLine("License initialization error: " + errorMsg);
9696
```
9797

0 commit comments

Comments
 (0)