mirror of
https://github.com/serratus/quaggaJS.git
synced 2026-08-12 21:21:42 +08:00
Updated to 0.6.4
This commit is contained in:
@@ -1090,8 +1090,8 @@ define(
|
|||||||
function(BarcodeReader) {
|
function(BarcodeReader) {
|
||||||
|
|
||||||
|
|
||||||
function EANReader() {
|
function EANReader(opts) {
|
||||||
BarcodeReader.call(this);
|
BarcodeReader.call(this, opts);
|
||||||
}
|
}
|
||||||
|
|
||||||
var properties = {
|
var properties = {
|
||||||
@@ -1124,8 +1124,8 @@ define(
|
|||||||
[2, 1, 1, 3]
|
[2, 1, 1, 3]
|
||||||
]},
|
]},
|
||||||
CODE_FREQUENCY : {value: [0, 11, 13, 14, 19, 25, 28, 21, 22, 26]},
|
CODE_FREQUENCY : {value: [0, 11, 13, 14, 19, 25, 28, 21, 22, 26]},
|
||||||
SINGLE_CODE_ERROR: {value: 1},
|
SINGLE_CODE_ERROR: {value: 0.7},
|
||||||
AVG_CODE_ERROR: {value: 0.5}
|
AVG_CODE_ERROR: {value: 0.3}
|
||||||
};
|
};
|
||||||
|
|
||||||
EANReader.prototype = Object.create(BarcodeReader.prototype, properties);
|
EANReader.prototype = Object.create(BarcodeReader.prototype, properties);
|
||||||
|
|||||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
@@ -7,7 +7,7 @@ showInMenu: true
|
|||||||
quaggaJS
|
quaggaJS
|
||||||
========
|
========
|
||||||
|
|
||||||
- [Changelog](#changelog) (2015-05-18)
|
- [Changelog](#changelog) (2015-05-20)
|
||||||
|
|
||||||
## What is QuaggaJS?
|
## What is QuaggaJS?
|
||||||
|
|
||||||
@@ -299,6 +299,11 @@ work.
|
|||||||
|
|
||||||
## <a name="changelog">Changelog</a>
|
## <a name="changelog">Changelog</a>
|
||||||
|
|
||||||
|
### 2015-05-20
|
||||||
|
- Improvements
|
||||||
|
- Making EAN and UPC readers even more restrictive
|
||||||
|
- Added example using requirejs
|
||||||
|
|
||||||
### 2015-05-18
|
### 2015-05-18
|
||||||
- Improvements
|
- Improvements
|
||||||
- Making EAN and UPC readers more restrictive
|
- Making EAN and UPC readers more restrictive
|
||||||
|
|||||||
Reference in New Issue
Block a user