danoniplus 44.5.8 → 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 +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 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));
|