Skip to content

Commit 35a057b

Browse files
committed
[0.8.3] change update domain
1 parent a706d1c commit 35a057b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

StartLive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
updater_path = install_path / "Update.exe"
2929
app_path = install_path / f"app-{VERSION}"
3030
if updater_path.exists() and app_path.is_dir():
31-
Popen([updater_path, "--update=https://startlive.vtbs.ai/"])
31+
Popen([updater_path, "--update=https://startlive.bydfk.com/"])
3232
except NameError:
3333
pass
3434
else:

models/workers/const/const_update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(self, state: LoginState):
2929
def run(self, /) -> None:
3030
# url = "https://gcore.jsdelivr.net/gh/Radekyspec/StartLive@master/resources/version.json"
3131
self._load_from_file()
32-
url = "https://gh.vtbs.ai/https://raw.githubusercontent.com/Radekyspec/StartLive/refs/heads/master/resources/version.json"
32+
url = "https://gh.bydfk.com/https://raw.githubusercontent.com/Radekyspec/StartLive/refs/heads/master/resources/version.json"
3333
self.logger.info(f"version.json Request")
3434
response = self._session.get(url)
3535
response.encoding = "utf-8"

models/workers/const/version_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(self, state: LoginState):
2323
@run_wrapper(silent=True)
2424
def run(self, /) -> None:
2525
# url = "https://gcore.jsdelivr.net/gh/Radekyspec/StartLive@master/resources/version.json"
26-
url = "https://gh.vtbs.ai/https://api.github.com/repos/Radekyspec/StartLive/releases/latest"
26+
url = "https://gh.bydfk.com/https://api.github.com/repos/Radekyspec/StartLive/releases/latest"
2727
self.logger.info(f"releases Request")
2828
response = self._session.get(url)
2929
response.encoding = "utf-8"

0 commit comments

Comments
 (0)