danoniplus 41.0.0 → 41.0.2
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 +7 -5
- package/js/lib/danoni_constants.js +2 -2
- 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 : 2025/04/
|
|
7
|
+
* Revised : 2025/04/21
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 41.0.
|
|
12
|
-
const g_revisedDate = `2025/04/
|
|
11
|
+
const g_version = `Ver 41.0.2`;
|
|
12
|
+
const g_revisedDate = `2025/04/21`;
|
|
13
13
|
|
|
14
14
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
15
15
|
let g_localVersion = ``;
|
|
@@ -5034,7 +5034,7 @@ const titleInit = (_initFlg = false) => {
|
|
|
5034
5034
|
}, g_cssObj.button_Start),
|
|
5035
5035
|
|
|
5036
5036
|
// 製作者表示
|
|
5037
|
-
createCreditBtn(`lnkMaker`, `${g_lblNameObj.maker}: ${creatorName}`, creatorUrl),
|
|
5037
|
+
createCreditBtn(`lnkMaker`, `${g_lblNameObj.maker}: ${g_headerObj.musicSelectUse ? creatorName : g_headerObj.tuningInit}`, creatorUrl),
|
|
5038
5038
|
|
|
5039
5039
|
// アーティスト表示
|
|
5040
5040
|
createCreditBtn(`lnkArtist`, `${g_lblNameObj.artist}: ${g_headerObj.artistNames[g_settings.musicIdxNum]}`, g_headerObj.artistUrls[g_settings.musicIdxNum]),
|
|
@@ -7333,6 +7333,7 @@ const gaugeFormat = (_mode, _border, _rcv, _dmg, _init, _lifeValFlg) => {
|
|
|
7333
7333
|
const [rateText, allowableCntsText] = getAccuracy(borderVal, realRcv, realDmg, initVal, allCnt);
|
|
7334
7334
|
g_workObj.requiredAccuracy = rateText;
|
|
7335
7335
|
|
|
7336
|
+
// 許容ミス数のみ、オンマウスで表示するためpointer-eventsを有効にする
|
|
7336
7337
|
return `<div id="gaugeDivCover" class="settings_gaugeDivCover">
|
|
7337
7338
|
<div id="lblGaugeDivTable" class="settings_gaugeDivTable">
|
|
7338
7339
|
<div id="lblGaugeStart" class="settings_gaugeDivTableCol settings_gaugeStart">
|
|
@@ -7364,7 +7365,8 @@ const gaugeFormat = (_mode, _border, _rcv, _dmg, _init, _lifeValFlg) => {
|
|
|
7364
7365
|
<div id="dataGaugeDamage" class="settings_gaugeDivTableCol settings_gaugeVal settings_gaugeEtc">
|
|
7365
7366
|
${dmgText}
|
|
7366
7367
|
</div>
|
|
7367
|
-
<div id="dataGaugeRate" class="settings_gaugeDivTableCol settings_gaugeVal settings_gaugeEtc"
|
|
7368
|
+
<div id="dataGaugeRate" class="settings_gaugeDivTableCol settings_gaugeVal settings_gaugeEtc"
|
|
7369
|
+
title="${allowableCntsText}" style="pointer-events: auto;">
|
|
7368
7370
|
${rateText}
|
|
7369
7371
|
</div>
|
|
7370
7372
|
</div>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Source by tickle
|
|
7
7
|
* Created : 2019/11/19
|
|
8
|
-
* Revised : 2025/04/
|
|
8
|
+
* Revised : 2025/04/21 (v41.0.2)
|
|
9
9
|
*
|
|
10
10
|
* https://github.com/cwtickle/danoniplus
|
|
11
11
|
*/
|
|
@@ -251,7 +251,7 @@ const updateWindowSiz = () => {
|
|
|
251
251
|
},
|
|
252
252
|
lblMusicSelectDetail: {
|
|
253
253
|
x: g_btnX(1 / 4), y: g_sHeight / 2 - 45,
|
|
254
|
-
w: g_btnWidth(5 / 8), h:
|
|
254
|
+
w: g_btnWidth(5 / 8), h: 35, siz: 14,
|
|
255
255
|
align: C_ALIGN_LEFT, padding: `0 10px`, display: `inline-block`,
|
|
256
256
|
pointerEvents: C_DIS_INHERIT,
|
|
257
257
|
},
|