diff --git a/README.md b/README.md index 6d05916..7a192bf 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/) - API version: 3.0 -- SDK version: 22.11.0 +- SDK version: 22.12.0 ## Demo applications @@ -216,7 +216,7 @@ All Aspose.BarCode for Cloud SDKs, helper scripts and templates are licensed und All URIs are relative to ** Class | Method | HTTP request | Description ------------- | ------------- | ------------- | ------------- +----- | ------ | ------------ | ----------- *BarcodeApi* | [**GetBarcodeGenerate**](docs/BarcodeApi.md#getbarcodegenerate) | **GET** /barcode/generate | Generate barcode. *BarcodeApi* | [**GetBarcodeRecognize**](docs/BarcodeApi.md#getbarcoderecognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server. *BarcodeApi* | [**PostBarcodeRecognizeFromUrlOrContent**](docs/BarcodeApi.md#postbarcoderecognizefromurlorcontent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64. diff --git a/docs/DotCodeParams.md b/docs/DotCodeParams.md index d6bc107..64e99b2 100644 --- a/docs/DotCodeParams.md +++ b/docs/DotCodeParams.md @@ -5,5 +5,5 @@ Name | Type | Description | Notes ---- | ---- | ----------- | ----- **AspectRatio** | **double?** | Height/Width ratio of 2D BarCode module. | [optional] -**DotCodeMask** | **int?** | Mask of Dotcode barcode. Default value: -1. | [optional] +**DotCodeMask** | **int?** | DEPRECATED: DotCodeMask is now calculated automatically | [optional] diff --git a/examples/GenerateQR/GenerateQR.csproj b/examples/GenerateQR/GenerateQR.csproj index 6a65203..f6dfcc0 100644 --- a/examples/GenerateQR/GenerateQR.csproj +++ b/examples/GenerateQR/GenerateQR.csproj @@ -6,7 +6,7 @@ - + diff --git a/examples/ReadQR/ReadQR.csproj b/examples/ReadQR/ReadQR.csproj index 6a65203..f6dfcc0 100644 --- a/examples/ReadQR/ReadQR.csproj +++ b/examples/ReadQR/ReadQR.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/Aspose.BarCode.Cloud.Sdk.csproj b/src/Aspose.BarCode.Cloud.Sdk.csproj index d754028..cc8f7ac 100644 --- a/src/Aspose.BarCode.Cloud.Sdk.csproj +++ b/src/Aspose.BarCode.Cloud.Sdk.csproj @@ -18,9 +18,9 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc Aspose.BarCode-Cloud Aspose.BarCode Cloud SDK for .NET PackageIcon.png - 22.11.0 + 22.12.0 asposecloud - 22.11.0.0 + 22.12.0.0 README.md @@ -31,7 +31,7 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc - + diff --git a/src/Model/DotCodeParams.cs b/src/Model/DotCodeParams.cs index 8a09286..5b896d3 100644 --- a/src/Model/DotCodeParams.cs +++ b/src/Model/DotCodeParams.cs @@ -47,7 +47,7 @@ public class DotCodeParams : IToString public double? AspectRatio { get; set; } /// - /// Mask of Dotcode barcode. Default value: -1. + /// DEPRECATED: DotCodeMask is now calculated automatically /// public int? DotCodeMask { get; set; }