mirror of
https://github.com/agam778/MS-365-Electron.git
synced 2026-02-17 09:02:10 +00:00
8 lines
270 B
JavaScript
8 lines
270 B
JavaScript
const gitHubPath = 'agam778/Microsoft-Office-Electron';
|
|
const url = 'https://api.github.com/repos/' + gitHubPath + '/tags';
|
|
|
|
$.get(url).done(data => {
|
|
const versions = data.sort((v1, v2) => semver.compare(v2.name, v1.name));
|
|
$('#result').html(versions[0].name);
|
|
});
|