alexn707
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
2 deletions
-
src/www/js/app.js
|
@ -472,9 +472,8 @@ new Vue({ |
|
|
i18n.locale = lang; |
|
|
i18n.locale = lang; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
return; |
|
|
|
|
|
const currentRelease = await this.api.getRelease(); |
|
|
const currentRelease = await this.api.getRelease(); |
|
|
const latestRelease = await fetch('https://wg-easy.github.io/wg-easy/changelog.json') |
|
|
const latestRelease = await fetch('https://raw.githubusercontent.com/alexn707/awg-easy/production/docs/changelog.json') |
|
|
.then((res) => res.json()) |
|
|
.then((res) => res.json()) |
|
|
.then((releases) => { |
|
|
.then((releases) => { |
|
|
const releasesArray = Object.entries(releases).map(([version, changelog]) => ({ |
|
|
const releasesArray = Object.entries(releases).map(([version, changelog]) => ({ |
|
|