Skip to content

Commit

Permalink
Release v3.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
lindell committed Jun 12, 2016
1 parent 6ff0b87 commit d78e4d4
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 11 deletions.
3 changes: 3 additions & 0 deletions bin/JsBarcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ function registerBarcode(barcodes, name) {
}

function encode(text, Encoder, options) {
// Ensure that text is a string
text = "" + text;

var encoder = new Encoder(text, options);

// If the input is not valid for the encoder, throw error.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "JsBarcode",
"main": "dist/JsBarcode.all.min.js",
"version": "3.3.12",
"version": "3.3.13",
"homepage": "https://github.com/lindell/JsBarcode",
"authors": [
"Johan Lindell <johan@lindell.me>"
Expand Down
3 changes: 3 additions & 0 deletions dist/JsBarcode.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,9 @@
}

function encode(text, Encoder, options) {
// Ensure that text is a string
text = "" + text;

var encoder = new Encoder(text, options);

// If the input is not valid for the encoder, throw error.
Expand Down
4 changes: 2 additions & 2 deletions dist/JsBarcode.all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/barcodes/JsBarcode.code128.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/barcodes/JsBarcode.code39.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/barcodes/JsBarcode.ean-upc.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/barcodes/JsBarcode.itf-14.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/barcodes/JsBarcode.itf.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/barcodes/JsBarcode.msi.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/barcodes/JsBarcode.pharmacode.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsbarcode",
"version": "3.3.12",
"version": "3.3.13",
"description": "JsBarcode is a simple and powerfull way to create different types of 1d barcodes.",
"main": "./bin/JsBarcode.js",
"directories": {
Expand Down

0 comments on commit d78e4d4

Please sign in to comment.