We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efeb4aa commit 61072d6Copy full SHA for 61072d6
1 file changed
util/updater.py
@@ -41,6 +41,7 @@
41
42
43
GITHUB_API_VERSION = "2026-03-10"
44
+FUTURE_CHANGELOG_URL = "https://raw.githubusercontent.com/codefl0w/QuickADB/refs/heads/main/res/whatsnew.html"
45
46
47
def _format_size(num_bytes: int) -> str:
@@ -143,8 +144,8 @@ def _headers(self) -> dict[str, str]:
143
144
def _fetch_remote_changelog(self, release_version: str) -> str:
145
if "{ref}" in self.changelog_url_template:
146
candidate_urls = [
147
+ FUTURE_CHANGELOG_URL,
148
self.changelog_url_template.format(ref=release_version),
- self.changelog_url_template.format(ref="refs/heads/main"),
149
]
150
else:
151
candidate_urls = [self.changelog_url_template]
0 commit comments