forked from FoundKeyGang/FoundKey
✌️
This commit is contained in:
parent
90959a8347
commit
f7444c6c0b
4 changed files with 13 additions and 11 deletions
|
@ -8,7 +8,7 @@ const api = require('./common/scripts/api');
|
|||
const signout = require('./common/scripts/signout');
|
||||
const generateDefaultUserdata = require('./common/scripts/generate-default-userdata');
|
||||
const mixins = require('./common/mixins');
|
||||
const checkForUpdate = require('./common/scripts/check-for-update.ls');
|
||||
const checkForUpdate = require('./common/scripts/check-for-update');
|
||||
require('./common/tags');
|
||||
|
||||
/**
|
||||
|
|
|
@ -43,6 +43,6 @@ module.exports = me => {
|
|||
});
|
||||
|
||||
riot.mixin('ui-progress', {
|
||||
Progress: require('./scripts/loading.ls')
|
||||
Progress: require('./scripts/loading')
|
||||
});
|
||||
};
|
||||
|
|
11
src/web/app/common/scripts/check-for-update.js
Normal file
11
src/web/app/common/scripts/check-for-update.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
module.exports = () => {
|
||||
fetch('/api:meta').then(res => {
|
||||
res.json().then(meta => {
|
||||
if (meta.commit.hash !== VERSION) {
|
||||
if (window.confirm('新しいMisskeyのバージョンがあります。更新しますか?\r\n(このメッセージが繰り返し表示される場合は、サーバーにデータがまだ届いていない可能性があるので、少し時間を置いてから再度お試しください)')) {
|
||||
location.reload(true);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
|
@ -1,9 +0,0 @@
|
|||
module.exports = ->
|
||||
fetch \/api:meta
|
||||
.then (res) ~>
|
||||
meta <~ res.json!.then
|
||||
if meta.commit.hash != VERSION
|
||||
if window.confirm '新しいMisskeyのバージョンがあります。更新しますか?\r\n(このメッセージが繰り返し表示される場合は、サーバーにデータがまだ届いていない可能性があるので、少し時間を置いてから再度お試しください)'
|
||||
location.reload true
|
||||
.catch ~>
|
||||
# ignore
|
Loading…
Reference in a new issue