Maintenance.

pull/18/head v0.10.0
Lars Jung 11 years ago
parent e4494e53dd
commit 2b106ad642

@ -3,7 +3,6 @@
[![web][web-img]][web] [![GitHub][github-img]][github] [![bower][bower-img]][github] [![web][web-img]][web] [![GitHub][github-img]][github] [![bower][bower-img]][github]
jQuery plugin to dynamically generate QR codes. Uses [QR Code Generator][qrcode] (MIT). jQuery plugin to dynamically generate QR codes. Uses [QR Code Generator][qrcode] (MIT).
For bug reports and feature requests please use [issues][github-issues].
## License ## License
@ -32,7 +31,6 @@ THE SOFTWARE.
[web]: http://larsjung.de/qrcode/ [web]: http://larsjung.de/qrcode/
[github]: https://github.com/lrsjng/jquery-qrcode [github]: https://github.com/lrsjng/jquery-qrcode
[github-issues]: https://github.com/lrsjng/jquery-qrcode/issues
[web-img]: http://img.shields.io/badge/web-larsjung.de/qrcode-a0a060.svg?style=flat [web-img]: http://img.shields.io/badge/web-larsjung.de/qrcode-a0a060.svg?style=flat
[github-img]: http://img.shields.io/badge/GitHub-lrsjng/jquery--qrcode-a0a060.svg?style=flat [github-img]: http://img.shields.io/badge/GitHub-lrsjng/jquery--qrcode-a0a060.svg?style=flat

@ -1,8 +1,8 @@
{ {
"name": "jquery-qrcode", "name": "jquery-qrcode",
"version": "0.9.5", "version": "0.10.0",
"description": "generate QR codes dynamically", "description": "generate QR codes dynamically",
"homepage": "http://larsjung.de/qrcode/", "homepage": "http://larsjung.de/jquery-qrcode/",
"authors": [ "authors": [
"Lars Jung <lrsjng@gmail.com> (http://larsjung.de)" "Lars Jung <lrsjng@gmail.com> (http://larsjung.de)"
], ],

@ -1,5 +1,4 @@
/*! jQuery.qrcode 0.9.5 - //larsjung.de/qrcode (MIT) - uses //github.com/kazuhikoarase/qrcode-generator (MIT) */ /* jQuery.qrcode 0.10.0 - http://larsjung.de/jquery-qrcode/ - uses //github.com/kazuhikoarase/qrcode-generator (MIT) */
(function ($) { (function ($) {
'use strict'; 'use strict';

File diff suppressed because one or more lines are too long

@ -16,7 +16,7 @@ module.exports = function (make) {
build = path.join(root, 'build'); build = path.join(root, 'build');
make.version('>=0.10.0'); make.version('=0.11.0');
make.defaults('release'); make.defaults('release');
@ -57,16 +57,17 @@ module.exports = function (make) {
make.target('build', ['clean', 'lint'], 'build all files').sync(function () { make.target('build', ['clean', 'lint'], 'build all files').sync(function () {
var env = { var header = '/* ' + pkg.displayName + ' ' + pkg.version + ' - ' + pkg.homepage + ' - uses //github.com/kazuhikoarase/qrcode-generator (MIT) */\n';
pkg: pkg var env = {pkg: pkg};
};
$(src + ': jquery.qrcode.js') $(src + ': jquery.qrcode.js')
.includify() .includify()
.handlebars(env) .handlebars(env)
.wrap(header)
.WRITE($.map.p(src, dist)) .WRITE($.map.p(src, dist))
.WRITE($.map.p(src, build).s('.js', '-' + pkg.version + '.js')) .WRITE($.map.p(src, build).s('.js', '-' + pkg.version + '.js'))
.uglifyjs() .uglifyjs()
.wrap(header)
.WRITE($.map.p(src, dist).s('.js', '.min.js')) .WRITE($.map.p(src, dist).s('.js', '.min.js'))
.WRITE($.map.p(src, build).s('.js', '-' + pkg.version + '.min.js')); .WRITE($.map.p(src, build).s('.js', '-' + pkg.version + '.min.js'));

@ -1,9 +1,9 @@
{ {
"name": "jquery-qrcode", "name": "jquery-qrcode",
"displayName": "jQuery.qrcode", "displayName": "jQuery.qrcode",
"version": "0.9.5", "version": "0.10.0",
"description": "generate QR codes dynamically", "description": "generate QR codes dynamically",
"homepage": "http://larsjung.de/qrcode/", "homepage": "http://larsjung.de/jquery-qrcode/",
"bugs": "https://github.com/lrsjng/jquery-qrcode/issues", "bugs": "https://github.com/lrsjng/jquery-qrcode/issues",
"author": "Lars Jung <lrsjng@gmail.com> (http://larsjung.de)", "author": "Lars Jung <lrsjng@gmail.com> (http://larsjung.de)",
"license": "MIT", "license": "MIT",

@ -1,5 +1,3 @@
/*! {{pkg.displayName}} {{pkg.version}} - //larsjung.de/qrcode (MIT) - uses //github.com/kazuhikoarase/qrcode-generator (MIT) */
(function ($) { (function ($) {
'use strict'; 'use strict';

Loading…
Cancel
Save