From a7bd0740d4e04074fcf69d9a4953b75ded1a48bb Mon Sep 17 00:00:00 2001 From: x1ao4 Date: Thu, 24 Apr 2025 01:10:59 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=20WebUI=20=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=9C=B0=E5=9D=80=E5=92=8C=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E7=9A=84=E6=98=BE=E7=A4=BA=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/templates/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/templates/index.html b/app/templates/index.html index 6251c68..485700d 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -49,10 +49,10 @@ -
-

使用交流

-

quark-auto-save

-

+
@@ -705,10 +705,10 @@ } }, checkNewVersion() { - this.versionTips = this.version; - axios.get('https://api.github.com/repos/Cp0204/quark-auto-save/tags') + this.versionTips = this.version.replace('v', ''); + axios.get('https://api.github.com/repos/x1ao4/quark-auto-save-x/tags') .then(response => { - latestVersion = response.data[0].name; + latestVersion = response.data[0].name.replace('v', ''); console.log(`检查版本:当前 ${this.version} 最新 ${latestVersion}`); if (latestVersion != this.version) { this.versionTips += ` ${latestVersion}`;