Skip to content

Commit

Permalink
set version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
russaa committed Mar 12, 2021
1 parent 1a15e32 commit e33ca40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "opus-encdec",
"version": "0.1.0",
"version": "0.1.1",
"description": "A JavaScript library for encoding and decoding OPUS audio",
"homepage": "https://github.com/mmig/opus-encdec",
"author": "russaa",
Expand Down
4 changes: 2 additions & 2 deletions src/recorder.js
Expand Up @@ -40,7 +40,7 @@ Recorder.isRecordingSupported = function(){
return AudioContext && getUserMediaSupported && global.WebAssembly;
};

Recorder.version = '8.0.3';
Recorder.version = '0.1.1';


// Instance Methods
Expand Down Expand Up @@ -269,7 +269,7 @@ Recorder.prototype.stop = function(){
this.state = "inactive";

// macOS and iOS requires the source to remain connected (in case stopped while paused)
this.recordingGainNode.connect( this.encoderNode );
this.recordingGainNode.connect( this.encoderNode );

this.monitorGainNode.disconnect();
this.clearStream();
Expand Down

0 comments on commit e33ca40

Please sign in to comment.