Skip to content

Commit

Permalink
fix handling whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
solaoi committed Jul 18, 2023
1 parent d5e880f commit b14a664
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/voicepeaky.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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 &
Expand Down
2 changes: 1 addition & 1 deletion voicepeaky.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "1.0.4"
version = "1.0.5"
author = "solaoi"
description = "Voicepeak Server"
license = "MIT"
Expand Down

0 comments on commit b14a664

Please sign in to comment.