danoniplus 43.6.11 → 43.6.12

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/12
8
8
  *
9
9
  * https://github.com/cwtickle/danoniplus
10
10
  */
11
- const g_version = `Ver 43.6.11`;
12
- const g_revisedDate = `2026/03/06`;
11
+ const g_version = `Ver 43.6.12`;
12
+ const g_revisedDate = `2026/03/12`;
13
13
 
14
14
  // カスタム用バージョン (danoni_custom.js 等で指定可)
15
15
  let g_localVersion = ``;
@@ -7233,13 +7233,14 @@ const makeHighScore = _scoreId => {
7233
7233
  tweetDifData += `:${getStgDetailName(g_stateObj.shuffle)}`;
7234
7234
  }
7235
7235
 
7236
+ const storedExcessive = g_localStorage.highscores[scoreName]?.excessive;
7236
7237
  const resultParams = {
7237
7238
  hashTag: (hasVal(g_headerObj.hashTag) ? ` ${g_headerObj.hashTag}` : ``),
7238
7239
  tuning: g_headerObj.creatorNames[_scoreId],
7239
7240
  rankMark: g_localStorage.highscores?.[scoreName]?.rankMark || `--`,
7240
7241
  playStyleData: g_localStorage.highscores[scoreName]?.playStyle || `--`,
7241
7242
  highscore: g_localStorage.highscores[scoreName],
7242
- tweetExcessive: hasVal(g_localStorage.highscores[scoreName]?.excessive, `---`) ? `(+${g_resultObj.excessive})` : ``,
7243
+ tweetExcessive: hasVal(storedExcessive, `---`) ? `(+${storedExcessive})` : ``,
7243
7244
  musicTitle, tweetDifData, tweetFrzJdg, tweetMaxCombo, baseTwitUrl,
7244
7245
  };
7245
7246
  const resultCommon = unEscapeHtml(makeResultText(g_templateObj.resultFormatDf, resultParams));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "43.6.11",
3
+ "version": "43.6.12",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "./js/danoni_main.js",
6
6
  "scripts": {