@rimori/client 2.5.28-next.2 → 2.5.28-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,6 +40,10 @@ export interface RimoriInfo {
40
40
  * - 'plugins' for beta and stable release channels
41
41
  */
42
42
  dbSchema: 'plugins' | 'plugins_alpha';
43
+ /**
44
+ * Whether text-to-speech is enabled globally (set in rimori-main navbar).
45
+ */
46
+ ttsEnabled: boolean;
43
47
  }
44
48
  export declare class RimoriCommunicationHandler {
45
49
  private port;
@@ -99,6 +99,7 @@ export class ChunkedAudioPlayer {
99
99
  this.startedPlaying = false;
100
100
  this.shouldMonitorLoudness = false;
101
101
  cancelAnimationFrame(this.handle);
102
+ this.loudnessCallback(0);
102
103
  }
103
104
  cleanup() {
104
105
  // Stop playback first
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimori/client",
3
- "version": "2.5.28-next.2",
3
+ "version": "2.5.28-next.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "repository": {