Skip to content

Commit c508db1

Browse files
authored
Release 22.11 (#51)
Add MaxiCodeMode enum Add MaxiCodeMode? Mode property to MaxiCodeParams Delete int? EncodeMode property from MaxiCodeParams
1 parent e891853 commit c508db1

File tree

12 files changed

+88
-13
lines changed

12 files changed

+88
-13
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/)
88

99
- API version: 3.0
10-
- SDK version: 22.10.0
10+
- SDK version: 22.11.0
1111

1212
## Demo applications
1313

@@ -285,6 +285,7 @@ Class | Method | HTTP request | Description
285285
- [Model.ITF14BorderType](docs/ITF14BorderType.md)
286286
- [Model.ITFParams](docs/ITFParams.md)
287287
- [Model.MacroCharacter](docs/MacroCharacter.md)
288+
- [Model.MaxiCodeMode](docs/MaxiCodeMode.md)
288289
- [Model.MaxiCodeParams](docs/MaxiCodeParams.md)
289290
- [Model.ObjectExist](docs/ObjectExist.md)
290291
- [Model.Padding](docs/Padding.md)

Tests/BarcodeApiTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Aspose.BarCode.Cloud.Sdk.Tests
1717
/// Please update the test case below to test the API endpoint.
1818
/// </remarks>
1919
[TestFixture]
20-
public class BarcodeApiTests: TestsBase
20+
public class BarcodeApiTests : TestsBase
2121
{
2222
/// <summary>
2323
/// Setup before each unit test

Tests/GenerateAndThenRecognize.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ public void GenerateAndThenRecognizeTest()
3737
"{\"barcodes\":[{" +
3838
"\"barcodeValue\":\"Test\"," +
3939
"\"type\":\"QR\"," +
40-
"\"region\":[{\"x\":7,\"y\":7},{\"x\":49,\"y\":7},{\"x\":49,\"y\":49},{\"x\":7,\"y\":49}]," +
41-
"\"checksum\":null}]}",
40+
"\"region\":[{\"x\":7,\"y\":7},{\"x\":49,\"y\":7},{\"x\":49,\"y\":49},{\"x\":7,\"y\":49}]}]}",
4241
recognized.ToString()
4342
);
4443
}
77 Bytes
Loading
22 Bytes
Loading

docs/MaxiCodeMode.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Aspose.BarCode.Cloud.Sdk.Model.MaxiCodeMode
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
---- | ---- | ----------- | -----
7+

docs/MaxiCodeParams.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
Name | Type | Description | Notes
66
---- | ---- | ----------- | -----
77
**AspectRatio** | **double?** | Height/Width ratio of 2D BarCode module. | [optional]
8-
**EncodeMode** | **int?** | MaxiCode encode mode. | [optional]
8+
**Mode** | **MaxiCodeMode** | Encoding mode for MaxiCode barcodes. | [optional]
99

examples/GenerateQR/GenerateQR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.10.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.11.0" />
1010
</ItemGroup>
1111

1212
</Project>

examples/ReadQR/ReadQR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.10.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.11.0" />
1010
</ItemGroup>
1111

1212
</Project>

src/Aspose.BarCode.Cloud.Sdk.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
1818
<PackageId>Aspose.BarCode-Cloud</PackageId>
1919
<Product>Aspose.BarCode Cloud SDK for .NET</Product>
2020
<PackageIcon>PackageIcon.png</PackageIcon>
21-
<Version>22.10.0</Version>
21+
<Version>22.11.0</Version>
2222
<Authors>asposecloud</Authors>
23-
<AssemblyVersion>22.10.0.0</AssemblyVersion>
23+
<AssemblyVersion>22.11.0.0</AssemblyVersion>
2424
<PackageReadmeFile>README.md</PackageReadmeFile>
2525
</PropertyGroup>
2626

0 commit comments

Comments
 (0)