Skip to content

Releases: michalstocki/FlashWavRecorder

0.9.0

03 Oct 11:43
Compare
Choose a tag to compare
  • Added isMicrophoneAccessible function which allows to check whether microphone is ready to use or not.
  • Renamed function for requesting permission dialog. For now on we can also request permanent microphone permission by calling showPermissionWindow({permanent: true}).
  • Added stopRecording function (record no longer stops recording).
  • Added playing_paused event which announces playback pause.
  • Added permission_panel_closed event which announces close of permission dialog.
  • Updated demo (multiple action buttons toggled by CSS).

Upgrading to 0.9.0

  • Replace usage of getMicrophone with isMicrophoneAccessible to check whether microphone is ready for recording or not.
  • Replace calls of permit function with showPermissionWindow.
  • Use stopRecording function instead of record to stop recording (record no longer stops recording).

0.8.0

03 Oct 11:42
Compare
Choose a tag to compare
  • Fixed XSS vulnerability issue
  • Added ability to get BLOB object of recorded audio
  • Added ability to get Base64 of recorded audio

Upgrading to 0.8.0

  • Callback used by Flash to communicate with JavaScript for now on, has to be defined as fwr_event_handler.
    Specifying name of custom function in "Flash vars" as event_handler is no longer supported.

0.7.0

03 Oct 11:42
Compare
Choose a tag to compare
  • New demo page
  • Added ability to get current level of microphone
  • Added build using gradle
  • Added ability to obtain sound samples from microphone
  • Introducing unit tests

0.6.0

03 Oct 11:41
Compare
Choose a tag to compare
  • Added ability to pause playback
  • Added ability to get current time while playback