Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit 89e2aa9

Browse files
authored
fix: change repo url to the right one (AnyaCoder -> fishaudio) (myshell-ai#143)
1 parent 615c839 commit 89e2aa9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fish_speech/webui/html/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div style="color: rgba(25,255,205,0.7) !important;">
22
<a href="{api_docs}">API</a>
33
 • 
4-
<a href="https://github.com/AnyaCoder/fish-speech">Github</a>
4+
<a href="https://github.com/fishaudio/fish-speech">Github</a>
55
 • 
66
<a href="https://gradio.app">Gradio</a>
77
</div>

fish_speech/webui/launch_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ def versions_html():
3535
hash = commit.strip("'").split(" ")[0]
3636

3737
return f"""
38-
version: <a href="https://github.com/AnyaCoder/fish-speech/commit/{hash}">{hash}</a>
38+
version: <a href="https://github.com/fishaudio/fish-speech/commit/{hash}">{hash}</a>
3939
&#x2000;•&#x2000;
4040
python: <span title="{sys.version}">{python_version}</span>
4141
&#x2000;•&#x2000;
4242
torch: {getattr(torch, '__long_version__',torch.__version__)}
4343
&#x2000;•&#x2000;
4444
gradio: {gr.__version__}
4545
&#x2000;•&#x2000;
46-
author: <a href="https://github.com/AnyaCoder">laziman/AnyaCoder</a>
46+
author: <a href="https://github.com/fishaudio">fishaudio</a>
4747
"""
4848

4949

@@ -52,7 +52,7 @@ def version_check(commit):
5252
import requests
5353

5454
commits = requests.get(
55-
"https://api.github.com/repos/AnyaCoder/fish-speech/branches/main"
55+
"https://api.github.com/repos/fishaudio/fish-speech/branches/main"
5656
).json()
5757
if commit != "<none>" and commits["commit"]["sha"] != commit:
5858
print("--------------------------------------------------------")

0 commit comments

Comments
 (0)