Skip to content

Commit

Permalink
verison bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Mar 7, 2015
1 parent 19150d2 commit b2bf0af
Show file tree
Hide file tree
Showing 19 changed files with 67 additions and 43 deletions.
38 changes: 30 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,36 @@ Wiki: [Home](https://github.com/Mottie/Keyboard/wiki/Home) | [FAQ](https://githu

Only the latest changes will be shown below, see the wiki log to view older versions.

### Version 1.22.0 (3/7/2015)

* Add AMD/browserify support.
* Add `{del}` key & modify `{bksp}` key.
* The delete key allows deleting content to the right of the caret.
* The backspace key still allows deleting content to the left of the caret, it's code was only tweaked internally to not use plain text to indicate a backspace.
* Add `{normal}` key & deprecate `{default}` key:
* The `{normal}` key is a duplicate of the `{default}` key.
* Since "default" is a reserved javascript word, this key is being deprecated to prevent future issues.
* `last` variable changes:
* Rename `last.value` to `last.val` - it was inconsistent internally. This contains the current preview input value.
* Add `last.event` - contains last DOM event object; saved by `keypress`, `repeater` and events set by the `keyBinding` option.
* Add `last.$key` - jQuery object of the last virtual key used; it is set to an empty array when the physical keyboard is used.
* Add `last.layout` - contains the name of the layout last used by the keyboard.
* Update `last.eventTime` upon closing the keyboard. See [issue #333](https://github.com/Mottie/Keyboard/issues/333) on how this can be useful.
* Remove internal keyboard position setting
* Absolute positioning is already defined in the css
* The inline setting was interfering with alternative positioning.
* Caret
* Started centralizing caret positioning code.
* Anticipating the possibility of swapping out caret positioning plugins, or using an input mask plugin.
* A suitable alternatives has yet to be found; either way, more code adjustment will be necessary to make this work.
* Set caret position to end when caret positioning isn't supported; it was previously returning a full selection.
* Demo
* Add jQuery UI theme switcher to the [combined layouts demo](http://mottie.github.io/Keyboard/docs/layouts.html).
* Also added some missing layouts to the combined layouts demo.
* Grunt build
* Add a "grunt layout" build to build everything.
* The default "grunt" build now ignores layout files as uglifying & concatenating layout files takes more time.

### Version 1.21.3 (3/5/2015)

* Add Extender extension.
Expand All @@ -110,11 +140,3 @@ Only the latest changes will be shown below, see the wiki log to view older vers
* Any layout can be used, but only the "normal" keyset will be added.
* See [the demo here](http://mottie.github.io/Keyboard/docs/extender.html).
* The [documentation can be found here](https://github.com/Mottie/Keyboard/wiki/Setup#wiki-extender).

### Version 1.21.1 (2/28/2015)

* Add toggle action key
* Allows enabling or disabling all keyboard keys & preview input.
* Button uses base64 encoded svgs for its icon (included in the css/images directory).
* Fulfills [issue #281](https://github.com/Mottie/Keyboard/issues/281).
* Autocomplete: Fix event error & caret repositioning issue.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "keyboard",
"version": "1.21.3",
"version": "1.22.0",
"main": [
"dist/js/jquery.keyboard.min.js",
"dist/css/keyboard.min.css",
Expand Down
2 changes: 1 addition & 1 deletion dist/js/jquery.keyboard.extension-all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/jquery.keyboard.extension-autocomplete.min.js

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

2 changes: 1 addition & 1 deletion dist/js/jquery.keyboard.extension-mobile.min.js

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

2 changes: 1 addition & 1 deletion dist/js/jquery.keyboard.extension-navigation.min.js

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

2 changes: 1 addition & 1 deletion dist/js/jquery.keyboard.extension-previewkeyset.min.js

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

2 changes: 1 addition & 1 deletion dist/js/jquery.keyboard.extension-typing.min.js

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

4 changes: 2 additions & 2 deletions dist/js/jquery.keyboard.min.js

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions js/jquery.keyboard.extension-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
*/
/*! jQuery UI Virtual Keyboard - ALL Extensions + Mousewheel */
/*! jQuery UI Virtual Keyboard Autocomplete v1.8 *//*
* for Keyboard v1.18+ only (2/28/2015)
/*! jQuery UI Virtual Keyboard Autocomplete v1.9 *//*
* for Keyboard v1.18+ only (3/7/2015)
*
* By Rob Garrison (aka Mottie & Fudgey)
* Licensed under the MIT License
Expand Down Expand Up @@ -254,8 +254,8 @@ $.fn.addAutocomplete = function(){

})(jQuery);

/*! jQuery UI Virtual Keyboard for jQuery Mobile Themes v1.3 *//*
* for Keyboard v1.18+ (updated 2/15/2015)
/*! jQuery UI Virtual Keyboard for jQuery Mobile Themes v1.4 *//*
* for Keyboard v1.18+ (updated 3/7/2015)
*
* By Rob Garrison (aka Mottie & Fudgey)
* Licensed under the MIT License
Expand Down Expand Up @@ -435,8 +435,8 @@ $.fn.addMobile = function(options){

}));

/*! jQuery UI Virtual Keyboard Navigation v1.5 *//*
* for Keyboard v1.18+ only (updated 2/15/2015)
/*! jQuery UI Virtual Keyboard Navigation v1.6 *//*
* for Keyboard v1.18+ only (updated 3/7/2015)
*
* By Rob Garrison (aka Mottie & Fudgey)
* Licensed under the MIT License
Expand Down Expand Up @@ -655,8 +655,8 @@ $.fn.addNavigation = function(options){

}));

/*! jQuery UI Virtual Keyboard previewKeyset v1.0 *//*
* for Keyboard v1.18+ only (updated 2/15/2015)
/*! jQuery UI Virtual Keyboard previewKeyset v1.1 *//*
* for Keyboard v1.18+ only (updated 3/7/2015)
*
* By Rob Garrison (aka Mottie & Fudgey)
* Licensed under the MIT License
Expand Down Expand Up @@ -739,7 +739,7 @@ $.fn.previewKeyset = function( options ) {
}));

/*
* jQuery UI Virtual Keyboard Scramble Extension v1.5 for Keyboard v1.18+ (updated 2/15/2015)
* jQuery UI Virtual Keyboard Scramble Extension v1.6 for Keyboard v1.18+ (updated 3/7/2015)
*
* By Rob Garrison (aka Mottie & Fudgey)
* Licensed under the MIT License
Expand Down Expand Up @@ -959,8 +959,8 @@ $.keyboard = $.keyboard || {};

}));

/*! jQuery UI Virtual Keyboard Typing Simulator v1.7 *//*
* for Keyboard v1.18+ only (2/15/2015)
/*! jQuery UI Virtual Keyboard Typing Simulator v1.8 *//*
* for Keyboard v1.18+ only (3/7/2015)
*
* By Rob Garrison (aka Mottie & Fudgey)
* Licensed under the MIT License
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.keyboard.extension-autocomplete.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*! jQuery UI Virtual Keyboard Autocomplete v1.8 *//*
* for Keyboard v1.18+ only (2/28/2015)
/*! jQuery UI Virtual Keyboard Autocomplete v1.9 *//*
* for Keyboard v1.18+ only (3/7/2015)
*
* By Rob Garrison (aka Mottie & Fudgey)
* Licensed under the MIT License
Expand Down
Loading

0 comments on commit b2bf0af

Please sign in to comment.