1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-01-08 07:18:43 +01:00

refactor: minor improvement in changelog parsing

This commit is contained in:
Fabio Di Stasio 2022-05-07 16:13:22 +02:00
parent 5cb8ec65ad
commit c7417809f4

View File

@ -42,12 +42,16 @@ export default {
methods: {
async getChangelog () {
try {
const apiRes = await fetch(`https://api.github.com/repos/Fabio286/antares/releases/tags/v${this.appVersion}`, {
const apiRes = await fetch(`https://api.github.com/repos/antares-sql/antares/releases/tags/v${this.appVersion}`, {
method: 'GET'
});
const { body } = await apiRes.json();
const markdown = body.substr(0, body.indexOf('### Download'));
const cutOffset = body.indexOf('### Download');
const markdown = cutOffset >= 0
? body.substr(0, cutOffset)
: body;
const renderer = {
link (href, title, text) {
return text;