From 21ded5d58f19f83ce6d765657f843362808198e4 Mon Sep 17 00:00:00 2001 From: aruZeta Date: Mon, 26 Sep 2022 18:24:04 +0200 Subject: [PATCH] [release] v2.2.1 --- QRgen.nimble | 2 +- README.md | 32 ++++++++++++++++---------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/QRgen.nimble b/QRgen.nimble index e11d2e0..cb3bd96 100644 --- a/QRgen.nimble +++ b/QRgen.nimble @@ -1,6 +1,6 @@ # Package -version = "2.2.0" +version = "2.2.1" author = "aruZeta" description = "A QR code generation library." license = "MIT" diff --git a/README.md b/README.md index 001d0e1..fb581a7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

-

@@ -45,7 +45,7 @@ myQR.printTerminal ```

- +

--- @@ -59,7 +59,7 @@ myQR.printSvg ```

- +

--- @@ -71,7 +71,7 @@ myQR.printSvg("#1d2021","#98971a") ```

- +

`"#1d2021"` sets the "light" or "background" color. @@ -86,7 +86,7 @@ myQR.printSvg("#1d2021","#98971a",60) ```

- +

`60` sets the alignment patterns' roundness to 60%. @@ -100,7 +100,7 @@ myQR.printSvg("#1d2021","#98971a",100,100) ```

- +

The first `100` sets the alignment patterns' roundness to 100% @@ -116,7 +116,7 @@ myQR.printSvg("#1d2021","#98971a",100,100,50) ```

- +

The last `50` sets the module's separation to 50% (making the module having a @@ -137,7 +137,7 @@ myQR.printSvg("#1d2021","#98971a",100,100,svgImg=readFile("QRgen-logo.svg")) ```

- +

`svgImg` adds an SVG image embed in the center of generated @@ -173,7 +173,7 @@ myQR.renderImg ```

- +

--- @@ -185,7 +185,7 @@ myQR.renderImg("#1d2021","#98971a") ```

- +

`"#1d2021"` sets the "light" or "background" color. @@ -200,7 +200,7 @@ myQR.renderImg("#1d2021","#98971a",60) ```

- +

`60` sets the alignment patterns' roundness to 60%. @@ -214,7 +214,7 @@ myQR.renderImg("#1d2021","#98971a",100,100) ```

- +

The first `100` sets the alignment patterns' roundness to 100% @@ -230,7 +230,7 @@ myQR.renderImg("#1d2021","#98971a",100,100,50) ```

- +

The last `50` sets the module's separation to 50% (making the module having a @@ -251,7 +251,7 @@ myQR.renderImg("#1d2021","#98971a",100,100,img=readImage("QRgen-logo.png")) ```

- +

`img` embeds an `Image` in the center of the generated QR code, @@ -268,8 +268,8 @@ Note that you can change the resolution of the generated image by setting ## Documentation -Check the [docs](https://aruzeta.github.io/QRgen/develop/QRgen.html) to -know more about the develop API. +Check the [docs](https://aruzeta.github.io/QRgen/main/QRgen.html) to +know more about the main API. ## License