mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
Small fixes
This commit is contained in:
@@ -7542,6 +7542,11 @@ speechSynthesis.getVoices();
|
|||||||
|
|
||||||
$app.methods.addGameLog = function (entry) {
|
$app.methods.addGameLog = function (entry) {
|
||||||
this.gameLogSessionTable.push(entry);
|
this.gameLogSessionTable.push(entry);
|
||||||
|
this.updateSharedFeed(false);
|
||||||
|
if (entry.type === 'VideoPlay') {
|
||||||
|
// event time can be before last gameLog entry
|
||||||
|
this.updateSharedFeed(true);
|
||||||
|
}
|
||||||
if (
|
if (
|
||||||
entry.type === 'LocationDestination' ||
|
entry.type === 'LocationDestination' ||
|
||||||
entry.type === 'AvatarChange' ||
|
entry.type === 'AvatarChange' ||
|
||||||
@@ -7560,13 +7565,8 @@ speechSynthesis.getVoices();
|
|||||||
if (!this.gameLogSearch(entry)) {
|
if (!this.gameLogSearch(entry)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (entry.type === 'VideoPlay') {
|
|
||||||
// event time can be before last gameLog entry
|
|
||||||
this.updateSharedFeed(true);
|
|
||||||
}
|
|
||||||
this.gameLogTable.data.push(entry);
|
this.gameLogTable.data.push(entry);
|
||||||
this.sweepGameLog();
|
this.sweepGameLog();
|
||||||
this.updateSharedFeed(false);
|
|
||||||
this.notifyMenu('gameLog');
|
this.notifyMenu('gameLog');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1654,7 +1654,7 @@ html
|
|||||||
#[i.x-user-status.askme] Ask Me
|
#[i.x-user-status.askme] Ask Me
|
||||||
el-option(label="Do Not Disturb" value="busy").
|
el-option(label="Do Not Disturb" value="busy").
|
||||||
#[i.x-user-status.busy] Do Not Disturb
|
#[i.x-user-status.busy] Do Not Disturb
|
||||||
el-option(label="Offline" value="offline").
|
el-option(v-if="API.currentUser.$isModerator" label="Offline" value="offline").
|
||||||
#[i.x-user-status.offline] Offline
|
#[i.x-user-status.offline] Offline
|
||||||
el-input(v-model="socialStatusDialog.statusDescription" placeholder="Status" maxlength="32" show-word-limit style="dispaly:block;margin-top:10px")
|
el-input(v-model="socialStatusDialog.statusDescription" placeholder="Status" maxlength="32" show-word-limit style="dispaly:block;margin-top:10px")
|
||||||
template(#footer)
|
template(#footer)
|
||||||
|
|||||||
Reference in New Issue
Block a user