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.
- package/css/danoni_main.css +5 -1
- package/js/danoni_main.js +316 -444
- package/js/lib/danoni_constants.js +5 -2
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Source by tickle
|
|
7
7
|
* Created : 2019/11/19
|
|
8
|
-
* Revised : 2023/
|
|
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:
|
|
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` },
|