“Widget:BMMOLatestUpdate”的版本间的差异

来自Ballance Wiki
跳转至: 导航搜索
第4行: 第4行:
 
     .then(res => res.json())
 
     .then(res => res.json())
 
     .then(data => {
 
     .then(data => {
         const lang = "<!--{$param1|escape:'html'}-->";
+
         const lang = "<!--{$lang|default:'en'|escape:'html'}-->";
 
         const dateLatest = new Date(data["time"] * 1e3);
 
         const dateLatest = new Date(data["time"] * 1e3);
 
         let text = data["version"];
 
         let text = data["version"];

2023年9月3日 (日) 11:12的版本

<script> fetch("https://dl.bmmo.bcrc.site/download/latest?version-only=true")

   .then(res => res.json())
   .then(data => {
       const lang = "";
       const dateLatest = new Date(data["time"] * 1e3);
       let text = data["version"];
       text += '';
       if (lang == "zh") {
           text += (`(${dateLatest.toLocaleDateString("zh-SG")},`
               + `${((new Date() - dateLatest) / 1e3 / 86400).toFixed(0)}日前)`);
       } else {
           text += (` (${dateLatest.toLocaleDateString("en-UK", {year: "numeric", month: "long", day: "numeric"})}, `
               + `${((new Date() - dateLatest) / 1e3 / 86400).toFixed(0)} day(s) ago)`);
       }
       text += '';
       document.querySelectorAll(".bmmo-latest-update").forEach(el => {
           el.innerHTML = text;
       });
   });

</script>