Skip to content

Commit

Permalink
Upgrade 3.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
emg110 committed Feb 11, 2023
1 parent e2c99b7 commit e7b1366
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[<img title="Algorand QR Code Generator (Banner art by Stasya Tikhonova, curtsey of Algorand)" src="./examples/images/algorand-qrcode-banner.jpg">](https://developer.algorand.org/solutions/algorand-qr-code-generator-javascript/)

# Algorand QR Code Generator V3.1.6
# Algorand QR Code Generator V3.1.7
[![npm](https://img.shields.io/static/v1?label=Algorand&message=Published&color=green&style=flat-square)](https://developer.algorand.org/solutions/algorand-qr-code-generator-javascript/)
[![NPM](https://img.shields.io/npm/v/algorand-qrcode.svg)](https://www.npmjs.com/package/algorand-qrcode) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
[![npm](https://img.shields.io/static/v1?label=license&message=MIT&color=green&style=flat-square)](https://github.com/emg110/algorand-qrcode/blob/master/license)
Expand Down
2 changes: 1 addition & 1 deletion bin/algoqrcode.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function handle(options) {

return console.log(new QRCode(options).svg())
} else {
return QRCodeTerminal.generate(options.content)
return QRCodeTerminal.generate(options.content, {small: true})
}

}
Expand Down
2 changes: 1 addition & 1 deletion lib/bundle.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/bundle.min.js.map

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": "algorand-qrcode",
"version": "3.1.6",
"version": "3.1.7",
"description": "Algorand QR Code generator module in JS",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const algoqrcode = (options) =>{
return qrcode
} else {
let opts = parseOptions(options)
return QRCodeTerminal.generate(opts.content);
return QRCodeTerminal.generate(opts.content, {small: true});
}


Expand Down

0 comments on commit e7b1366

Please sign in to comment.