extract current version changelog information

This commit is contained in:
jmt-gh 2022-07-08 20:26:30 -07:00
parent 3c5bf376b5
commit 997e23150e

View File

@ -47,8 +47,13 @@ export async function checkForUpdate() {
largestVer = verObj largestVer = verObj
} }
} }
if (verObj.version == currVerObj.version) {
currVerObj.changelog = release.body
}
}) })
} }
}) })
if (!largestVer) { if (!largestVer) {
console.error('No valid version tags to compare with') console.error('No valid version tags to compare with')
@ -59,6 +64,7 @@ export async function checkForUpdate() {
hasUpdate: largestVer.total > currVerObj.total, hasUpdate: largestVer.total > currVerObj.total,
latestVersion: largestVer.version, latestVersion: largestVer.version,
githubTagUrl: `https://github.com/advplyr/audiobookshelf/releases/tag/v${largestVer.version}`, githubTagUrl: `https://github.com/advplyr/audiobookshelf/releases/tag/v${largestVer.version}`,
currentVersion: currVerObj.version currentVersion: currVerObj.version,
currentVersionChangelog: currVerObj.changelog
} }
} }