Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

- We added support for QR of available remaining types including pdf417 in barcode scanner functinality.

## [4.2.2] - 2025-12-23

- We expanded the barcode-scanner configuration in Vision Camera to support all available `CodeType` formats, including QR, Aztec, Data Matrix, PDF-417, EAN, UPC, GS1 DataBar, ITF, and Code barcodes.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "barcode-scanner-native",
"widgetName": "BarcodeScanner",
"version": "4.3.0",
"version": "4.4.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@ export function BarcodeScanner(props: Props): ReactElement {
"ean-13",
"ean-8",
"upc-a",
"upc-e"
"upc-e",
"pdf-417",
"gs1-data-bar",
"gs1-data-bar-limited",
"gs1-data-bar-expanded",
"itf",
"itf-14"
],
onCodeScanned
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<package xmlns="http://www.mendix.com/package/1.0/">
<clientModule name="BarcodeScanner" version="4.3.0" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="BarcodeScanner" version="4.4.0" xmlns="http://www.mendix.com/clientModule/1.0/">

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can even have it as patch version update. (4.3.1.)

<widgetFiles>
<widgetFile path="BarcodeScanner.xml" />
</widgetFiles>
Expand Down
Loading