Skip to content

Commit 8d4bdf2

Browse files
Merge branch 'master' into develop
# Conflicts: # .github/workflows/flutter.yml # CHANGELOG.md # example/lib/barcode_scanner_listview.dart # example/lib/barcode_scanner_window.dart # example/lib/mobile_scanner_overlay.dart # pubspec.yaml
2 parents 2199ca7 + b235271 commit 8d4bdf2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ Known issues:
7777
* [Apple] The scan window does not work correctly.
7878
* [Apple] The camera flash briefly shows when the camera is started.
7979

80+
## 6.0.6
81+
Bugs fixed:
82+
* [web] Fixed a bug that prevented color inverted barcodes from being scanned.
83+
84+
Improvements:
85+
* [web] Bump ZXingJS from version 0.19.1 to 0.21.3.
86+
8087
## 6.0.5
8188
Bugs fixed:
8289
* [Android] Fixed crash due to imageProxy being closed too early.

lib/src/web/zxing/zxing_barcode_reader.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ final class ZXingBarcodeReader extends BarcodeReader {
5353
}
5454

5555
@override
56-
String get scriptUrl => 'https://unpkg.com/@zxing/library@0.19.1';
56+
String get scriptUrl => 'https://unpkg.com/@zxing/library@0.21.3';
5757

5858
JSMap? _createReaderHints(List<BarcodeFormat> formats) {
5959
if (formats.isEmpty || formats.contains(BarcodeFormat.all)) {

0 commit comments

Comments
 (0)