From 8859e01905f62b2309b96f4ba46ac21b50efa759 Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Thu, 18 Apr 2024 13:16:00 -0400 Subject: [PATCH 1/3] Fix random voice prompt closes #1999 --- utils/.config.template.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/.config.template.toml b/utils/.config.template.toml index accf86d..e132ea8 100644 --- a/utils/.config.template.toml +++ b/utils/.config.template.toml @@ -44,7 +44,7 @@ background_thumbnail_font_color = { optional = true, default = "255,255,255", ex [settings.tts] voice_choice = { optional = false, default = "tiktok", options = ["elevenlabs", "streamlabspolly", "tiktok", "googletranslate", "awspolly", "pyttsx", ], example = "tiktok", explanation = "The voice platform used for TTS generation. " } -random_voice = { optional = false, default = true, example = true, options = [true, false,], explanation = "Randomizes the voice used for each comment" } +random_voice = { optional = false, default = true, example = true, type = "bool", options = [true, false,], explanation = "Randomizes the voice used for each comment" } elevenlabs_voice_name = { optional = false, default = "Bella", example = "Bella", explanation = "The voice used for elevenlabs", options = ["Adam", "Antoni", "Arnold", "Bella", "Domi", "Elli", "Josh", "Rachel", "Sam", ] } elevenlabs_api_key = { optional = true, example = "21f13f91f54d741e2ae27d2ab1b99d59", explanation = "Elevenlabs API key" } aws_polly_voice = { optional = false, default = "Matthew", example = "Matthew", explanation = "The voice used for AWS Polly" } From cb68e84e253e62f238c9b31889d52a15ecefd947 Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Sat, 20 Apr 2024 15:39:45 -0400 Subject: [PATCH 2/3] Update broken discord url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5fadd83..143100e 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ I have tried to simplify the code so anyone can read it and start contributing a Please read our [contributing guidelines](CONTRIBUTING.md) for more detailed information. -### For any questions or support join the [Discord](https://discord.gg/Vkanmh6C8V) server +### For any questions or support join the [Discord](https://discord.gg/WBQT52RrHV) server ## Developers and maintainers. From 6a48f22cac0b7858efdc7b1739e7d560d76e25b3 Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Sun, 21 Apr 2024 13:42:22 -0400 Subject: [PATCH 3/3] Update main.py permit py 3.11 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index efaa51c..6b581ef 100755 --- a/main.py +++ b/main.py @@ -80,7 +80,7 @@ def shutdown() -> NoReturn: if __name__ == "__main__": - if sys.version_info.major != 3 or sys.version_info.minor != 10: + if sys.version_info.major != 3 or sys.version_info.minor not in [10, 11]: print( "Hey! Congratulations, you've made it so far (which is pretty rare with no Python 3.10). Unfortunately, this program only works on Python 3.10. Please install Python 3.10 and try again." )