danoniplus 45.5.2 → 45.5.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/js/danoni_main.js +5 -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 45.5.
|
|
12
|
-
const g_revisedDate = `2026/03/
|
|
11
|
+
const g_version = `Ver 45.5.3`;
|
|
12
|
+
const g_revisedDate = `2026/03/12`;
|
|
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));
|