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 @@ -
@@ -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}`;