Skip to content

Commit

Permalink
version up to 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hoch committed Apr 27, 2017
1 parent 56a94e1 commit b2dfee2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ foaRenderer.initialize().then(function () {
}
```

Currently the HRIR for `FOARenderer` is available on Omnitone's repository. If you do not need a configurable audio path for ambisonic rendering, `FOARenderer` is strongly recommended. See the example [here](https://cdn.rawgit.com/GoogleChrome/omnitone/962089ca/examples/foa-renderer.html).
Currently the HRIR for `FOARenderer` is available on Omnitone's repository. If you do not need a configurable audio path for ambisonic rendering, `FOARenderer` is strongly recommended. See the example [here](https://cdn.rawgit.com/GoogleChrome/omnitone/master/examples/foa-renderer.html).

### FOADeocoder (Fully-configurable)

Expand All @@ -111,7 +111,7 @@ decoder.initialize().then(function () {
});
```

The decoder constructor accepts the context and the element as arguments. `FOADecoder` uses [HRIRs](https://github.com/google/spatial-media/tree/master/support/hrtfs/cube) from Google spatial media repository, but you can use a custom set of HRIR files as well. The initialization of a decoder instance returns a promise which resolves when the resources (i.e. impulse responses) are fully loaded. See the example [here](https://cdn.rawgit.com/GoogleChrome/omnitone/962089ca/examples/foa-decoder.html).
The decoder constructor accepts the context and the element as arguments. `FOADecoder` uses [HRIRs](https://github.com/google/spatial-media/tree/master/support/hrtfs/cube) from Google spatial media repository, but you can use a custom set of HRIR files as well. The initialization of a decoder instance returns a promise which resolves when the resources (i.e. impulse responses) are fully loaded. See the example [here](https://cdn.rawgit.com/GoogleChrome/omnitone/master/examples/foa-decoder.html).

### Basic Features: Rotation, ChannelMap, Rendering Mode

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "omnitone",
"version": "0.2.1",
"version": "0.2.2",
"description": "Spatial Audio Decoder in Web Audio API",
"main": "build/omnitone.js",
"keywords": [
Expand All @@ -24,7 +24,7 @@
"scripts": {
"build": "webpack --progress --color",
"watch": "webpack --progress --color --watch",
"build-all": "webpack --config webpack.config.all.js --progress --color",
"build-all": "webpack --progress --color && webpack --config webpack.config.all.js --progress --color",
"test": "node_modules/karma/bin/karma start"
},
"homepage": "https://github.com/GoogleChrome/omnitone",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
* Omnitone library version
* @type {String}
*/
module.exports = '0.2.0';
module.exports = '0.2.2';

0 comments on commit b2dfee2

Please sign in to comment.