Skip to content

Commit 3d60f0f

Browse files
authored
Release 23.1 (#41)
Add DotCodeEncodeMode Delete dotCodeMask Add DotCode params Add MaxiCodeEncodeMode Add HIBC decode types Version up Copyright updated
1 parent e96d3cb commit 3d60f0f

File tree

107 files changed

+485
-124
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

+485
-124
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
@@ -6,7 +6,7 @@
66
[![Supported PHP Versions](https://img.shields.io/packagist/dependency-v/aspose/barcode-cloud-php/php)](https://packagist.org/packages/aspose/barcode-cloud-php)
77

88
- API version: 3.0
9-
- Package version: 22.12.0
9+
- Package version: 23.1.0
1010
- Supported PHP versions: ">=7.3 || >=8.0"
1111

1212
## Demo applications
@@ -139,6 +139,7 @@ Class | Method | HTTP request | Description
139139
- [DataMatrixParams](docs/Model/DataMatrixParams.md)
140140
- [DecodeBarcodeType](docs/Model/DecodeBarcodeType.md)
141141
- [DiscUsage](docs/Model/DiscUsage.md)
142+
- [DotCodeEncodeMode](docs/Model/DotCodeEncodeMode.md)
142143
- [DotCodeParams](docs/Model/DotCodeParams.md)
143144
- [ECIEncodings](docs/Model/ECIEncodings.md)
144145
- [EnableChecksum](docs/Model/EnableChecksum.md)
@@ -156,6 +157,7 @@ Class | Method | HTTP request | Description
156157
- [ITF14BorderType](docs/Model/ITF14BorderType.md)
157158
- [ITFParams](docs/Model/ITFParams.md)
158159
- [MacroCharacter](docs/Model/MacroCharacter.md)
160+
- [MaxiCodeEncodeMode](docs/Model/MaxiCodeEncodeMode.md)
159161
- [MaxiCodeMode](docs/Model/MaxiCodeMode.md)
160162
- [MaxiCodeParams](docs/Model/MaxiCodeParams.md)
161163
- [ObjectExist](docs/Model/ObjectExist.md)

docs/Model/DotCodeEncodeMode.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# DotCodeEncodeMode
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
---- | ---- | ----------- | -----
6+
7+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
8+
9+

docs/Model/DotCodeParams.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
Name | Type | Description | Notes
55
---- | ---- | ----------- | -----
66
**aspect_ratio** | **double** | Height/Width ratio of 2D BarCode module. | [optional]
7-
**dot_code_mask** | **int** | DEPRECATED: DotCodeMask is now calculated automatically | [optional]
7+
**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]
8+
**encode_mode** | [**\Aspose\BarCode\Model\DotCodeEncodeMode**](DotCodeEncodeMode.md) | Identifies DotCode encode mode. Default value: Auto. | [optional]
9+
**eci_encoding** | [**\Aspose\BarCode\Model\ECIEncodings**](ECIEncodings.md) | Identifies ECI encoding. Used when DotCodeEncodeMode is Auto. Default value: ISO-8859-1. | [optional]
10+
**is_reader_initialization** | **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]
11+
**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]
812

913
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1014

docs/Model/MaxiCodeEncodeMode.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# MaxiCodeEncodeMode
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
---- | ---- | ----------- | -----
6+
7+
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
8+
9+

docs/Model/MaxiCodeParams.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
Name | Type | Description | Notes
55
---- | ---- | ----------- | -----
66
**aspect_ratio** | **double** | Height/Width ratio of 2D BarCode module. | [optional]
7-
**mode** | [**\Aspose\BarCode\Model\MaxiCodeMode**](MaxiCodeMode.md) | Encoding mode for MaxiCode barcodes. | [optional]
7+
**mode** | [**\Aspose\BarCode\Model\MaxiCodeMode**](MaxiCodeMode.md) | Mode for MaxiCode barcodes. | [optional]
8+
**encode_mode** | [**\Aspose\BarCode\Model\MaxiCodeEncodeMode**](MaxiCodeEncodeMode.md) | Encoding mode for MaxiCode barcodes. | [optional]
89

910
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1011

src/Aspose/BarCode/ApiException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/*
55
* --------------------------------------------------------------------------------------------------------------------
66
* <copyright company="Aspose" file=".php">
7-
* Copyright (c) 2022 Aspose Pty Ltd
7+
* Copyright (c) 2023 Aspose Pty Ltd
88
* </copyright>
99
* <summary>
1010
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/Aspose/BarCode/BarcodeApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/*
55
* --------------------------------------------------------------------------------------------------------------------
66
* <copyright company="Aspose" file="BarcodeApi.php">
7-
* Copyright (c) 2022 Aspose Pty Ltd
7+
* Copyright (c) 2023 Aspose Pty Ltd
88
* </copyright>
99
* <summary>
1010
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/Aspose/BarCode/Configuration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/*
55
* --------------------------------------------------------------------------------------------------------------------
66
* <copyright company="Aspose" file=".php">
7-
* Copyright (c) 2022 Aspose Pty Ltd
7+
* Copyright (c) 2023 Aspose Pty Ltd
88
* </copyright>
99
* <summary>
1010
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -49,7 +49,7 @@ class Configuration implements JsonSerializable
4949
*
5050
* @var string
5151
*/
52-
protected $clientVersion = '22.12.0';
52+
protected $clientVersion = '23.1.0';
5353

5454
/*
5555
* ClientId for API
@@ -378,7 +378,7 @@ public static function toDebugReport()
378378
$report .= ' OS: ' . php_uname() . PHP_EOL;
379379
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
380380
$report .= ' OpenAPI Spec Version: 3.0' . PHP_EOL;
381-
$report .= ' SDK Package Version: 22.12.0' . PHP_EOL;
381+
$report .= ' SDK Package Version: 23.1.0' . PHP_EOL;
382382
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
383383

384384
return $report;

src/Aspose/BarCode/FileApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/*
55
* --------------------------------------------------------------------------------------------------------------------
66
* <copyright company="Aspose" file="FileApi.php">
7-
* Copyright (c) 2022 Aspose Pty Ltd
7+
* Copyright (c) 2023 Aspose Pty Ltd
88
* </copyright>
99
* <summary>
1010
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)