Skip to content

Tags: yeqown/go-qrcode

Tags

writer/standard/v1.3.0

Toggle writer/standard/v1.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(writer/standard): extend DrawContext with Neighbours bitmask ind…

…icating adjacent isSet blocks (#130)

writer/standard/v1.2.6

Toggle writer/standard/v1.2.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #127 from 1azar/feat/implement-gradient

writer/terminal/v1.1.2

Toggle writer/terminal/v1.1.2's commit message
dep: upgrade all writers go-qrcode version

writer/standard/v1.2.5

Toggle writer/standard/v1.2.5's commit message
dep: upgrade all writers go-qrcode version

writer/file/v1.0.0

Toggle writer/file/v1.0.0's commit message
dep: upgrade all writers go-qrcode version

writer/compressed/v1.0.1

Toggle writer/compressed/v1.0.1's commit message
dep: upgrade all writers go-qrcode version

v2.2.5

Toggle v2.2.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
dep: update go.work and go.mod of example and standard (#125)

writer/standard/v1.2.4

Toggle writer/standard/v1.2.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
bug(writer): pre-multiply RGB by A (#111)

color.RGBA is pre-multiplied by alpha. When A is 0 the only valid value for R, G and B is 0.

When drawing a logo with an alpha channel the blending operation may overflow when R, G, B have invalid values (i.e larger than A).

v2.2.4

Toggle v2.2.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #105 from yeqown/optimise/load-alignment-pattern-loc

feat: using precalculation for alignPattern locations

v2.2.3

Toggle v2.2.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix data race in loadAlignmentPatternLoc (#104)

* Fix data race in loadAlignmentPatternLoc

* Add test for loadAlignmentPatternLoc with concurrent access

* go test with -race flag