@settinghead/voxlert 0.3.5 → 0.3.7
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.
- package/README.md +26 -4
- package/assets/demo-thumbnail.png +0 -0
- package/assets/sc1-adjutant.gif +0 -0
- package/assets/sc1-kerrigan-infested.jpg +0 -0
- package/config.default.json +2 -2
- package/package.json +1 -1
- package/packs/sc1-kerrigan/pack.json +32 -33
- package/packs/sc1-kerrigan/voice.wav +0 -0
- package/packs/sc1-kerrigan-infested/pack.json +69 -0
- package/packs/sc1-kerrigan-infested/voice.wav +0 -0
- package/packs/{sc2-kerrigan → sc2-kerrigan-infested}/pack.json +1 -1
- package/src/audio.js +166 -10
- package/src/cli.js +23 -1
- package/src/commands/pack-helpers.js +11 -3
- package/src/commands/setup.js +4 -2
- package/src/cost.js +4 -1
- package/src/pack-registry.js +2 -1
- package/src/packs.js +1 -0
- package/src/setup-ui.js +12 -12
- package/src/setup.js +198 -73
- package/src/tts-test.js +108 -43
- package/src/voxlert.js +1 -1
- /package/assets/{sc2-kerrigan.jpg → sc2-kerrigan-infested.jpg} +0 -0
- /package/packs/{sc2-kerrigan → sc2-kerrigan-infested}/voice.wav +0 -0
package/src/voxlert.js
CHANGED
|
@@ -155,7 +155,7 @@ export async function processHookEvent(eventData) {
|
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
const packId = config.active_pack || "
|
|
158
|
+
const packId = config.active_pack || "sc1-kerrigan-infested";
|
|
159
159
|
const phraseOneLine = phrase.replace(/\s+/g, " ").slice(0, 120);
|
|
160
160
|
debugLog("processHookEvent speaking", { source, phrase: phraseOneLine });
|
|
161
161
|
appendLog(
|
|
File without changes
|
|
File without changes
|