### Added

- new state variables
- voicemod connection retry logic

### Fixed
- Fix race-condition crash on init for undefined reference

### Changed
- Updated voicemod-api to a version that has `sharp` patched out
This commit is contained in:
2024-01-14 21:18:39 -05:00
parent cb429c3e72
commit 79ff3ce5a4
4 changed files with 89 additions and 66 deletions

View File

@@ -7,7 +7,7 @@ module.exports = function (self) {
id: 'voiceId',
type: 'dropdown',
label: 'Voice',
default: self.vm.voices[0].id,
default: '',
choices: self.vm.voices.map((item) => ({ id: item.id, label: item.name })),
},
],