Skip to content

Commit

Permalink
Upgrade 3.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
emg110 committed Feb 11, 2023
1 parent 1165895 commit cb79c3b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 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.5
# Algorand QR Code Generator V3.1.6
[![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
3 changes: 2 additions & 1 deletion examples/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ <h1>Test Algorand QRCode Generator</h1>
import algoqrcode from '../lib/bundle.min.js'
let qrcode = algoqrcode({
wallet: "AMESZ5UX7ZJL5M6GYEHXM63OMFCPOJ23UXCQ6CVTI2HVX6WUELYIY262WI",
label: "emg110",
amount: 1000000,
note: "This is a payment",
output: "svg",
size:256
})
Expand Down
2 changes: 1 addition & 1 deletion index.mjs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import algoqrcode from "./src/index.mjs";
import algoqrcode from "./lib/bundle.min.js";
export default algoqrcode
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "algorand-qrcode",
"version": "3.1.5",
"version": "3.1.6",
"description": "Algorand QR Code generator module in JS",
"repository": {
"type": "git",
Expand All @@ -10,7 +10,7 @@
"bin": {
"algoqrcode": "bin/algoqrcode.cjs"
},
"main": "lib/algoqrcode.js",
"main": "index.mjs",
"author": "MG <[email protected]>",
"contributors": [
{
Expand Down

0 comments on commit cb79c3b

Please sign in to comment.