danoniplus 27.8.0 → 27.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/js/danoni_main.js CHANGED
@@ -4,12 +4,12 @@
4
4
  *
5
5
  * Source by tickle
6
6
  * Created : 2018/10/08
7
- * Revised : 2022/07/31
7
+ * Revised : 2022/08/01
8
8
  *
9
9
  * https://github.com/cwtickle/danoniplus
10
10
  */
11
- const g_version = `Ver 27.8.0`;
12
- const g_revisedDate = `2022/07/31`;
11
+ const g_version = `Ver 27.8.1`;
12
+ const g_revisedDate = `2022/08/01`;
13
13
  const g_alphaVersion = ``;
14
14
 
15
15
  // カスタム用バージョン (danoni_custom.js 等で指定可)
@@ -4296,7 +4296,7 @@ const createOptionWindow = _sprite => {
4296
4296
  scoreDetail.appendChild(
4297
4297
  makeDifLblCssButton(`lnk${sd}G`, getStgDetailName(sd), j, _ => changeScoreDetail(j), { w: C_LEN_DIFCOVER_WIDTH, btnStyle: (g_stateObj.scoreDetail === sd ? `Setting` : `Default`) })
4298
4298
  );
4299
- createScText(document.getElementById(`lnk${sd}G`), sd, { targetLabel: `lnk${sd}G`, x: -10 });
4299
+ createScText(document.getElementById(`lnk${sd}G`), `${sd}G`, { targetLabel: `lnk${sd}G`, x: -10 });
4300
4300
  });
4301
4301
  }
4302
4302
 
@@ -4391,7 +4391,7 @@ const createOptionWindow = _sprite => {
4391
4391
  context.font = `${C_SIZ_DIFSELECTOR}px ${getBasicFont()}`;
4392
4392
  context.fillText(speedType, lineX + 35, 218);
4393
4393
 
4394
- updateScoreDetailLabel(`Speed`, g_lblNameObj[`s_${speedType}`], speedObj[speedType].cnt, j);
4394
+ updateScoreDetailLabel(`Speed`, `${speedType}S`, speedObj[speedType].cnt, j, g_lblNameObj[`s_${speedType}`]);
4395
4395
  });
4396
4396
  };
4397
4397
 
@@ -4431,10 +4431,10 @@ const createOptionWindow = _sprite => {
4431
4431
  });
4432
4432
 
4433
4433
  const obj = getScoreBaseData(_scoreId);
4434
- updateScoreDetailLabel(`Density`, g_lblNameObj.s_apm, obj.apm, 0);
4435
- updateScoreDetailLabel(`Density`, g_lblNameObj.s_time, obj.playingTime, 1);
4436
- updateScoreDetailLabel(`Density`, g_lblNameObj.s_arrow, obj.arrowCnts, 3);
4437
- updateScoreDetailLabel(`Density`, g_lblNameObj.s_frz, obj.frzCnts, 4);
4434
+ updateScoreDetailLabel(`Density`, `APM`, obj.apm, 0, g_lblNameObj.s_apm);
4435
+ updateScoreDetailLabel(`Density`, `Time`, obj.playingTime, 1, g_lblNameObj.s_time);
4436
+ updateScoreDetailLabel(`Density`, `Arrow`, obj.arrowCnts, 3, g_lblNameObj.s_arrow);
4437
+ updateScoreDetailLabel(`Density`, `Frz`, obj.frzCnts, 4, g_lblNameObj.s_frz);
4438
4438
  };
4439
4439
 
4440
4440
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "27.8.0",
3
+ "version": "27.8.1",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "index.js",
6
6
  "scripts": {