mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 20:33:08 +02:00
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
/**
|
|
*
|
|
* @name DiscordTickets
|
|
* @author eartharoid <contact@eartharoid.me>
|
|
* @license GNU-GPLv3
|
|
*
|
|
*/
|
|
|
|
const ChildLogger = require('leekslazylogger').ChildLogger;
|
|
const log = new ChildLogger();
|
|
const fetch = require('node-fetch');
|
|
const config = require('../../user/' + require('../').config);
|
|
let {version} = require('../../package.json');
|
|
version = 'v' + version;
|
|
const boxen = require('boxen');
|
|
const link = require('terminal-link');
|
|
|
|
module.exports = async () => {
|
|
if (!config.updater) return;
|
|
const json = await (await fetch('https://api.github.com/repos/eartharoid/DiscordTickets/releases')).json();
|
|
const update = json[0];
|
|
let notice = [];
|
|
|
|
if (version !== update.tag_name) {
|
|
log.notice(log.f(`There is an update available for Discord Tickets (${version} -> ${update.tag_name})`));
|
|
|
|
notice.push(`&6You are currently using &c${version}&6, the latest is &a${update.tag_name}&6.`);
|
|
notice.push(`&6Download "&f${update.name}&6" from`);
|
|
notice.push(link('&6the GitHub releases page', 'https://github.com/eartharoid/DiscordTickets/releases/'));
|
|
|
|
console.log(
|
|
boxen(log.f(notice.join('\n')), {
|
|
padding: 1,
|
|
margin: 1,
|
|
align: 'center',
|
|
borderColor: 'yellow',
|
|
borderStyle: 'round'
|
|
})
|
|
);
|
|
}
|
|
}; |