更改

跳转至: 导航搜索

Widget:BMMOLatestUpdate

添加826字节2023年9月3日 (日) 10:58
创建页面,内容为“<script> fetch("https://dl.bmmo.bcrc.site/download/latest?version-only=true") .then(res => res.json()) .then(data => { const lang = "<!--{$param1|esc…”
<script>
fetch("https://dl.bmmo.bcrc.site/download/latest?version-only=true")
.then(res => res.json())
.then(data => {
const lang = "<!--{$param1|escape:'html'}-->";
const dateLatest = new Date(data["time"] * 1e3);
document.write(data["version"]);
document.write('<span style="font-size: 0.88em">');
if (lang == "zh") {
document.write(`(${dateLatest.toLocaleDateString("zh-SG")},`
+ `${((new Date() - dateLatest) / 1e3 / 86400).toFixed(0)}日前)`);
} else {
document.write(` (${dateLatest.toLocaleDateString("en-UK", {year: "numeric", month: "long", day: "numeric"})}, `
+ `${((new Date() - dateLatest) / 1e3 / 86400).toFixed(0)} day(s) ago)`);
}
document.write('</span>');
});
</script>
3,424
个编辑

导航菜单