Skip to content

Releases: kabirbaidhya/keycode-js

v3.1.0

14 Jun 11:40
8a47aae
Compare
Choose a tag to compare

v3.0.0

05 Jun 16:11
e13bcbf
Compare
Choose a tag to compare

Breaking Changes

  • Update missing keys and prefix key codes specific to firefox #36 [breaking change] (kabirbaidhya)

    • Several keys we were done as per this list that also had Gecko specific constants that only worked for Firefox. They've been prefixed as KEY_FIREFOX_
    • Constants KEY_SEMICOLON and KEY_EQUALS were previously using the firefox specific values - now updated to use the standard values. To use the older value you'll need to use KEY_FIREFOX_SEMICOLON and KEY_FIREFOX_EQUALS. See #35
    • Fix KEY_RIGHT_CMD value which is 92 - old value was wrong.
    • Added a new missing key KEY_DASH = 189

Other Changes

Closed Issues

v2.0.3

02 Sep 10:59
e15d02e
Compare
Choose a tag to compare

Changes

v2.0.2

27 Aug 12:39
a830d7e
Compare
Choose a tag to compare

Improvements

v2.0.1

20 Aug 10:28
93849c3
Compare
Choose a tag to compare

Improvements

v2.0.0

20 Aug 09:51
e831b08
Compare
Choose a tag to compare

Breaking Change

  • For ES2015+ default import syntax is no longer supported.
    Upgrade will need the following change if you're using ES2015+.

    - import KeyCode from 'keycode-js';
    + import * as KeyCode from 'keycode-js'; 

    Alternatively, you can still use named export.

    import { KEY_RETURN } from 'keycode-js';

Closed issues

Improvements

v1.0.4

31 Jan 13:53
dca1ef1
Compare
Choose a tag to compare

Implemented enhancements

v1.0.3

18 Oct 13:10
Compare
Choose a tag to compare

v1.0.2

25 Aug 14:37
Compare
Choose a tag to compare
  • Remove node v4 from .travis.yml

v1.0.1

25 Aug 14:09
Compare
Choose a tag to compare
  • Update README instructions
  • Upgrade dev dependencies