Skip to content

Commit e9eaa2b

Browse files
committed
Fixing web bugs
1 parent 0a36eb6 commit e9eaa2b

8 files changed

Lines changed: 1614 additions & 941 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-orchestra",
3-
"version": "0.2.3",
3+
"version": "0.3.0-alpha",
44
"description": "A toolbox to build interactive and smart instruments on the web and mobile.",
55
"main": "web/lib/index.js",
66
"scripts": {

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"eslint-plugin-react": "^6.8.0",
6262
"file-loader": "^0.9.0",
6363
"jest": "^18.0.0",
64-
"nwb": "0.12.x",
64+
"nwb": "^0.15.6",
6565
"randomcolor": "^0.4.4",
6666
"react": "^15.4.1",
6767
"react-addons-test-utils": "^15.4.1",

web/src/InstrumentJS/src/Instruments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import SoundfontPlayer from 'soundfont-player';
22
import Promise from 'bluebird';
33
import _ from 'lodash';
4-
import MidiIO from '../MidiIO/src/MidiIO';
4+
import MidiIO from '../../MidiIO/src/MidiIO';
55
import update from 'immutability-helper';
66
import Note from './Note';
77
import audioContext from './AudioContext';

web/src/InstrumentJS/src/helpers/getJSONFromMidiURL.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* mod */
2-
import MidiIO from '../../MidiIO/src/MidiIO';
2+
import MidiIO from '../../../MidiIO/src/MidiIO';
33

44
/**
55
* Download midi from url and parse it into JSON {meta, musicTracks}.

web/src/InstrumentJS/src/helpers/getTracksAndMetaFromParsedMidi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* mod */
2-
import MidiIO from '../../MidiIO/src/MidiIO';
2+
import MidiIO from '../../../MidiIO/src/MidiIO';
33

44
import Note from '../Note';
55

web/src/InstrumentJS/src/helpers/updateTempo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* mod */
22
import update from 'immutability-helper';
3-
import MidiIO from '../../MidiIO/src/MidiIO';
3+
import MidiIO from '../../../MidiIO/src/MidiIO';
44

55
import Note from '../Note';
66

web/src/MidiIO/MidiIO

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 15aea48fab7def1724d202df46103aa82d303332

0 commit comments

Comments
 (0)