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