danoniplus 32.5.0 → 32.6.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.
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * Source by tickle
7
7
  * Created : 2019/11/19
8
- * Revised : 2023/06/09 (v32.5.0)
8
+ * Revised : 2023/07/08 (v32.6.1)
9
9
  *
10
10
  * https://github.com/cwtickle/danoniplus
11
11
  */
@@ -871,9 +871,11 @@ const g_autoPlaysBase = [C_FLG_OFF, C_FLG_ALL];
871
871
 
872
872
  let g_appearanceRanges = [`Hidden+`, `Sudden+`, `Hid&Sud+`];
873
873
 
874
+ const makeSpeedList = (_minSpd, _maxSpd) => [...Array((_maxSpd - _minSpd) * 20 + 1).keys()].map(i => _minSpd + i / 20);
875
+
874
876
  // 設定系全般管理
875
877
  const g_settings = {
876
- speeds: [...Array((C_MAX_SPEED - C_MIN_SPEED) * 20 + 1).keys()].map(i => C_MIN_SPEED + i / 20),
878
+ speeds: makeSpeedList(C_MIN_SPEED, C_MAX_SPEED),
877
879
  speedNum: 0,
878
880
  speedTerms: [20, 5, 1],
879
881
 
@@ -1360,6 +1362,7 @@ const g_shortcutObj = {
1360
1362
  ShiftLeft_KeyG: { id: `lnkGaugeL` },
1361
1363
  ShiftRight_KeyG: { id: `lnkGaugeL` },
1362
1364
  KeyG: { id: `lnkGaugeR` },
1365
+ KeyE: { id: `lnkExcessive` },
1363
1366
 
1364
1367
  AltLeft_ShiftLeft_Semicolon: { id: `lnkAdjustmentHR` },
1365
1368
  AltLeft_ShiftRight_Semicolon: { id: `lnkAdjustmentHR` },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "32.5.0",
3
+ "version": "32.6.1",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "index.js",
6
6
  "scripts": {