From 89e2aa938f4077aee000a955026c36b14669a77a Mon Sep 17 00:00:00 2001 From: Blaise Date: Tue, 30 Apr 2024 18:42:08 +0200 Subject: [PATCH] fix: change repo url to the right one (AnyaCoder -> fishaudio) (#143) --- fish_speech/webui/html/footer.html | 2 +- fish_speech/webui/launch_utils.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fish_speech/webui/html/footer.html b/fish_speech/webui/html/footer.html index 7d8c17cd..ac1745aa 100644 --- a/fish_speech/webui/html/footer.html +++ b/fish_speech/webui/html/footer.html @@ -1,7 +1,7 @@
API  •  - Github + Github  •  Gradio
diff --git a/fish_speech/webui/launch_utils.py b/fish_speech/webui/launch_utils.py index c8f904bd..659e994e 100644 --- a/fish_speech/webui/launch_utils.py +++ b/fish_speech/webui/launch_utils.py @@ -35,7 +35,7 @@ def versions_html(): hash = commit.strip("'").split(" ")[0] return f""" -version: {hash} +version: {hash}  •  python: {python_version}  •  @@ -43,7 +43,7 @@ def versions_html():  •  gradio: {gr.__version__}  •  -author: laziman/AnyaCoder +author: fishaudio """ @@ -52,7 +52,7 @@ def version_check(commit): import requests commits = requests.get( - "https://api.github.com/repos/AnyaCoder/fish-speech/branches/main" + "https://api.github.com/repos/fishaudio/fish-speech/branches/main" ).json() if commit != "" and commits["commit"]["sha"] != commit: print("--------------------------------------------------------")