danoniplus 27.8.1 → 27.8.3

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
@@ -90,16 +90,26 @@ If you would like to cooperate with the development, please see below. Even if y
90
90
  ## Community / コミュニティ
91
91
  - [Dancing☆Onigiri Discordサーバー](https://discord.gg/TegbHFY7zg)
92
92
  - [得点報告用Gitter](https://gitter.im/danonicw/freeboard)
93
- - [Twitter #danoni](https://twitter.com/search?q=%23danoni%20OR%20%22%E3%83%80%E3%83%B3%E3%81%8A%E3%81%AB%E3%81%A3%E3%81%9F%E3%83%BC%22&src=typed_query&f=live)
93
+ - [Twitter #danoni](https://twitter.com/search?q=%23danoni&src=typed_query&f=live)
94
94
 
95
- ## Related Tools Repository / 関連ツール
95
+ ## Related Tools Repository / 関連リポジトリ・ツール
96
+ ### Dancing☆Onigiri
96
97
  - [Dancing☆Onigiri エディター(CW Edition 対応)](https://github.com/superkuppabros/danoni-editor) @superkuppabros
97
98
  - [ダンおに曲データjs化ツール](https://github.com/suzme/danoni-base64) @suzme
98
99
  - [ダンおに矢印色ツール](https://github.com/suzme/danoni-colorpicker) @suzme
99
- - [Dancing☆Onigiri Chart Reverser](https://github.com/cwtickle/danoniplus-reverser)
100
- - [Dancing☆Onigiri Chart Converter](https://github.com/cwtickle/danoniplus-converter)
100
+ - [Dancing☆Onigiri Chart Reverser](https://github.com/cwtickle/danoniplus-reverser) @cwtickle
101
+ - [Dancing☆Onigiri Chart Converter](https://github.com/cwtickle/danoniplus-converter) @cwtickle
101
102
  - [ダンおにゲージ計算機 (Gauge Calculator)](http://www.omission0.com/other/gauge_calculator/) @goe0
103
+
104
+ ### キリズマ
102
105
  - [キリズマ譜面データ変換機](https://github.com/suzme/kirizma-converter) @suzme
106
+ - [キリズマ歌詞表示作成ツール](https://github.com/prlg25/kirizma_lyric) @prlg25
107
+ - [キリズマ難易度表](https://github.com/suzme/kirizma) @suzme
108
+
109
+ ### Punching◇Panels
110
+ - [Punching◇Panels](https://github.com/cwtickle/punching-panels) @cwtickle
111
+ - [Punching◇Panels エディター](https://github.com/suzme/punpane-editor) @suzme
112
+ - [Punching◇Panels 難易度表](https://github.com/suzme/punpane) @suzme
103
113
 
104
114
  ## License / ライセンス
105
115
  This software is released under the MIT License, see LICENSE.
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/08/01
7
+ * Revised : 2022/10/31
8
8
  *
9
9
  * https://github.com/cwtickle/danoniplus
10
10
  */
11
- const g_version = `Ver 27.8.1`;
12
- const g_revisedDate = `2022/08/01`;
11
+ const g_version = `Ver 27.8.3`;
12
+ const g_revisedDate = `2022/10/31`;
13
13
  const g_alphaVersion = ``;
14
14
 
15
15
  // カスタム用バージョン (danoni_custom.js 等で指定可)
@@ -6402,7 +6402,6 @@ const loadingScoreInit = async () => {
6402
6402
 
6403
6403
  // 開始フレーム数の取得(フェードイン加味)
6404
6404
  g_scoreObj.frameNum = getStartFrame(lastFrame, g_stateObj.fadein);
6405
- g_scoreObj.baseFrame = g_scoreObj.frameNum - g_stateObj.intAdjustment;
6406
6405
 
6407
6406
  // フレームごとの速度を取得(配列形式)
6408
6407
  let speedOnFrame = setSpeedOnFrame(g_scoreObj.speedData, lastFrame);
@@ -6455,6 +6454,7 @@ const loadingScoreInit = async () => {
6455
6454
  g_headerObj.blankFrame += preblankFrame;
6456
6455
  }
6457
6456
  }
6457
+ g_scoreObj.baseFrame = g_scoreObj.frameNum - g_stateObj.intAdjustment;
6458
6458
 
6459
6459
  // シャッフルグループ未定義の場合
6460
6460
  if (g_keyObj[`shuffle${keyCtrlPtn}`] === undefined) {
@@ -8598,9 +8598,9 @@ const mainInit = _ => {
8598
8598
 
8599
8599
  // 枠外判定前の場合、このタイミングで枠外判定を行う
8600
8600
  if (g_attrObj[prevFrzName].cnt >= (-1) * g_judgObj.frzJ[g_judgPosObj.iknai]) {
8601
- judgeIknai(_cnt);
8601
+ judgeIknai(g_attrObj[prevFrzName].cnt);
8602
8602
  if (g_headerObj.frzStartjdgUse) {
8603
- judgeUwan(_cnt);
8603
+ judgeUwan(g_attrObj[prevFrzName].cnt);
8604
8604
  }
8605
8605
  }
8606
8606
  judgeObjDelete.frz(_j, prevFrzName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "27.8.1",
3
+ "version": "27.8.3",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "index.js",
6
6
  "scripts": {