danoniplus 26.7.3 → 26.7.5

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.
Files changed (2) hide show
  1. package/js/danoni_main.js +10 -10
  2. package/package.json +1 -1
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/05/22
7
+ * Revised : 2022/10/29
8
8
  *
9
9
  * https://github.com/cwtickle/danoniplus
10
10
  */
11
- const g_version = `Ver 26.7.3`;
12
- const g_revisedDate = `2022/05/22`;
11
+ const g_version = `Ver 26.7.5`;
12
+ const g_revisedDate = `2022/10/29`;
13
13
  const g_alphaVersion = ``;
14
14
 
15
15
  // カスタム用バージョン (danoni_custom.js 等で指定可)
@@ -4403,7 +4403,7 @@ const createOptionWindow = _sprite => {
4403
4403
  context.font = `${C_SIZ_DIFSELECTOR}px ${getBasicFont()}`;
4404
4404
  context.fillText(speedType, lineX + 35, 218);
4405
4405
 
4406
- updateScoreDetailLabel(`Speed`, g_lblNameObj[`s_${speedType}`], speedObj[speedType].cnt, j);
4406
+ updateScoreDetailLabel(`Speed`, `${speedType}S`, speedObj[speedType].cnt, j, g_lblNameObj[`s_${speedType}`]);
4407
4407
  });
4408
4408
  };
4409
4409
 
@@ -4443,10 +4443,10 @@ const createOptionWindow = _sprite => {
4443
4443
  });
4444
4444
 
4445
4445
  const obj = getScoreBaseData(_scoreId);
4446
- updateScoreDetailLabel(`Density`, g_lblNameObj.s_apm, obj.apm, 0);
4447
- updateScoreDetailLabel(`Density`, g_lblNameObj.s_time, obj.playingTime, 1);
4448
- updateScoreDetailLabel(`Density`, g_lblNameObj.s_arrow, obj.arrowCnts, 3);
4449
- updateScoreDetailLabel(`Density`, g_lblNameObj.s_frz, obj.frzCnts, 4);
4446
+ updateScoreDetailLabel(`Density`, `APM`, obj.apm, 0, g_lblNameObj.s_apm);
4447
+ updateScoreDetailLabel(`Density`, `Time`, obj.playingTime, 1, g_lblNameObj.s_time);
4448
+ updateScoreDetailLabel(`Density`, `Arrow`, obj.arrowCnts, 3, g_lblNameObj.s_arrow);
4449
+ updateScoreDetailLabel(`Density`, `Frz`, obj.frzCnts, 4, g_lblNameObj.s_frz);
4450
4450
  };
4451
4451
 
4452
4452
  /**
@@ -8635,9 +8635,9 @@ const MainInit = _ => {
8635
8635
 
8636
8636
  // 枠外判定前の場合、このタイミングで枠外判定を行う
8637
8637
  if (g_attrObj[prevFrzName].cnt >= (-1) * g_judgObj.frzJ[g_judgPosObj.iknai]) {
8638
- judgeIknai(_cnt);
8638
+ judgeIknai(g_attrObj[prevFrzName].cnt);
8639
8639
  if (g_headerObj.frzStartjdgUse) {
8640
- judgeUwan(_cnt);
8640
+ judgeUwan(g_attrObj[prevFrzName].cnt);
8641
8641
  }
8642
8642
  }
8643
8643
  judgeObjDelete.frz(_j, prevFrzName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "26.7.3",
3
+ "version": "26.7.5",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "index.js",
6
6
  "scripts": {