- fix: Ensure
utterance.voice
is set tonull
whenvoiceURI
is not set, preventing unintended voice retention.
- feat: Allow dynamic adjustment of
lang
, andvoiceURI
during speech.
- fix: Reset
speakingWord
when resuming speech after pitch, rate, or volume change to prevent out-of-sync issues.
- feat: Allow dynamic adjustment of
pitch
,rate
, andvolume
during speech.
- chore: Replaced
tsc
withtsup
for faster and optimized bundling.
- refactor: Optimized
words
andkey
computation by separating dependencies, improving memoization behavior. - refactor: Renamed
StringArray
type toWords
for better clarity and consistency.
- fix: Resolve re-render issues by replacing stringifiedWords with JSXKey in memoization.
- feat: Support for
ReactNode
intext
prop inuseSpeech
hook and<Speech>
component.
- fix: Corrected sentence and line highlighting logic.
- feat:
showOnlyHighlightedText
andhighlightMode
props inuseSpeech
hook and<Speech>
component.
- perf: Improved performance with memoization.
- perf: Improved performance with memoization.
- docs: Replaced react-markdown with react-remarkify in
Usage with Markdown
section.
- feat: Support for React.js v19 to ensure compatibility with the latest features.
- feat: A logo to enhance branding and visual identity.
- fix: Resolved text highlight issues in Firefox caused by
>
and<
symbols by replacing the special symbol\u200E
with\u00A0
.
- feat: Speech utterance now starts when
autoPlay
is set totrue
and stops whenautoPlay
is set tofalse
, based on the React state. - fix: Incorrect queue details (stale data).
- refactor: Code refactor.
- feat:
autoPlay
prop inuseSpeech
hook and<Speech>
component. - fix: Multiple issues in Firefox, including incorrect text highlighting and the
stop
function not working correctly. - fix: Typo in documentation.
- refactor: Improved internal code for better maintainability.
- feat: Support for
<
and>
characters to be spoken as "less-than" and "greater-than".
- feat:
maxChunkSize
prop inuseSpeech
hook and<Speech>
component.
- fix: Speech wouldn’t start for large
text
inputs. - fix: Pause event issues on Android.
- feat:
useVoices
hook.
- fix: Speech wouldn’t resume if paused near the end of a sentence.
- feat: Exporting icons and types from library.
- feat: Separate documentation website available at https://rtts.vercel.app/.
- change: Updated to monorepo structure and switched to
pnpm
.
- feat: Code of Conduct, Contributing guide, Security policy, and Issue templates.
- improve:
highlightText
prop can now be dynamically toggled during speech.
- improve: Enhanced sanitization of
text
before passing to Web Speech API.
- feat:
useQueue
hook.
- improve: Major performance optimization.
- change: Switched from
pnpm
tobun
.
- feat:
onQueueChange
prop inuseSpeech
hook and<Speech>
component.
- fix: Speech did not stop when the
start
function of theuseSpeech
hook was called if the component was unmounted before the speech actually began.
- fix: Unmounting one
<Speech>
instance would stop the speech utterance of another instance.
- fix: Speech stops automatically when the
text
prop changes.
- feat:
onBoundary
prop inuseSpeech
hook and<Speech>
component.
- feat:
onStart
,onResume
,onPause
, andonStop
props inuseSpeech
hook and<Speech>
component. - feat:
isInQueue
state value returned byuseSpeech
hook.
- feat:
preserveUtteranceQueue
prop inuseSpeech
hook and<Speech>
component.
- fix:
stop
function ofuseSpeech
hook did not work if start was called multiple times. - fix: HTML tags and entities were ignored by Web Speech API.
- fix: A bug where multiple highlight boxes appeared where there were 10 or more children.
- fix: Highlight text feature didn't work if
<HighlightedText>
was placed after<Speech>
.
- feat:
useSpeech
hook. - change: Default value of
useStopOverPause
prop. - docs: Restructured and refined documentation.
- improve: Minor performance optimization.
- fix: Minor bugs in the algorithm used to highlight words.
- change: Default value of
highlightProps
prop of<Speech>
component. - fix: Minor bugs in the algorithm used to highlight words.
- fix: A bug where speech was stopping at mount instead of unmount of
<Speech>
component.
- fix: A bug where
<HighlightedText>
wasn't rendering when FaC was used in<Speech>
component.
- feat:
children
in<HighlightedText>
component.
- feat:
highlightText
andhighlightProps
props in<Speech>
component. - feat:
<HighlightedText>
component. - improve:
text
prop in<Speech>
component can now beJSX
.
- feat:
voiceURI
prop in<Speech>
component.
- improve: Default icons.
- docs: Fixed typo.
- fix: Button rendering method.
- fix: A bug where speech wouldn't start in multiple
<Speech>
instances due to a patch in [v0.6.2].
- fix: A bug where speech wouldn't start again if speech was paused just when it was about to end.
- fix:
speechStatus
reactivity whenstartBtn
is clicked.
- feat:
useStopOverPause
prop in<Speech>
component. - fix:
pauseBtn
behaving asstopBtn
on Android devices.
- fix: Sync issues when using multiple
<Speech>
instances.
- fix:
stopBtn
on any<Speech>
instance was stopping the speech.
- feat:
pauseBtn
prop in<Speech>
component. - feat: Full customization using FaC.