Skip to content

Releases: compulim/react-dictate-button

v4.0.2-main.202601011023.c90febd: Bump dependencies (#101)

01 Jan 10:24
c90febd

Choose a tag to compare

v4.0.2-main.202601010955.c9788bd

01 Jan 09:55
c9788bd

Choose a tag to compare

Pre-release

4.0.2-main.202601010955.c9788bd - 2026-01-01

v4.0.2-main.202601010932.e6fd586: Fix `package.json` (#98)

01 Jan 09:33
e6fd586

Choose a tag to compare

4.0.2-main.202601010932.e6fd586 - 2026-01-01

v4.0.2-main.202512240237.faaa4e1: v4.0.2-0 (#96)

24 Dec 02:38
faaa4e1

Choose a tag to compare

4.0.2-main.202512240237.faaa4e1 - 2025-12-24

v4.0.1 (#94)

24 Dec 02:18
70fb885

Choose a tag to compare

v4.0.1-main.202512240212.182fb80: Bump dependencies (#93)

24 Dec 02:13
182fb80

Choose a tag to compare

v4.0.1-main.202512240204.0a2e438: Bump scaffold (#92)

24 Dec 02:05
0a2e438

Choose a tag to compare

4.0.1-main.202512240204.0a2e438 - 2025-12-24

v4.0.0 (#89)

13 Feb 08:39
7193b6c

Choose a tag to compare

[4.0.0] - 2025-02-13

Added

  • Works with Web Speech API provider without resultIndex in SpeechRecognitionResultEvent, by @compulim, in PR #86

Changed

  • Reduced React version requirement from 16.9.0 to 16.8.6, by @compulim, in PR #83
  • 💥 Stopping an unabortable recognition (SpeechRecognition.abort() is undefined) will warn instead of throw, by @compulim, in PR #88

Fixed

  • Fixed dictate event should dispatch before end event, by @compulim, in PR #87
  • Fixed #84. Logics should relies on SpeechRecognition.continuous property than continuous props, by @compulim, in PR #87
  • Fixed end event should only be dispatched after SpeechRecognition.error event, instead of always emit on stop/unmount, by @compulim, in PR #88

v3.0.0 (#79)

31 Jan 06:07
5327bfd

Choose a tag to compare

[3.0.0] - 2025-01-31

Added

  • Added continuous mode support, by @RushikeshGavali and @compulim, in PR #73 and PR #78
    • In continuous mode, dictate and progress events will only report the latest round of recognition
    • After end, the push button and checkbox will not be turned off automatically
    • When stopping the recognition, it will emit an error event of error aborted, this is the behavior same as in non-continuous mode
    • If the underlying Web Speech API implementation does not support continuous mode, it should work as if in interactive mode
  • Added start and end events, by @compulim, in PR #78

Changed

Removed

  • 💥 Deprecated Context, use useAbortable, useReadyState, and useSupported hooks respectively, by @compulim, in PR #74
  • 💥 Deprecated default exports, use import { DictateButton } from 'react-dictate-button' instead, by @compulim, in PR #74
  • 💥 Removed defaultProps and propTypes, by @compulim, in PR #74

[1.2.2] - 2020-02-27

28 Feb 02:02

Choose a tag to compare

Fixed