Skip to content

Commit

Permalink
Merge pull request #58 from dmauro/development
Browse files Browse the repository at this point in the history
Updating to 2.1.0
  • Loading branch information
dmauro committed Nov 9, 2014
2 parents e7cb9e7 + 738acab commit 06deea7
Show file tree
Hide file tree
Showing 10 changed files with 185 additions and 64 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Keypress
========
Version 2.0.3
Version 2.1.0

Keypress is a robust keyboard input capturing Javascript utility
focused on input for games. For details and documentation, please
Expand All @@ -13,7 +13,14 @@ released under the Apache License, version 2.0
**What's new**
---------------

2.03
2.1.0

* Another fix for unregistering combos using an array of keys
* Added a destroy method to cleanup a listener. Thanks to [smerickson](https://github.com/smerickson) for submitting. [Pull request #51](https://github.com/dmauro/Keypress/pull/51)
* Fixed compatibility for '-'/'_' and '='/'+' keys in FireFox. Thanks to [simonsarris](https://github.com/simonsarris) for spotting the bug. [Issue #50](https://github.com/dmauro/Keypress/issues/50)
* Added []spm support](http://spmjs.io/package/keypress). Thanks to [sorrycc](https://github.com/sorrycc). [Pull request #52](https://github.com/dmauro/Keypress/pull/52)

2.0.3

* Fixed a bug unregistering combos using arrays of keys
* Added ie8 compatibility shim. Thanks to [barrkel](https://github.com/barrkel). [Issue #41](https://github.com/dmauro/Keypress/issues/41)
Expand Down
31 changes: 25 additions & 6 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
{
"name" : "Keypress",
"version" : "2.0.3",
"main" : "keypress.js",
"description" : "a robust keyboard input capturing Javascript utility focused on input for games. For details and documentation, please visit http://dmauro.github.io/Keypress/",
"devDependencies" : {
"jasmine" : "1.3.0"
"name": "Keypress",
"main": "keypress-2.1.0.min.js",
"version": "2.1.0",
"homepage": "https://github.com/dmauro/Keypress",
"authors": [
"David Mauro <[email protected]>"
],
"description": "A robust keyboard input capturing Javascript utility focused on input for games. For details and documentation, please visit http://dmauro.github.io/Keypress",
"moduleType": [
"amd",
"globals"
],
"license": "Apache 2.0",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"coffee",
"js",
"*.sh",
"*.jar"
],
"devDependencies": {
"jasmine": "git://github.com/pivotal/jasmine.git#1.3.0"
}
}
2 changes: 1 addition & 1 deletion coffee-compiler.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
VERSION="2.0.3"
VERSION="2.1.0"
YEAR="2014"
cd "$( cd "$( dirname "$0" )" && pwd )"
coffee -c keypress.coffee
Expand Down
32 changes: 0 additions & 32 deletions keypress-2.0.3.min.js

This file was deleted.

Loading

0 comments on commit 06deea7

Please sign in to comment.