danoniplus 47.5.0 → 47.5.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/README.md CHANGED
@@ -127,6 +127,12 @@ If you would like to cooperate with the development, please see below. Even if y
127
127
  - [ダンおに矢印色ツール](https://github.com/suzme/danoni-colorpicker) @suzme
128
128
  - [ダンおにゲージ計算機 (Gauge Calculator)](http://www.omission0.com/other/gauge_calculator/) @goe0
129
129
  - [ダンおに波形解析ツール](https://github.com/suzme/danoni-waveform) @suzme
130
+ - [danoni_stepViewer](https://github.com/ittn-exe/danoni_stepViewer) @ittn-exe
131
+
132
+ #### CustomJS / カスタマイズ
133
+
134
+ - [Dancing☆Onigiri 9tkey](https://github.com/suzme/danoni-9t) @suzme
135
+ - [danoni-key-change](https://github.com/suzme/danoni-key-change) @suzme
130
136
 
131
137
  #### Conversion Tool from Legacy Flash Environments / 旧Flashからの変換ツール
132
138
 
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 : 2026/05/02
7
+ * Revised : 2026/05/03
8
8
  *
9
9
  * https://github.com/cwtickle/danoniplus
10
10
  */
11
- const g_version = `Ver 47.5.0`;
12
- const g_revisedDate = `2026/05/02`;
11
+ const g_version = `Ver 47.5.1`;
12
+ const g_revisedDate = `2026/05/03`;
13
13
 
14
14
  // カスタム用バージョン (danoni_custom.js 等で指定可)
15
15
  let g_localVersion = ``;
@@ -4613,7 +4613,7 @@ const headerConvert = _dosObj => {
4613
4613
  g_settings.scoreDetailCursorsOrg = g_settings.scoreDetailCursors.concat();
4614
4614
  g_settings.scoreDetailCursors.push(`btnGraphB`);
4615
4615
  [`option`, `difSelector`, `scoreDetail`].forEach(page => g_shortcutObj[page].KeyQ.id = g_settings.scoreDetailCursors[0]);
4616
- g_shortcutObj.scoreDetail.ArrowDown.id = g_settings.scoreDetailCursorsOrg[0];
4616
+ g_shortcutObj.scoreDetail.ArrowDown.id = g_settings.scoreDetailCursorsOrg[nextPos(0, 1, g_settings.scoreDetailCursorsOrg.length)];
4617
4617
  g_shortcutObj.scoreDetail.ArrowUp.id = g_settings.scoreDetailCursorsOrg[nextPos(0, -1, g_settings.scoreDetailCursorsOrg.length)];
4618
4618
 
4619
4619
  // 判定位置をBackgroundのON/OFFと連動してリセットする設定
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "47.5.0",
3
+ "version": "47.5.1",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "./js/danoni_main.js",
6
6
  "jsdelivr": "./js/danoni_main.js",