Skip to content

Commit 463b68f

Browse files
authored
Release 23.6 (#63)
* New code for HanXin * Unify dotnet tests
1 parent 473aae9 commit 463b68f

21 files changed

+766
-46
lines changed

.github/workflows/dotnet-core.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,16 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15+
# See https://learn.microsoft.com/en-us/lifecycle/products/microsoft-net-and-net-core
16+
# For versions
1517
include:
1618
- dotnet-version: 3.1.x
1719
framework: netcoreapp3.1
20+
- dotnet-version: 6.0.x
21+
framework: net6.0
22+
23+
continue-on-error: true
24+
1825
steps:
1926
- uses: actions/checkout@v3
2027
- name: Setup .NET ${{ matrix.dotnet-version }}

.github/workflows/dotnet-net6.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/net-framework.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: [windows-latest]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

1616
- name: Setup MSBuild
1717
uses: microsoft/setup-msbuild@v1

README.md

Lines changed: 5 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: 23.5.0
10+
- SDK version: 23.6.0
1111

1212
## Demo applications
1313

@@ -285,6 +285,10 @@ Class | Method | HTTP request | Description
285285
- [Model.FontStyle](docs/FontStyle.md)
286286
- [Model.GeneratorParams](docs/GeneratorParams.md)
287287
- [Model.GeneratorParamsList](docs/GeneratorParamsList.md)
288+
- [Model.HanXinEncodeMode](docs/HanXinEncodeMode.md)
289+
- [Model.HanXinErrorLevel](docs/HanXinErrorLevel.md)
290+
- [Model.HanXinParams](docs/HanXinParams.md)
291+
- [Model.HanXinVersion](docs/HanXinVersion.md)
288292
- [Model.ITF14BorderType](docs/ITF14BorderType.md)
289293
- [Model.ITFParams](docs/ITFParams.md)
290294
- [Model.MacroCharacter](docs/MacroCharacter.md)

docs/GeneratorParams.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,5 @@ Name | Type | Description | Notes
5959
**QR** | [**QrParams**](QrParams.md) | QR params. | [optional]
6060
**PatchCode** | [**PatchCodeParams**](PatchCodeParams.md) | PatchCode params. | [optional]
6161
**Code128** | [**Code128Params**](Code128Params.md) | Code128 params. | [optional]
62+
**HanXin** | [**HanXinParams**](HanXinParams.md) | HanXin params. | [optional]
6263

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

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

docs/HanXinParams.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Aspose.BarCode.Cloud.Sdk.Model.HanXinParams
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
---- | ---- | ----------- | -----
7+
**EncodeMode** | **HanXinEncodeMode** | Encoding mode for XanXin barcodes. Default value: HanXinEncodeMode.Auto. | [optional]
8+
**ErrorLevel** | **HanXinErrorLevel** | Allowed Han Xin error correction levels from L1 to L4. Default value: HanXinErrorLevel.L1. | [optional]
9+
**Version** | **HanXinVersion** | Allowed Han Xin versions, Auto and Version01 - Version84. Default value: HanXinVersion.Auto. | [optional]
10+
**ECIEncoding** | **ECIEncodings** | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Default value: ECIEncodings.ISO_8859_1 | [optional]
11+

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

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

1212
</Project>

0 commit comments

Comments
 (0)