Skip to content

Commit

Permalink
Release 23.9 (#76)
Browse files Browse the repository at this point in the history
* Added field `AztecEncodeMode`
* Field `textEncoding` made deprecated
* Drop Node v19.x testing
  • Loading branch information
Denis-Averin authored Sep 22, 2023
1 parent aa561da commit a700c3f
Show file tree
Hide file tree
Showing 12 changed files with 1,032 additions and 945 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
# see https://nodejs.dev/en/about/releases/ for active releases
node-version: [16.x, 18.x, 19, 20, lts/*, latest]
node-version: [16.x, 18.x, 20.x, lts/*, latest]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![npm](https://img.shields.io/npm/v/aspose-barcode-cloud-node)](https://www.npmjs.com/package/aspose-barcode-cloud-node)

+ API version: 3.0
+ Package version: 23.8.0
+ Package version: 23.9.0

## Demo applications

Expand Down
14 changes: 7 additions & 7 deletions docs/index.md

Large diffs are not rendered by default.

47 changes: 41 additions & 6 deletions docs/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,18 @@ enum AvailableGraphicsUnit {
}
```

## AztecEncodeMode



```ts
enum AztecEncodeMode {
Auto = 'Auto',
Bytes = 'Bytes',
ExtendedCodetext = 'ExtendedCodetext'
}
```

## AztecParams

Aztec parameters.
Expand All @@ -86,9 +98,29 @@ interface AztecParams {
symbolMode?: AztecSymbolMode;

/**
* Sets the encoding of codetext.
* DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
*/
textEncoding?: string;

/**
* Encoding mode for Aztec barcodes. Default value: Auto
*/
encodeMode?: AztecEncodeMode;

/**
* Identifies ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1.
*/
eCIEncoding?: ECIEncodings;

/**
* Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization.
*/
isReaderInitialization?: boolean;

/**
* Gets or sets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto).
*/
layersCount?: number;
}
```

Expand Down Expand Up @@ -476,7 +508,7 @@ interface DataMatrixParams {
aspectRatio?: number;

/**
* Encoding of codetext.
* DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
*/
textEncoding?: string;

Expand Down Expand Up @@ -678,7 +710,9 @@ enum DecodeBarcodeType {
HIBCDataMatrixPAS = 'HIBCDataMatrixPAS',
HIBCQRPAS = 'HIBCQRPAS',
HanXin = 'HanXin',
GS1HanXin = 'GS1HanXin'
GS1HanXin = 'GS1HanXin',
GS1Aztec = 'GS1Aztec',
GS1CompositeBar = 'GS1CompositeBar'
}
```

Expand Down Expand Up @@ -875,7 +909,8 @@ enum EncodeBarcodeType {
Mailmark = 'Mailmark',
GS1DotCode = 'GS1DotCode',
HanXin = 'HanXin',
GS1HanXin = 'GS1HanXin'
GS1HanXin = 'GS1HanXin',
GS1Aztec = 'GS1Aztec'
}
```

Expand Down Expand Up @@ -1724,7 +1759,7 @@ interface Pdf417Params {
aspectRatio?: number;

/**
* Encoding of codetext.
* DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
*/
textEncoding?: string;

Expand Down Expand Up @@ -1961,7 +1996,7 @@ interface QrParams {
aspectRatio?: number;

/**
* Encoding of codetext.
* DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
*/
textEncoding?: string;

Expand Down
Loading

0 comments on commit a700c3f

Please sign in to comment.