Skip to content

Commit

Permalink
Version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
livibetter committed Mar 25, 2013
1 parent f259260 commit 88536ec
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 23 deletions.
9 changes: 6 additions & 3 deletions CHANGES.mkd
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
CHANGES
=======

2012-01-10
----------
## Version 0.5.1 (2013-03-25T23:13:29Z)

* Still same code as Version 0.5.0.1, only bumping version for publishing to jQuery Plugins website and complying the version format.

## 2012-01-10

* This project is moved from Google Code without commit history, you can still find them at [here](http://code.google.com/p/lilbtn/source/browse/#hg%2Fsrc%2Fstatic%2Fjs%2Fjquery) and the [old documentation](http://code.google.com/p/lilbtn/wiki/JsJqueryJknav). No code changes in the move, still version 0.5.0.1, updated on 2011-05-24.
* Re-licensed to MIT License from BSD License.
* Re-licensed to MIT License from BSD License.
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012 Yu-Jie Lin
Copyright (c) 2010-2013 Yu-Jie Lin

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
all: jquery.jknav.min.js

jquery.jknav.min.js: jquery.jknav.js
curl --data output_info=compiled_code --data-urlencode js_code@jquery.jknav.js http://closure-compiler.appspot.com/compile > jquery.jknav.min.js

clean:
rm -f jquery.jknav.min.js

.PHONY: clean
29 changes: 29 additions & 0 deletions jknav.jquery.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "jknav",
"version": "0.5.1",
"title": "jQuery jknav",
"author": {
"name": "Yu-Jie Lin",
"email": "livibetter@gmail.com",
"url": "http://yjl.im"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/livibetter/jquery-jknav/blob/master/COPYING"
}
],
"dependencies": {
"jquery": "*"
},

"description": "Enabling jk binding navigation on a page.",
"keywords": [
"jk",
"navigation"
],
"homepage": "https://github.com/livibetter/jquery-jknav",
"docs": "https://github.com/livibetter/jquery-jknav",
"demo": "http://livibetter.github.com/jquery-jknav/jquery.jknav.demo.html",
"bugs": "https://github.com/livibetter/jquery-jknav/issues"
}
14 changes: 7 additions & 7 deletions jquery.jknav.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* @preserve jknav
* @name jquery.jknav.js
* @author Yu-Jie Lin http://j.mp/Google-livibetter
* @version 0.5.0.1
* @date 05-24-2011
* @copyright (c) 2010, 2011 Yu-Jie Lin <livibetter@gmail.com>
* @license BSD License
* @homepage http://code.google.com/p/lilbtn/wiki/JsJqueryJknav
* @example http://lilbtn.googlecode.com/hg/src/static/js/jquery/jquery.jknav.demo.html
* @author Yu-Jie Lin
* @version 0.5.1
* @date 2013-03-26
* @copyright (c) 2010-2013 Yu-Jie Lin <livibetter@gmail.com>
* @license MIT License
* @homepage https://github.com/livibetter/jquery-jknav
* @example http://livibetter.github.com/jquery-jknav/jquery.jknav.demo.html
*/
(function ($) {
/**
Expand Down
24 changes: 12 additions & 12 deletions jquery.jknav.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 88536ec

Please sign in to comment.