iceshrimp-legacy/src/web/app/common/scripts/check-for-update.ts
2017-11-23 05:43:00 +09:00

13 lines
341 B
TypeScript

import MiOS from '../mios';
declare const _VERSION_: string;
export default async function(mios: MiOS) {
const meta = await mios.getMeta();
if (meta.version != _VERSION_) {
localStorage.setItem('should-refresh', 'true');
alert('%i18n:common.update-available%'.replace('{newer}', meta.version).replace('{current}', _VERSION_));
}
}