8 Commits
v2.0.2 ... main

Author SHA1 Message Date
Gitea Actions
e829f08aca Update manifest version to 2.0.5 [▶️] 2025-12-13 07:04:54 +00:00
a20a4a698b Delete public/jquery-qrcode/examples/basic.html
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 10m3s
2025-12-13 07:04:39 +00:00
c85df7cd44 Delete public/jquery-qrcode/examples/demo.html
Some checks failed
Build, Push, Publish / Build & Release (push) Has been cancelled
2025-12-13 07:04:34 +00:00
Gitea Actions
6469f92c12 Update manifest version to 2.0.4 [▶️] 2025-12-13 06:48:39 +00:00
303e1ad89e revert
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 10m0s
2025-12-13 03:48:22 -03:00
Gitea Actions
73da0e732c Update manifest version to 2.0.3 [▶️] 2025-12-13 06:33:07 +00:00
3afbc4d640 Merge branch 'main' of https://git.icc.gg/ivancarlos/wificode
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 9m58s
2025-12-13 03:32:51 -03:00
e8bca48304 remote js 2025-12-13 03:32:33 -03:00
4 changed files with 3 additions and 54 deletions

View File

@@ -1,4 +1,4 @@
{ {
"version": "2.0.2", "version": "2.0.5",
"author": "Ivan Carlos" "author": "Ivan Carlos"
} }

View File

@@ -1,29 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>basic example</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<!--<script type="text/javascript" src="../jquery.qrcode.min.js"></script>
--><script type="text/javascript" src="../src/jquery.qrcode.js"></script>
<script type="text/javascript" src="../src/qrcode.js"></script>
<p>Render in table</p>
<div id="qrcodeTable"></div>
<p>Render in canvas</p>
<div id="qrcodeCanvas"></div>
<script>
//jQuery('#qrcode').qrcode("this plugin is great");
jQuery('#qrcodeTable').qrcode({
render : "table",
text : "http://jetienne.com"
});
jQuery('#qrcodeCanvas').qrcode({
text : "http://jetienne.com"
});
</script>
</body>
</html>

View File

@@ -1,24 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Demo page</title>
</head>
<body>
<p>
TODO make a nice looking pure client qrcode generator
even allow download of the image
</p>
<div id="output"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="../jquery.qrcode.min.js"></script>
<script>
jQuery(function(){
jQuery('#output').qrcode("http://jetienne.com");
})
</script>
</body>
</html>

View File

@@ -218,6 +218,7 @@ input:focus, select:focus {
#qrcode canvas { #qrcode canvas {
border-radius: 8px; border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
} }
/* History Dropdown Styles */ /* History Dropdown Styles */
@@ -298,5 +299,6 @@ footer a:hover {
.card { box-shadow: none; padding: 0; } .card { box-shadow: none; padding: 0; }
.page-header, #form, #history-drop, footer, .btn { display: none !important; } .page-header, #form, #history-drop, footer, .btn { display: none !important; }
#result-area { display: block !important; margin: 0; } #result-area { display: block !important; margin: 0; }
#qrcode canvas { box-shadow: none; }
#showssid, #showkey { display: block !important; color: black; } #showssid, #showkey { display: block !important; color: black; }
} }