privateboard 0.1.12 → 0.1.13
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/dist/cli.js +229 -51
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/public/agent-profile.js +0 -2
- package/public/app.js +765 -61
- package/public/home.html +609 -1
- package/public/i18n.js +2 -0
- package/public/index.html +726 -95
- package/public/themes.css +38 -0
- package/public/typing-sfx.js +58 -1
- package/public/user-settings.js +3 -1
package/package.json
CHANGED
package/public/agent-profile.js
CHANGED
|
@@ -2589,7 +2589,6 @@
|
|
|
2589
2589
|
ensureVoiceOptions();
|
|
2590
2590
|
const v = voiceForAgent(slug);
|
|
2591
2591
|
const label = v ? `${v.provider} · ${v.voiceId}` : uiT("ap_voice_browser_default");
|
|
2592
|
-
const deck = v ? v.model : uiT("ap_voice_engine_browser");
|
|
2593
2592
|
const speed = v?.speed ?? 1;
|
|
2594
2593
|
const pitch = v?.pitch ?? 0;
|
|
2595
2594
|
const emotion = v?.emotion || "";
|
|
@@ -2605,7 +2604,6 @@
|
|
|
2605
2604
|
<button type="button" class="ap-model-trigger" data-ap-voice-trigger>
|
|
2606
2605
|
<span class="ap-model-trigger-text">
|
|
2607
2606
|
<span class="ap-model-trigger-name" data-ap-voice-name>${escape(label)}</span>
|
|
2608
|
-
<span class="ap-model-trigger-provider" data-ap-voice-provider>${escape(deck)}</span>
|
|
2609
2607
|
</span>
|
|
2610
2608
|
<span class="ap-model-trigger-caret">▾</span>
|
|
2611
2609
|
</button>
|