Skip to content

Commit

Permalink
Version upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed Jul 17, 2018
1 parent 6e9722c commit 90b841f
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Expand Up @@ -2,7 +2,7 @@ module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: ['javascript/*.js']
all: [ 'javascript/*.js', 'test/*.js' ]
},
uglify: {
javascript: {
Expand All @@ -15,5 +15,5 @@ module.exports = function(grunt) {
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['uglify']);
grunt.registerTask('default', [ 'uglify' ]);
};
39 changes: 24 additions & 15 deletions README.md
@@ -1,17 +1,20 @@
# JZZ: MIDI library for Node.js and web-browsers

[![nodejs](https://jazz-soft.github.io/img/nodejs.jpg)](https://www.npmjs.com/package/jzz)
[![firefox](https://jazz-soft.github.io/img/firefox.jpg)](https://addons.mozilla.org/en-US/firefox/addon/jazz-midi)
[![chrome](https://jazz-soft.github.io/img/chrome.jpg)](https://chrome.google.com/webstore/detail/jazz-midi/jhdoobfdaejmldnpihidjemjcbpfmbkm)
[![opera](https://jazz-soft.github.io/img/opera.jpg)](https://chrome.google.com/webstore/detail/jazz-midi/jhdoobfdaejmldnpihidjemjcbpfmbkm)
[![safari](https://jazz-soft.github.io/img/safari.jpg)](https://jazz-soft.net/download/Jazz-Plugin)
[![msie](https://jazz-soft.github.io/img/msie.jpg)](https://jazz-soft.net/download/Jazz-Plugin)
[![windows](https://jazz-soft.github.io/img/windows.jpg)](https://jazz-soft.net/download/Jazz-Plugin)
[![macos](https://jazz-soft.github.io/img/macos.jpg)](https://jazz-soft.net/download/Jazz-Plugin)
[![linux](https://jazz-soft.github.io/img/linux.jpg)](https://jazz-soft.net/download/Jazz-Plugin)
[![raspberry pi](https://jazz-soft.github.io/img/rpi.jpg)](https://www.npmjs.com/package/jazz-midi)
[![ios](https://jazz-soft.github.io/img/ios.jpg)](https://github.com/jazz-soft/JZZ-modules)
[![android](https://jazz-soft.github.io/img/android.jpg)](https://github.com/jazz-soft/JZZ-modules)
![nodejs](https://jazz-soft.github.io/img/nodejs.jpg)
![firefox](https://jazz-soft.github.io/img/firefox.jpg)
![chrome](https://jazz-soft.github.io/img/chrome.jpg)
![opera](https://jazz-soft.github.io/img/opera.jpg)
![safari](https://jazz-soft.github.io/img/safari.jpg)
![msie](https://jazz-soft.github.io/img/msie.jpg)
![windows](https://jazz-soft.github.io/img/windows.jpg)
![macos](https://jazz-soft.github.io/img/macos.jpg)
![linux](https://jazz-soft.github.io/img/linux.jpg)
![raspberry pi](https://jazz-soft.github.io/img/rpi.jpg)
![ios](https://jazz-soft.github.io/img/ios.jpg)
![android](https://jazz-soft.github.io/img/android.jpg)

[![npm](https://img.shields.io/npm/dt/jzz.svg)](https://www.npmjs.com/package/jzz)
[![jsDelivr](https://data.jsdelivr.com/v1/package/npm/jzz/badge)](https://www.jsdelivr.com/package/npm/jzz)
[![Build Status](https://travis-ci.org/jazz-soft/JZZ.svg?branch=master)](https://travis-ci.org/jazz-soft/JZZ)

**JZZ.js** allows sending, receiving and playing MIDI messages
in **Node.js** and **all major browsers**
Expand All @@ -37,11 +40,17 @@ or [**Mozilla Add-ons**](https://addons.mozilla.org/en-US/firefox/addon/jazz-mid

## Install

[**npm install jzz**](https://www.npmjs.com/package/jzz)
[**npm install jzz**](https://www.npmjs.com/package/jzz) --save
or **bower install jzz**
or **yarn add jzz**
or get the full development version and minified scripts from [**Github**](https://github.com/jazz-soft/JZZ)

*Note:* in the (unlikely) case you get into trouble installing the
[**midi-test**](https://www.npmjs.com/package/midi-test) module,
that requires special system configuration,
you can safely remove it from the *devDependencies*
by running `npm remove midi-test --save-dev`.

## Usage

##### Plain HTML
Expand All @@ -52,7 +61,7 @@ or get the full development version and minified scripts from [**Github**](https
##### CDN

<script src="https://cdn.jsdelivr.net/npm/jzz"></script> // the latest version, or
<script src="https://cdn.jsdelivr.net/npm/jzz@0.5.0"></script> // any particular version
<script src="https://cdn.jsdelivr.net/npm/jzz@0.5.1"></script> // any particular version
//...

##### CommonJS (Browserify and Node.js command line applications)
Expand Down
2 changes: 1 addition & 1 deletion javascript/JZZ.js
Expand Up @@ -12,7 +12,7 @@
})(this, function() {

var _scope = typeof window === 'undefined' ? global : window;
var _version = '0.5.0';
var _version = '0.5.1';
var i, j, k, m, n;

var _time = Date.now || function () { return new Date().getTime(); };
Expand Down
2 changes: 1 addition & 1 deletion minified/JZZ.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jzz",
"version": "0.5.0",
"version": "0.5.1",
"description": "MIDI library for Node.js and web-browsers",
"main": "javascript/JZZ.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/mocha.js
Expand Up @@ -5,7 +5,7 @@ try {
MT = require('midi-test');
}
catch(err) {
console.log('midi-test module disabled:', err.toString());
console.log('midi-test module is disabled in this configuration');
}

describe('MIDI messages', function() {
Expand Down

0 comments on commit 90b841f

Please sign in to comment.