Skip to content

Commit

Permalink
Release v3.3.17
Browse files Browse the repository at this point in the history
  • Loading branch information
lindell committed Jul 28, 2016
1 parent 9d0be6a commit 41dd5f7
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ Download or get the CDN link to the script:
|------|--------------------|:-----------:|---------------:|
| *All* | *All the barcodes!* | *7.3 kB* | *[JsBarcode.all.min.js][1]* |
| CODE128 | CODE128 (auto and force mode) | 5 kB | [JsBarcode.code128.min.js][2] |
| CODE39 | CODE39 | 4.1 kB | [JsBarcode.code39.min.js][3] |
| CODE39 | CODE39 | 4 kB | [JsBarcode.code39.min.js][3] |
| EAN / UPC | EAN-13, EAN-8, EAN-5, EAN-2, UPC (A) | 4.6 kB | [JsBarcode.ean-upc.min.js][4] |
| ITF-14 | ITF-14 | 3.8 kB | [JsBarcode.itf-14.min.js][5] |
| ITF | ITF | 3.7 kB | [JsBarcode.itf.min.js][6] |
| MSI | MSI, MSI10, MSI11, MSI1010, MSI1110 | 4.2 kB | [JsBarcode.msi.min.js][7] |
| MSI | MSI, MSI10, MSI11, MSI1010, MSI1110 | 4.1 kB | [JsBarcode.msi.min.js][7] |
| Pharmacode | Pharmacode | 3.6 kB | [JsBarcode.pharmacode.min.js][8] |

### Step 2:
Expand Down
2 changes: 1 addition & 1 deletion bin/renderers/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var _merge2 = _interopRequireDefault(_merge);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

function getEncodingHeight(encoding, options) {
return options.height + (options.displayValue && encoding.text.length > 0 ? options.fontSize : 0) + options.textMargin + options.marginTop + options.marginBottom;
return options.height + (options.displayValue && encoding.text.length > 0 ? options.fontSize + options.textMargin : 0) + options.marginTop + options.marginBottom;
}

function getBarcodePadding(textWidth, barcodeWidth, options) {
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.16",
"version": "3.3.17",
"homepage": "https://github.com/lindell/JsBarcode",
"authors": [
"Johan Lindell <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion dist/JsBarcode.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ var _merge2 = _interopRequireDefault(_merge);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

function getEncodingHeight(encoding, options) {
return options.height + (options.displayValue && encoding.text.length > 0 ? options.fontSize : 0) + options.textMargin + options.marginTop + options.marginBottom;
return options.height + (options.displayValue && encoding.text.length > 0 ? options.fontSize + options.textMargin : 0) + options.marginTop + options.marginBottom;
}

function getBarcodePadding(textWidth, barcodeWidth, options) {
Expand Down
2 changes: 1 addition & 1 deletion 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.16",
"version": "3.3.17",
"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 41dd5f7

Please sign in to comment.