Skip to content

Commit d1150ec

Browse files
authored
Release 23.1 (#54)
* Add DotCodeEncodeMode Delete dotCodeMask Add DotCode params Add MaxiCodeEncodeMode Add HIBC decode types Version up Copyright updated * Fix token url * Update Aspose.BarCode.Cloud.Sdk.csproj Update Newtonsoft.Json
1 parent c892b2a commit d1150ec

File tree

107 files changed

+331
-109
lines changed

Some content is hidden

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

107 files changed

+331
-109
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Aspose Pty Ltd
3+
Copyright (c) 2023 Aspose Pty Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 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.12.0
10+
- SDK version: 23.1.0
1111

1212
## Demo applications
1313

@@ -268,6 +268,7 @@ Class | Method | HTTP request | Description
268268
- [Model.DataMatrixParams](docs/DataMatrixParams.md)
269269
- [Model.DecodeBarcodeType](docs/DecodeBarcodeType.md)
270270
- [Model.DiscUsage](docs/DiscUsage.md)
271+
- [Model.DotCodeEncodeMode](docs/DotCodeEncodeMode.md)
271272
- [Model.DotCodeParams](docs/DotCodeParams.md)
272273
- [Model.ECIEncodings](docs/ECIEncodings.md)
273274
- [Model.EnableChecksum](docs/EnableChecksum.md)
@@ -285,6 +286,7 @@ Class | Method | HTTP request | Description
285286
- [Model.ITF14BorderType](docs/ITF14BorderType.md)
286287
- [Model.ITFParams](docs/ITFParams.md)
287288
- [Model.MacroCharacter](docs/MacroCharacter.md)
289+
- [Model.MaxiCodeEncodeMode](docs/MaxiCodeEncodeMode.md)
288290
- [Model.MaxiCodeMode](docs/MaxiCodeMode.md)
289291
- [Model.MaxiCodeParams](docs/MaxiCodeParams.md)
290292
- [Model.ObjectExist](docs/ObjectExist.md)

docs/DotCodeEncodeMode.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.DotCodeEncodeMode
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
---- | ---- | ----------- | -----
7+

docs/DotCodeParams.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,9 @@
55
Name | Type | Description | Notes
66
---- | ---- | ----------- | -----
77
**AspectRatio** | **double?** | Height/Width ratio of 2D BarCode module. | [optional]
8-
**DotCodeMask** | **int?** | DEPRECATED: DotCodeMask is now calculated automatically | [optional]
8+
**Columns** | **int?** | Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5. | [optional]
9+
**EncodeMode** | **DotCodeEncodeMode** | Identifies DotCode encode mode. Default value: Auto. | [optional]
10+
**ECIEncoding** | **ECIEncodings** | Identifies ECI encoding. Used when DotCodeEncodeMode is Auto. Default value: ISO-8859-1. | [optional]
11+
**IsReaderInitialization** | **bool?** | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. | [optional]
12+
**Rows** | **int?** | Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5. | [optional]
913

docs/MaxiCodeEncodeMode.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.MaxiCodeEncodeMode
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
---- | ---- | ----------- | -----
7+

docs/MaxiCodeParams.md

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

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.12.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="23.1.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.12.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="23.1.0" />
1010
</ItemGroup>
1111

1212
</Project>

src/Api/BarcodeApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="BarcodeApi.cs">
3-
// Copyright (c) 2022 Aspose.BarCode for Cloud
3+
// Copyright (c) 2023 Aspose.BarCode for Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

src/Api/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="Configuration.cs">
3-
// Copyright (c) 2022 Aspose.BarCode for Cloud
3+
// Copyright (c) 2023 Aspose.BarCode for Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)