mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 08:53:48 +01:00
[client] Improved update checker
This commit is contained in:
parent
a4ccd41a30
commit
27a088a6a1
@ -127,11 +127,24 @@ os.api("admin/abuse-user-reports", {
|
||||
|
||||
if (defaultStore.state.showAdminUpdates) {
|
||||
os.api("latest-version").then((res) => {
|
||||
const cleanRes = parseInt(res?.tag_name.replace(/[^0-9]/g, ""));
|
||||
const cleanVersion = parseInt(version.replace(/[^0-9]/g, ""));
|
||||
if (cleanRes > cleanVersion) {
|
||||
updateAvailable = true;
|
||||
if (!res?.tag_name) {
|
||||
updateAvailable = false;
|
||||
return;
|
||||
}
|
||||
|
||||
const tag = res.tag_name as string;
|
||||
if (tag === `v${version}`) {
|
||||
updateAvailable = false;
|
||||
return;
|
||||
}
|
||||
const tagDate = tag.includes('-') ? tag.substring(0, tag.indexOf('-')) : tag;
|
||||
const versionDate = version.includes('-') ? version.substring(0, version.indexOf('-')) : version;
|
||||
if (tagDate < versionDate) {
|
||||
updateAvailable = false;
|
||||
return;
|
||||
}
|
||||
updateAvailable = true;
|
||||
return;
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -193,17 +193,30 @@ if ($i?.isAdmin) {
|
||||
}).then((reports) => {
|
||||
if (reports?.length > 0) thereIsUnresolvedAbuseReport = true;
|
||||
});
|
||||
}
|
||||
|
||||
if (defaultStore.state.showAdminUpdates) {
|
||||
os.api("latest-version").then((res) => {
|
||||
const cleanRes = parseInt(res?.tag_name.replace(/[^0-9]/g, ""));
|
||||
const cleanVersion = parseInt(version.replace(/[^0-9]/g, ""));
|
||||
if (cleanRes > cleanVersion) {
|
||||
updateAvailable = true;
|
||||
if (!res?.tag_name) {
|
||||
updateAvailable = false;
|
||||
return;
|
||||
}
|
||||
|
||||
const tag = res.tag_name as string;
|
||||
if (tag === `v${version}`) {
|
||||
updateAvailable = false;
|
||||
return;
|
||||
}
|
||||
const tagDate = tag.includes('-') ? tag.substring(0, tag.indexOf('-')) : tag;
|
||||
const versionDate = version.includes('-') ? version.substring(0, version.indexOf('-')) : version;
|
||||
if (tagDate < versionDate) {
|
||||
updateAvailable = false;
|
||||
return;
|
||||
}
|
||||
updateAvailable = true;
|
||||
return;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function openAccountMenu(ev: MouseEvent) {
|
||||
openAccountMenu_(
|
||||
|
Loading…
Reference in New Issue
Block a user