From 607e1fd451b96dc0b684fa17a9d992bc8ec6a813 Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Sat, 23 Dec 2023 04:59:37 -0500 Subject: [PATCH 1/4] Update my discord --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81e37be..5fadd83 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ Please read our [contributing guidelines](CONTRIBUTING.md) for more detailed inf Elebumm (Lewis#6305) - https://github.com/elebumm (Founder) -Jason (JasonLovesDoggo#1904) - https://github.com/JasonLovesDoggo (Maintainer) +Jason (personality.json) - https://github.com/JasonLovesDoggo (Maintainer) Simon (OpenSourceSimon) - https://github.com/OpenSourceSimon From 5895c87e1bfccb3bc88f3f539db45b0bc8fa2427 Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Sun, 28 Jan 2024 09:17:00 -0500 Subject: [PATCH 2/4] Update stale.yml --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 3db14aa..9598a19 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,7 +12,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/stale@v4 + - uses: actions/stale@v9 id: stale-issue name: stale-issue with: @@ -31,7 +31,7 @@ jobs: ascending: true #debug-only: true - - uses: actions/stale@v4 + - uses: actions/stale@v9 id: stale-pr name: stale-pr with: From 8166668989fa6c8c823deed8585fc382662f1612 Mon Sep 17 00:00:00 2001 From: Basti <75910510+RqZen@users.noreply.github.com> Date: Fri, 23 Feb 2024 21:23:34 +0100 Subject: [PATCH 3/4] streamlabspolly_fix.py fixes the streamlabspolly error: Error occurred calling Streamlabs Polly --- TTS/streamlabs_polly.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TTS/streamlabs_polly.py b/TTS/streamlabs_polly.py index dc80dc9..dddeedc 100644 --- a/TTS/streamlabs_polly.py +++ b/TTS/streamlabs_polly.py @@ -44,7 +44,8 @@ class StreamlabsPolly: ) voice = str(settings.config["settings"]["tts"]["streamlabs_polly_voice"]).capitalize() body = {"voice": voice, "text": text, "service": "polly"} - response = requests.post(self.url, data=body) + headers = {"Referer" : "https://streamlabs.com/" } + response = requests.post(self.url, headers=headers,data=body) if not check_ratelimit(response): self.run(text, filepath, random_voice) From c704929b2f5118db7a6075ab3d9bd9c39adc5c14 Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Mon, 1 Apr 2024 12:54:51 -0400 Subject: [PATCH 4/4] Update streamlabs_polly.py Fixes issues with git --- TTS/streamlabs_polly.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TTS/streamlabs_polly.py b/TTS/streamlabs_polly.py index dddeedc..3f0610d 100644 --- a/TTS/streamlabs_polly.py +++ b/TTS/streamlabs_polly.py @@ -44,8 +44,8 @@ class StreamlabsPolly: ) voice = str(settings.config["settings"]["tts"]["streamlabs_polly_voice"]).capitalize() body = {"voice": voice, "text": text, "service": "polly"} - headers = {"Referer" : "https://streamlabs.com/" } - response = requests.post(self.url, headers=headers,data=body) + headers = {"Referer": "https://streamlabs.com/"} + response = requests.post(self.url, headers=headers, data=body) if not check_ratelimit(response): self.run(text, filepath, random_voice)