kingkont 0.10.2 → 0.10.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/index.html +1 -1
- package/package.json +1 -1
- package/renderer/board.js +3 -4
package/index.html
CHANGED
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
чтобы не ехало с центрированной шапкой. Заполняется renderWelcomeStatus
|
|
75
75
|
(board.js) при каждом показе welcome И при auth-changed/balance-tick. -->
|
|
76
76
|
<div class="welcome-status" id="welcomeStatus" style="-webkit-app-region: no-drag;">
|
|
77
|
-
<div class="welcome-status-balances" id="welcomeStatusBalances"></div>
|
|
78
77
|
<div class="welcome-status-identity" id="welcomeStatusIdentity"></div>
|
|
78
|
+
<div class="welcome-status-balances" id="welcomeStatusBalances"></div>
|
|
79
79
|
</div>
|
|
80
80
|
<div class="welcome-inner">
|
|
81
81
|
<div class="welcome-header">
|
package/package.json
CHANGED
package/renderer/board.js
CHANGED
|
@@ -213,10 +213,9 @@ async function renderWelcomeIdentity() {
|
|
|
213
213
|
let status = null;
|
|
214
214
|
try { status = await window.appChatium?.status?.(); } catch {}
|
|
215
215
|
if (status?.connected) {
|
|
216
|
-
//
|
|
217
|
-
//
|
|
218
|
-
|
|
219
|
-
const name = status.email || status.login || status.fullName || status.name || status.userId || 'KingKont';
|
|
216
|
+
// Приоритет имени: displayName (то что показывает Chatium в UI) →
|
|
217
|
+
// email → login → fullName → name → userId.
|
|
218
|
+
const name = status.displayName || status.email || status.login || status.fullName || status.name || status.userId || 'KingKont';
|
|
220
219
|
const sub = status.userId && status.userId !== name ? `· ${status.userId.slice(0, 8)}` : '';
|
|
221
220
|
wrap.innerHTML = `
|
|
222
221
|
<span style="color:#5c5; font-size:13px; line-height:1;">●</span>
|