danoniplus 45.5.2 → 45.5.4
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 +9 -8
- 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/14
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 45.5.
|
|
12
|
-
const g_revisedDate = `2026/03/
|
|
11
|
+
const g_version = `Ver 45.5.4`;
|
|
12
|
+
const g_revisedDate = `2026/03/14`;
|
|
13
13
|
|
|
14
14
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
15
15
|
let g_localVersion = ``;
|
|
@@ -7359,13 +7359,14 @@ const makeHighScore = _scoreId => {
|
|
|
7359
7359
|
tweetDifData += `:${getStgDetailName(g_stateObj.shuffle)}`;
|
|
7360
7360
|
}
|
|
7361
7361
|
|
|
7362
|
+
const storedExcessive = g_localStorage.highscores[scoreName]?.excessive;
|
|
7362
7363
|
const resultParams = {
|
|
7363
7364
|
hashTag: (hasVal(g_headerObj.hashTag) ? ` ${g_headerObj.hashTag}` : ``),
|
|
7364
7365
|
tuning: g_headerObj.creatorNames[_scoreId],
|
|
7365
7366
|
rankMark: g_localStorage.highscores?.[scoreName]?.rankMark || `--`,
|
|
7366
7367
|
playStyleData: g_localStorage.highscores[scoreName]?.playStyle || `--`,
|
|
7367
7368
|
highscore: g_localStorage.highscores[scoreName],
|
|
7368
|
-
tweetExcessive: hasVal(
|
|
7369
|
+
tweetExcessive: hasVal(storedExcessive, `---`) ? `(+${storedExcessive})` : ``,
|
|
7369
7370
|
musicTitle, tweetDifData, tweetFrzJdg, tweetMaxCombo, baseTwitUrl,
|
|
7370
7371
|
};
|
|
7371
7372
|
const resultCommon = unEscapeHtml(makeResultText(g_templateObj.resultFormatDf, resultParams));
|
|
@@ -7777,9 +7778,9 @@ const createOptionWindow = _sprite => {
|
|
|
7777
7778
|
|
|
7778
7779
|
spriteList.scroll.appendChild(
|
|
7779
7780
|
createCss2Button(`btnReverse`, `${g_lblNameObj.Reverse}:${getStgDetailName(g_stateObj.reverse)}`, evt => setReverse(evt.target),
|
|
7780
|
-
Object.assign(
|
|
7781
|
+
Object.assign({
|
|
7781
7782
|
cxtFunc: evt => setReverse(evt.target),
|
|
7782
|
-
}), g_cssObj.button_Default, g_cssObj[`button_Rev${g_stateObj.reverse}`])
|
|
7783
|
+
}, g_lblPosObj.btnReverse), g_cssObj.button_Default, g_cssObj[`button_Rev${g_stateObj.reverse}`])
|
|
7783
7784
|
);
|
|
7784
7785
|
spriteList[g_settings.scrolls.length > 1 ? `reverse` : `scroll`].style.display = C_DIS_NONE;
|
|
7785
7786
|
} else {
|
|
@@ -8733,13 +8734,13 @@ const exSettingInit = () => {
|
|
|
8733
8734
|
setSetting(1, `${_name}Type`);
|
|
8734
8735
|
createExpandedScView(_name);
|
|
8735
8736
|
},
|
|
8736
|
-
Object.assign(
|
|
8737
|
+
Object.assign({
|
|
8737
8738
|
cxtFunc: () => {
|
|
8738
8739
|
setSetting(-1, `${_name}Type`);
|
|
8739
8740
|
createExpandedScView(_name);
|
|
8740
8741
|
},
|
|
8741
8742
|
title: g_msgObj[`${_name}Type`] ?? ``,
|
|
8742
|
-
}), g_cssObj.button_Default, g_cssObj.button_RevON);
|
|
8743
|
+
}, g_lblPosObj.btnReverse), g_cssObj.button_Default, g_cssObj.button_RevON);
|
|
8743
8744
|
|
|
8744
8745
|
/**
|
|
8745
8746
|
* 拡張ボタンのショートカット表示
|