mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
Fixes
This commit is contained in:
@@ -9092,6 +9092,7 @@ speechSynthesis.getVoices();
|
|||||||
var ref = this.photonLobbyUserData.get(photonId);
|
var ref = this.photonLobbyUserData.get(photonId);
|
||||||
if (
|
if (
|
||||||
typeof ref !== 'undefined' &&
|
typeof ref !== 'undefined' &&
|
||||||
|
photonId !== this.photonLobbyCurrentUser &&
|
||||||
(photonUser.status !== ref.status ||
|
(photonUser.status !== ref.status ||
|
||||||
photonUser.statusDescription !== ref.statusDescription)
|
photonUser.statusDescription !== ref.statusDescription)
|
||||||
) {
|
) {
|
||||||
|
|||||||
+1
-1
@@ -351,7 +351,7 @@ Vue.component('marquee-text', MarqueeText);
|
|||||||
} else {
|
} else {
|
||||||
this.lastLocationTimer = '';
|
this.lastLocationTimer = '';
|
||||||
}
|
}
|
||||||
if (this.lastLocation.onlineForTimer) {
|
if (this.lastLocation.onlineFor) {
|
||||||
this.onlineForTimer = timeToText(
|
this.onlineForTimer = timeToText(
|
||||||
Date.now() - this.lastLocation.onlineFor
|
Date.now() - this.lastLocation.onlineFor
|
||||||
);
|
);
|
||||||
|
|||||||
+6
-2
@@ -404,7 +404,9 @@ html
|
|||||||
template(v-else-if="downloadProgress > 0")
|
template(v-else-if="downloadProgress > 0")
|
||||||
span(style="display:inline-block;margin-right:5px") {{ downloadProgress }}%
|
span(style="display:inline-block;margin-right:5px") {{ downloadProgress }}%
|
||||||
template(v-if="lastLocation.date !== 0")
|
template(v-if="lastLocation.date !== 0")
|
||||||
span(style="float:right") {{ lastLocationTimer }} / {{ onlineForTimer }}
|
span(style="float:right") {{ lastLocationTimer }}
|
||||||
|
template(v-if="onlineForTimer")
|
||||||
|
| / {{ onlineForTimer }}
|
||||||
span(style="display:inline-block") {{ lastLocation.playerList.length }}
|
span(style="display:inline-block") {{ lastLocation.playerList.length }}
|
||||||
span(style="display:inline-block;font-weight:bold") {{ lastLocation.friendList.length !== 0 ? ` (${lastLocation.friendList.length})` : ''}}
|
span(style="display:inline-block;font-weight:bold") {{ lastLocation.friendList.length !== 0 ? ` (${lastLocation.friendList.length})` : ''}}
|
||||||
span(v-if="photonLobbyBotSize > 0 && lastLocation.playerList.length > 0" style="display:inline-block;color:red;margin-left:5px") {{ photonLobbyBotSize }}
|
span(v-if="photonLobbyBotSize > 0 && lastLocation.playerList.length > 0" style="display:inline-block;color:red;margin-left:5px") {{ photonLobbyBotSize }}
|
||||||
@@ -414,7 +416,9 @@ html
|
|||||||
template(v-else-if="downloadProgress > 0")
|
template(v-else-if="downloadProgress > 0")
|
||||||
span(style="display:inline-block;margin-right:5px") Downloading: {{ downloadProgress }}%
|
span(style="display:inline-block;margin-right:5px") Downloading: {{ downloadProgress }}%
|
||||||
template(v-if="lastLocation.date !== 0")
|
template(v-if="lastLocation.date !== 0")
|
||||||
span(style="float:right") Timer: {{ lastLocationTimer }} / {{ onlineForTimer }}
|
span(style="float:right") Timer: {{ lastLocationTimer }}
|
||||||
|
template(v-if="onlineForTimer")
|
||||||
|
| / {{ onlineForTimer }}
|
||||||
span(style="display:inline-block") Players: {{ lastLocation.playerList.length }}
|
span(style="display:inline-block") Players: {{ lastLocation.playerList.length }}
|
||||||
span(style="display:inline-block;font-weight:bold") {{ lastLocation.friendList.length !== 0 ? ` (${lastLocation.friendList.length})` : ''}}
|
span(style="display:inline-block;font-weight:bold") {{ lastLocation.friendList.length !== 0 ? ` (${lastLocation.friendList.length})` : ''}}
|
||||||
span(v-if="photonLobbyBotSize > 0 && lastLocation.playerList.length > 0" style="display:inline-block;color:red;margin-left:5px") {{ photonLobbyBotSize }}
|
span(v-if="photonLobbyBotSize > 0 && lastLocation.playerList.length > 0" style="display:inline-block;color:red;margin-left:5px") {{ photonLobbyBotSize }}
|
||||||
|
|||||||
Reference in New Issue
Block a user