egirlskey/src/web/app/common/scripts/check-for-update.ts

13 lines
341 B
TypeScript
Raw Normal View History

2017-11-15 18:06:52 +00:00
import MiOS from '../mios';
2017-03-18 11:05:11 +00:00
declare const _VERSION_: string;
2017-11-13 09:05:35 +00:00
2017-11-15 18:06:52 +00:00
export default async function(mios: MiOS) {
const meta = await mios.getMeta();
if (meta.version != _VERSION_) {
2017-11-15 18:06:52 +00:00
localStorage.setItem('should-refresh', 'true');
alert('%i18n:common.update-available%'.replace('{newer}', meta.version).replace('{current}', _VERSION_));
2017-11-15 18:06:52 +00:00
}
2017-11-13 09:05:35 +00:00
}