From 93fd6104e49f25bf8df1ac18a14046c5402bb224 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Thu, 22 Dec 2016 16:01:55 +0100 Subject: [PATCH] bump --- CHANGELOG.md | 6 ++++-- README.md | 16 +++++++++------- package.json | 2 +- plugin.xml | 4 ++-- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d746ba7..60b3b183 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # Change Log -[6.0.4](https://github.com/phonegap/phonegap-plugin-barcodescanner/tree/6.0.4) (2016-12-04) -[Full Changelog](https://github.com/phonegap/phonegap-plugin-barcodescanner/compare/6.0.3..6.0.4) +[6.0.5](https://github.com/phonegap/phonegap-plugin-barcodescanner/tree/6.0.5) (2016-12-22) +[Full Changelog](https://github.com/phonegap/phonegap-plugin-barcodescanner/compare/6.0.4..6.0.5) +- Flashlight default value #385, Turning off found plain text #259, Remove Result Prompt #234, Custom Result Messages #219 [view commit](https://github.com/phonegap/phonegap-plugin-barcodescanner/commit/fee66a7d1b4c3bca845beb3fa8c99365b4c15ce2) +- Flipping orientation on Android crashes app [view commit](https://github.com/phonegap/phonegap-plugin-barcodescanner/commit/72ae2c75d3d66df24c124a6da9c26e48f7ad36a0) - Focus improvements [view commit](https://github.com/phonegap/phonegap-plugin-barcodescanner/commit/52a23b0f42d454d6a9f2e29a693b5e984c0bb13f) - Crash on iOS on low memory devices [view commit](https://github.com/phonegap/phonegap-plugin-barcodescanner/commit/6e3718c2db03fda3d8ea439a9471b3a08e121f21) - Disable Animation [view commit](https://github.com/phonegap/phonegap-plugin-barcodescanner/commit/f9960f9b81aef35bd85ecba856c63058bc109ac1) diff --git a/README.md b/README.md index e0915552..9cf432d2 100644 --- a/README.md +++ b/README.md @@ -154,13 +154,15 @@ A full example could be: alert("Scanning failed: " + error); }, { - "preferFrontCamera" : true, // iOS and Android - "showFlipCameraButton" : true, // iOS and Android - "showTorchButton" : true, // iOS and Android - "disableAnimations" : true, // iOS - "prompt" : "Place a barcode inside the scan area", // supported on Android only - "formats" : "QR_CODE,PDF_417", // default: all but PDF_417 and RSS_EXPANDED - "orientation" : "landscape" // Android only (portrait|landscape), default unset so it rotates with the device + preferFrontCamera : true, // iOS and Android + showFlipCameraButton : true, // iOS and Android + showTorchButton : true, // iOS and Android + torchOn: true, // Android, launch with the torch switched on (if available) + prompt : "Place a barcode inside the scan area", // Android + resultDisplayDuration: 500, // Android, display scanned text for X ms. 0 suppresses it entirely, default 1500 + formats : "QR_CODE,PDF_417", // default: all but PDF_417 and RSS_EXPANDED + orientation : "landscape", // Android only (portrait|landscape), default unset so it rotates with the device + disableAnimations : true // iOS } ); ``` diff --git a/package.json b/package.json index d52fc990..64b1f194 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phonegap-plugin-barcodescanner", - "version": "6.0.4", + "version": "6.0.5", "description": "You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.", "cordova": { "id": "phonegap-plugin-barcodescanner", diff --git a/plugin.xml b/plugin.xml index 52ccd595..70968af8 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + BarcodeScanner You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application. MIT @@ -52,7 +52,7 @@ - +