Skip to content

Commit

Permalink
change QRCode generation parameters to support some devices
Browse files Browse the repository at this point in the history
  • Loading branch information
jonkipu committed Sep 28, 2022
1 parent 02f1ebb commit b4aab14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<artifactId>s3</artifactId>
<packaging>hpi</packaging>
<version>0.12.2-SNAPSHOT</version>
<version>0.12.4-SNAPSHOT</version>
<name>Jenkins S3 publisher plugin</name>
<url>https://github.com/jenkinsci/s3-plugin</url>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
var qrCodeElement = artifactElement.parentElement.parentElement.getElementsBySelector("#qrcode")[0];
new QRCode(qrCodeElement, {
text: YAHOO.util.Dom.getAttribute(artifactElement, "href"),
width: 220,
height: 220,
width: 256,
height: 256,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
correctLevel : QRCode.CorrectLevel.L
});
}
});
Expand Down

0 comments on commit b4aab14

Please sign in to comment.