mirror of
https://github.com/serratus/quaggaJS.git
synced 2026-08-13 05:31:37 +08:00
Updated to 0.11.5
This commit is contained in:
+3626
-2881
File diff suppressed because one or more lines are too long
Vendored
+4
-3
File diff suppressed because one or more lines are too long
@@ -69,8 +69,8 @@ $(function() {
|
|||||||
constraints: function(value){
|
constraints: function(value){
|
||||||
var values = value.split('x');
|
var values = value.split('x');
|
||||||
return {
|
return {
|
||||||
width: parseInt(values[0]),
|
width: {min: parseInt(values[0])},
|
||||||
height: parseInt(values[1])
|
height: {min: parseInt(values[1])}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -100,8 +100,9 @@ $(function() {
|
|||||||
inputStream: {
|
inputStream: {
|
||||||
type : "LiveStream",
|
type : "LiveStream",
|
||||||
constraints: {
|
constraints: {
|
||||||
width: 640,
|
width: {min: 640},
|
||||||
height: 480,
|
height: {min: 480},
|
||||||
|
aspectRatio: {min: 1, max: 100},
|
||||||
facingMode: "environment" // or user
|
facingMode: "environment" // or user
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ showInMenu: true
|
|||||||
quaggaJS
|
quaggaJS
|
||||||
========
|
========
|
||||||
|
|
||||||
- [Changelog](#changelog) (2016-08-15)
|
- [Changelog](#changelog) (2016-10-03)
|
||||||
- [Browser Support](#browser-support)
|
- [Browser Support](#browser-support)
|
||||||
- [Installing](#installing)
|
- [Installing](#installing)
|
||||||
- [Getting Started](#gettingstarted)
|
- [Getting Started](#gettingstarted)
|
||||||
@@ -642,6 +642,10 @@ on the ``singleChannel`` flag in the configuration when using ``decodeSingle``.
|
|||||||
|
|
||||||
## <a name="changelog">Changelog</a>
|
## <a name="changelog">Changelog</a>
|
||||||
|
|
||||||
|
### 2016-10-03
|
||||||
|
- Fixes
|
||||||
|
- Fixed `facingMode` issue with Chrome >= 53 (see [#128](https://github.com/serratus/quaggaJS/issues/128))
|
||||||
|
|
||||||
### 2016-08-15
|
### 2016-08-15
|
||||||
- Features
|
- Features
|
||||||
- Proper handling of EXIF orientation when using `Quagga.decodeSingle`
|
- Proper handling of EXIF orientation when using `Quagga.decodeSingle`
|
||||||
|
|||||||
Reference in New Issue
Block a user