Skip to content

Commit

Permalink
v6.12.4: browser version on npm.
Browse files Browse the repository at this point in the history
  • Loading branch information
rochars committed Jun 11, 2018
1 parent 795daf0 commit 89d6c37
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
*.reapeaks
*.DS_Store

# minified browser version
dist/

# Development folders
.nyc_output/
docs/
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## version 6.12.4 (2018-06-11)
- browser version on npm.

## version 6.12.3 (2018-06-11)
- Removed /dist from .npmignore.

## version 6.12.2 (2018-06-11)
- Add 'browser' to package.json.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Use the compiled file in the */dist* folder:

Or get it from the [jsDelivr](https://www.jsdelivr.com) CDN:
```html
<script src="https://cdn.jsdelivr.net/gh/rochars/[email protected].1/dist/wavefile-min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
```

## See it in action
Expand Down
2 changes: 1 addition & 1 deletion docs/WaveFile.html
Original file line number Diff line number Diff line change
Expand Up @@ -4835,7 +4835,7 @@ <h5>Parameters:</h5>
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jun 11 2018 07:26:15 GMT-0300 (Hora oficial do Brasil) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jun 11 2018 07:36:30 GMT-0300 (Hora oficial do Brasil) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

<script>prettyPrint();</script>
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h2>About</h2><p><strong>wavefile</strong> is a JavaScript module to work with .
<p>And more.</p>
<h2>Install</h2><pre class="prettyprint source"><code>npm install wavefile</code></pre><h2>Browser</h2><p>Use the compiled file in the <em>/dist</em> folder:</p>
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;wavefile-min.js&quot;>&lt;/script></code></pre><p>Or get it from the <a href="https://www.jsdelivr.com">jsDelivr</a> CDN:</p>
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;https://cdn.jsdelivr.net/gh/rochars/[email protected].1/dist/wavefile-min.js&quot;>&lt;/script></code></pre><h2>See it in action</h2><p>With <strong>wavefile</strong> you can change the bit depth and compression type of wav files on the fly before loading them in a browser player. This example uses <strong>wavefile</strong> and <strong>wavesurfer</strong> to create a browser player that supports mu-Law, A-Law, IMA ADPCM and all other formats supported by <strong>wavefile</strong>:</p>
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;https://cdn.jsdelivr.net/npm/[email protected].4&quot;>&lt;/script></code></pre><h2>See it in action</h2><p>With <strong>wavefile</strong> you can change the bit depth and compression type of wav files on the fly before loading them in a browser player. This example uses <strong>wavefile</strong> and <strong>wavesurfer</strong> to create a browser player that supports mu-Law, A-Law, IMA ADPCM and all other formats supported by <strong>wavefile</strong>:</p>
<p>https://rochars.github.io/wavefile/example</p>
<pre class="prettyprint source lang-javascript"><code>// Load a wav file that is encoded as 4-bit IMA ADPCM:
var wav = new WaveFile(ADPCMFileBuffer);
Expand Down Expand Up @@ -342,7 +342,7 @@ <h2>LICENSE</h2><p>Copyright (c) 2017-2018 Rafael da Silva Rocha.</p>
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jun 11 2018 07:26:15 GMT-0300 (Hora oficial do Brasil) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jun 11 2018 07:36:30 GMT-0300 (Hora oficial do Brasil) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -2131,7 +2131,7 @@ <h1 class="page-title">index.js</h1>
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jun 11 2018 07:26:15 GMT-0300 (Hora oficial do Brasil) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jun 11 2018 07:36:30 GMT-0300 (Hora oficial do Brasil) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wavefile",
"version": "6.12.2",
"version": "6.12.4",
"description": "Read & write wave files.",
"homepage": "https://github.com/rochars/wavefile",
"author": "Rafael S. Rocha <[email protected]>",
Expand Down

0 comments on commit 89d6c37

Please sign in to comment.