danoniplus 24.6.5 → 24.6.8
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 +4 -4
- package/js/lib/danoni_constants.js +9 -1
- 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/
|
|
7
|
+
* Revised : 2022/05/22
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 24.6.
|
|
12
|
-
const g_revisedDate = `2022/
|
|
11
|
+
const g_version = `Ver 24.6.8`;
|
|
12
|
+
const g_revisedDate = `2022/05/22`;
|
|
13
13
|
const g_alphaVersion = ``;
|
|
14
14
|
|
|
15
15
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
@@ -1336,7 +1336,7 @@ function loadDos(_afterFunc, _scoreId = g_stateObj.scoreId, _cyclicFlg = false)
|
|
|
1336
1336
|
const externalDosInput = document.querySelector(`#externalDos`);
|
|
1337
1337
|
const divRoot = document.querySelector(`#divRoot`);
|
|
1338
1338
|
const queryDos = getQueryParamVal(`dos`) !== null ? `dos/${getQueryParamVal('dos')}.txt` :
|
|
1339
|
-
(externalDosInput !== null ? externalDosInput.value : ``);
|
|
1339
|
+
encodeURI(externalDosInput !== null ? externalDosInput.value : ``);
|
|
1340
1340
|
|
|
1341
1341
|
if (dosInput === null && queryDos === ``) {
|
|
1342
1342
|
makeWarningWindow(g_msgInfoObj.E_0023);
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Source by tickle
|
|
7
7
|
* Created : 2019/11/19
|
|
8
|
-
* Revised : 2022/
|
|
8
|
+
* Revised : 2022/04/16 (v24.6.7)
|
|
9
9
|
*
|
|
10
10
|
* https://github.com/cwtickle/danoniplus
|
|
11
11
|
*/
|
|
@@ -2194,11 +2194,19 @@ const g_keyObj = {
|
|
|
2194
2194
|
'Left': [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0],
|
|
2195
2195
|
'Right': [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1],
|
|
2196
2196
|
},
|
|
2197
|
+
assistPos9A_4: {
|
|
2198
|
+
'Left': [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0],
|
|
2199
|
+
'Right': [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1],
|
|
2200
|
+
},
|
|
2197
2201
|
|
|
2198
2202
|
assistPos11i_0: {
|
|
2199
2203
|
'Left': [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0],
|
|
2200
2204
|
'Right': [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1],
|
|
2201
2205
|
},
|
|
2206
|
+
assistPos11i_1: {
|
|
2207
|
+
'Left': [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0],
|
|
2208
|
+
'Right': [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1],
|
|
2209
|
+
},
|
|
2202
2210
|
|
|
2203
2211
|
assistPos17_0: {
|
|
2204
2212
|
'Left': [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|