Skip to content

Commit

Permalink
v1.3.1
Browse files Browse the repository at this point in the history
fixed broken link
  • Loading branch information
Liver64 committed Apr 9, 2022
1 parent c0964bb commit 9c59a87
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ NAME=Oliver Lewald
EMAIL[email protected]

[PLUGIN]
VERSION=1.3.0
VERSION=1.3.1

NAME=text2speech
FOLDER=text2speech
Expand Down
6 changes: 3 additions & 3 deletions release.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# the donwload link here

# Version of the new release
VERSION=1.3.0
VERSION=1.3.1

# Download URL of the ZIP Archive
ARCHIVEURL=https://github.com/Liver64/LoxBerry-TTS/archive/v1.3.0.zip
ARCHIVEURL=https://github.com/Liver64/LoxBerry-TTS/archive/v1.3.1.zip

# URL for further information about this release
INFOURL=https://github.com/Liver64/LoxBerry-TTS/releases/tag/v1.3.0
INFOURL=https://github.com/Liver64/LoxBerry-TTS/releases/tag/v1.3.1
3 changes: 2 additions & 1 deletion webfrontend/html/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@
1.2.2 [Enhancement] Microsoft Azure T2S hinzugefügt
[Enhancement] Interface erweitert (inklusive Logging)
[Enhancement] USB-Soundkarten Unterstützung
1.3.0 [Bugfix] Fixed Cleanup TTS files
1.3.0 [Bugfix] Fixed Cleanup TTS files
1.3.1 [Bugfix] Fixed missing link
4 changes: 2 additions & 2 deletions webfrontend/html/tts.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

include("helper.php");
include('logging.php');
require_once('output/soundcards.php');
include('output/usb.php');

// setze korrekte Zeitzone
date_default_timezone_set(date("e"));
Expand Down Expand Up @@ -243,7 +243,7 @@
default; // Soundcard bcm2835
require_once('output/alsa.php');
shell_exec("export AUDIODRIVER=alsa");
$output = shell_exec("export AUDIODEV=hw:0,0");
$output = shell_exec("export AUDIODEV=hw:1,0");
break;
# The hw:X,Y comes from this mapping of your hardware -- in this case, X is the card number, while Y is the device number.
# https://superuser.com/questions/53957/what-do-alsa-devices-like-hw0-0-mean-how-do-i-figure-out-which-to-use
Expand Down

0 comments on commit 9c59a87

Please sign in to comment.