diff --git a/README.md b/README.md index 16f5e05..6d72896 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ brew upgrade voicepeaky ```sh # Install with wget or curl ## set the latest version on releases. -VERSION=v1.0.4 +VERSION=v1.0.5 ## set the OS you use. (macos) OS=linux ## case you use wget diff --git a/src/voicepeaky.nim b/src/voicepeaky.nim index 08e3cd2..b24a820 100644 --- a/src/voicepeaky.nim +++ b/src/voicepeaky.nim @@ -86,8 +86,8 @@ proc pollingSpeeches() {.thread.} = var count = 0 while true: count += 1 - let errCode = execCmd("/Applications/voicepeak.app/Contents/MacOS/voicepeak --say " & speech.text & - " --narrator \"" & speech.narrator & + let errCode = execCmd("/Applications/voicepeak.app/Contents/MacOS/voicepeak --say \"" & speech.text & + "\" --narrator \"" & speech.narrator & "\" --emotion happy=" & $speech.happy & ",fun=" & $speech.fun & ",angry=" & $speech.fun & diff --git a/voicepeaky.nimble b/voicepeaky.nimble index 268cd4d..9f35579 100644 --- a/voicepeaky.nimble +++ b/voicepeaky.nimble @@ -1,6 +1,6 @@ # Package -version = "1.0.4" +version = "1.0.5" author = "solaoi" description = "Voicepeak Server" license = "MIT"