2017-11-15 19:06:52 +01:00
|
|
|
import MiOS from '../mios';
|
2017-03-18 12:05:11 +01:00
|
|
|
|
2017-11-13 10:05:35 +01:00
|
|
|
declare var VERSION: string;
|
|
|
|
|
2017-11-15 19:06:52 +01:00
|
|
|
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));
|
|
|
|
}
|
2017-11-13 10:05:35 +01:00
|
|
|
}
|