danoniplus 39.8.18 → 39.8.19
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 39.8.
|
|
12
|
-
const g_revisedDate = `2026/03/
|
|
11
|
+
const g_version = `Ver 39.8.19`;
|
|
12
|
+
const g_revisedDate = `2026/03/12`;
|
|
13
13
|
|
|
14
14
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
15
15
|
let g_localVersion = ``;
|
|
@@ -5779,13 +5779,14 @@ const makeHighScore = _scoreId => {
|
|
|
5779
5779
|
tweetDifData += `:${getStgDetailName(g_stateObj.shuffle)}`;
|
|
5780
5780
|
}
|
|
5781
5781
|
|
|
5782
|
+
const storedExcessive = g_localStorage.highscores[scoreName]?.excessive;
|
|
5782
5783
|
const resultParams = {
|
|
5783
5784
|
hashTag: (hasVal(g_headerObj.hashTag) ? ` ${g_headerObj.hashTag}` : ``),
|
|
5784
5785
|
tuning: g_headerObj.creatorNames[_scoreId],
|
|
5785
5786
|
rankMark: g_localStorage.highscores?.[scoreName]?.rankMark || `--`,
|
|
5786
5787
|
playStyleData: g_localStorage.highscores[scoreName]?.playStyle || `--`,
|
|
5787
5788
|
highscore: g_localStorage.highscores[scoreName],
|
|
5788
|
-
tweetExcessive: hasVal(
|
|
5789
|
+
tweetExcessive: hasVal(storedExcessive, `---`) ? `(+${storedExcessive})` : ``,
|
|
5789
5790
|
musicTitle, tweetDifData, tweetFrzJdg, tweetMaxCombo, baseTwitUrl,
|
|
5790
5791
|
};
|
|
5791
5792
|
const resultCommon = unEscapeHtml(makeResultText(g_templateObj.resultFormatDf, resultParams));
|