danoniplus 44.5.8 → 44.5.10

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 CHANGED
@@ -4,12 +4,12 @@
4
4
  *
5
5
  * Source by tickle
6
6
  * Created : 2018/10/08
7
- * Revised : 2026/03/06
7
+ * Revised : 2026/03/15
8
8
  *
9
9
  * https://github.com/cwtickle/danoniplus
10
10
  */
11
- const g_version = `Ver 44.5.8`;
12
- const g_revisedDate = `2026/03/06`;
11
+ const g_version = `Ver 44.5.10`;
12
+ const g_revisedDate = `2026/03/15`;
13
13
 
14
14
  // カスタム用バージョン (danoni_custom.js 等で指定可)
15
15
  let g_localVersion = ``;
@@ -7345,13 +7345,14 @@ const makeHighScore = _scoreId => {
7345
7345
  tweetDifData += `:${getStgDetailName(g_stateObj.shuffle)}`;
7346
7346
  }
7347
7347
 
7348
+ const storedExcessive = g_localStorage.highscores[scoreName]?.excessive;
7348
7349
  const resultParams = {
7349
7350
  hashTag: (hasVal(g_headerObj.hashTag) ? ` ${g_headerObj.hashTag}` : ``),
7350
7351
  tuning: g_headerObj.creatorNames[_scoreId],
7351
7352
  rankMark: g_localStorage.highscores?.[scoreName]?.rankMark || `--`,
7352
7353
  playStyleData: g_localStorage.highscores[scoreName]?.playStyle || `--`,
7353
7354
  highscore: g_localStorage.highscores[scoreName],
7354
- tweetExcessive: hasVal(g_localStorage.highscores[scoreName]?.excessive, `---`) ? `(+${g_resultObj.excessive})` : ``,
7355
+ tweetExcessive: hasVal(storedExcessive, `---`) ? `(+${storedExcessive})` : ``,
7355
7356
  musicTitle, tweetDifData, tweetFrzJdg, tweetMaxCombo, baseTwitUrl,
7356
7357
  };
7357
7358
  const resultCommon = unEscapeHtml(makeResultText(g_templateObj.resultFormatDf, resultParams));
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * Source by tickle
7
7
  * Created : 2019/11/19
8
- * Revised : 2026/03/06 (v44.5.7)
8
+ * Revised : 2026/03/15 (v44.5.10)
9
9
  *
10
10
  * https://github.com/cwtickle/danoniplus
11
11
  */
@@ -4424,7 +4424,7 @@ const g_lang_msgObj = {
4424
4424
  scroll: `各レーンのスクロール方向をパターンに沿って設定します。\nReverse:ONでスクロール方向を反転します。`,
4425
4425
  shuffle: `譜面を左右反転したり、ランダムにします。\nランダムにした場合は別譜面扱いとなり、ハイスコアは保存されません。`,
4426
4426
  autoPlay: `オートプレイや一部キーを自動で打たせる設定を行います。\nオートプレイ時はハイスコアを保存しません。`,
4427
- gauge: `クリア条件を設定します。\n[Start] ゲージ初期値, [Border] クリア条件(ハイフン時は0),\n[Recovery] 回復量, [Damage] ダメージ量, [Accuracy] クリアに必要な正確率(オンマウスで許容ミス数表示)`,
4427
+ gauge: `クリア条件を設定します。\n[Start] ゲージ初期値, [Border] クリア条件(ハイフン時は0),\n[Recovery] 回復量, [Damage] ダメージ量, [Accuracy] クリアに必要な正確率、許容ミス数`,
4428
4428
  excessive: `空押し判定を行うか設定します。`,
4429
4429
  adjustment: `曲とのタイミングにズレを感じる場合、\n数値を変えることでフレーム単位のズレを直すことができます。\n外側のボタンは5f刻み、真ん中は1f刻み、内側は0.5f刻みで調整できます。`,
4430
4430
  fadein: `譜面を途中から再生します。\n途中から開始した場合はハイスコアを保存しません。`,
@@ -4517,7 +4517,7 @@ const g_lang_msgObj = {
4517
4517
  scroll: `Set the scroll direction for each lane according to the pattern.\nIf "Reverse:ON" sets, reverse the scroll direction.`,
4518
4518
  shuffle: `Flip the chart left and right or make it random.\nIf you make it random, it will be treated as other charts and the high score will not be saved.`,
4519
4519
  autoPlay: `Set to auto play and to hit some keys automatically.\nHigh score is not saved during auto play.`,
4520
- gauge: `Set the clear condition.\n[Start] initial value, [Border] borderline value (hyphen means zero),\n[Recovery] recovery amount, [Damage] damage amount,\n[Accuracy] accuracy required to clear (mouseover to see the number of allowed mistakes)`,
4520
+ gauge: `Set the clear condition.\n[Start] initial value, [Border] borderline value (hyphen means zero),\n[Recovery] recovery amount, [Damage] damage amount,\n[Accuracy] accuracy required to clear and the number of allowed mistakes`,
4521
4521
  excessive: `Set whether to use excessive miss judgment.`,
4522
4522
  adjustment: `If you feel that the timing is out of sync with the music, \nyou can correct the shift in frame units by changing the value.\nThe outer button can be adjusted in 5 frame increments, the middle in 1 frame increments, \nand the inner button in 0.5 frame increments.`,
4523
4523
  fadein: `Plays the chart from the middle.\nIf you start in the middle, the high score will not be saved.`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "44.5.8",
3
+ "version": "44.5.10",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "./js/danoni_main.js",
6
6
  "scripts": {