danoniplus 44.5.7 → 44.5.9
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 +8 -4
- 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 : 2026/03/
|
|
7
|
+
* Revised : 2026/03/12
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 44.5.
|
|
12
|
-
const g_revisedDate = `2026/03/
|
|
11
|
+
const g_version = `Ver 44.5.9`;
|
|
12
|
+
const g_revisedDate = `2026/03/12`;
|
|
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(
|
|
7355
|
+
tweetExcessive: hasVal(storedExcessive, `---`) ? `(+${storedExcessive})` : ``,
|
|
7355
7356
|
musicTitle, tweetDifData, tweetFrzJdg, tweetMaxCombo, baseTwitUrl,
|
|
7356
7357
|
};
|
|
7357
7358
|
const resultCommon = unEscapeHtml(makeResultText(g_templateObj.resultFormatDf, resultParams));
|
|
@@ -7572,6 +7573,9 @@ const setDifficulty = (_initFlg) => {
|
|
|
7572
7573
|
// ユーザカスタムイベント(初期)
|
|
7573
7574
|
g_customJsObj.difficulty.forEach(func => func(_initFlg, g_canLoadDifInfoFlg));
|
|
7574
7575
|
|
|
7576
|
+
// 設定サマリー表示の更新
|
|
7577
|
+
updateSettingSummary();
|
|
7578
|
+
|
|
7575
7579
|
// ---------------------------------------------------
|
|
7576
7580
|
// 4. 譜面初期情報ロード許可フラグの設定
|
|
7577
7581
|
g_canLoadDifInfoFlg = true;
|