mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Last join fixes
This commit is contained in:
+14
-4
@@ -1112,7 +1112,8 @@ speechSynthesis.getVoices();
|
|||||||
'</el-tooltip>' +
|
'</el-tooltip>' +
|
||||||
'</span>',
|
'</span>',
|
||||||
props: {
|
props: {
|
||||||
location: String
|
location: String,
|
||||||
|
currentlocation: String
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -1125,7 +1126,10 @@ speechSynthesis.getVoices();
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
locationobject() {
|
location() {
|
||||||
|
this.parse();
|
||||||
|
},
|
||||||
|
currentlocation() {
|
||||||
this.parse();
|
this.parse();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -10930,7 +10934,10 @@ speechSynthesis.getVoices();
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'location':
|
case 'location':
|
||||||
this.addInstanceJoinHistory(this.lastLocation, gameLog.dt);
|
this.addInstanceJoinHistory(
|
||||||
|
this.lastLocation.location,
|
||||||
|
gameLog.dt
|
||||||
|
);
|
||||||
var worldName = this.replaceBioSymbols(gameLog.worldName);
|
var worldName = this.replaceBioSymbols(gameLog.worldName);
|
||||||
if (this.isGameRunning) {
|
if (this.isGameRunning) {
|
||||||
this.lastLocationReset(gameLog.dt);
|
this.lastLocationReset(gameLog.dt);
|
||||||
@@ -19542,7 +19549,10 @@ speechSynthesis.getVoices();
|
|||||||
D.isQuest = false;
|
D.isQuest = false;
|
||||||
D.isIos = false;
|
D.isIos = false;
|
||||||
D.hasImposter = false;
|
D.hasImposter = false;
|
||||||
D.isFavorite = API.cachedFavoritesByObjectId.has(avatarId) || (this.isLocalUserVrcplusSupporter() && this.localAvatarFavoritesList.includes(avatarId));
|
D.isFavorite =
|
||||||
|
API.cachedFavoritesByObjectId.has(avatarId) ||
|
||||||
|
(this.isLocalUserVrcplusSupporter() &&
|
||||||
|
this.localAvatarFavoritesList.includes(avatarId));
|
||||||
D.isBlocked = API.cachedAvatarModerations.has(avatarId);
|
D.isBlocked = API.cachedAvatarModerations.has(avatarId);
|
||||||
this.ignoreAvatarMemoSave = true;
|
this.ignoreAvatarMemoSave = true;
|
||||||
D.memo = '';
|
D.memo = '';
|
||||||
|
|||||||
+13
-13
@@ -332,7 +332,7 @@ html
|
|||||||
invite-yourself(:location="userDialog.$location.tag" :shortname="userDialog.$location.shortName" style="margin-left:5px")
|
invite-yourself(:location="userDialog.$location.tag" :shortname="userDialog.$location.shortName" style="margin-left:5px")
|
||||||
el-tooltip(placement="top" :content="$t('dialog.user.info.refresh_instance_info')" :disabled="hideTooltips")
|
el-tooltip(placement="top" :content="$t('dialog.user.info.refresh_instance_info')" :disabled="hideTooltips")
|
||||||
el-button(@click="refreshInstancePlayerCount(userDialog.$location.tag)" size="mini" icon="el-icon-refresh" style="margin-left:5px" circle)
|
el-button(@click="refreshInstancePlayerCount(userDialog.$location.tag)" size="mini" icon="el-icon-refresh" style="margin-left:5px" circle)
|
||||||
last-join(:location="userDialog.$location.tag")
|
last-join(:location="userDialog.$location.tag" :currentlocation="lastLocation.location")
|
||||||
instance-info(:location="userDialog.$location.tag" :instance="userDialog.instance.ref" :friendcount="userDialog.instance.friendCount" :updateelement="updateInstanceInfo")
|
instance-info(:location="userDialog.$location.tag" :instance="userDialog.instance.ref" :friendcount="userDialog.instance.friendCount" :updateelement="updateInstanceInfo")
|
||||||
location(:location="userDialog.ref.location" :traveling="userDialog.ref.travelingToLocation" style="display:block;margin-top:5px")
|
location(:location="userDialog.ref.location" :traveling="userDialog.ref.travelingToLocation" style="display:block;margin-top:5px")
|
||||||
.x-friend-list(style="flex:1;margin-top:10px;max-height:150px")
|
.x-friend-list(style="flex:1;margin-top:10px;max-height:150px")
|
||||||
@@ -708,7 +708,7 @@ html
|
|||||||
invite-yourself(:location="room.$location.tag" :shortname="room.$location.shortName" style="margin-left:5px")
|
invite-yourself(:location="room.$location.tag" :shortname="room.$location.shortName" style="margin-left:5px")
|
||||||
el-tooltip(placement="top" :content="$t('dialog.world.instances.refresh_instance_info')" :disabled="hideTooltips")
|
el-tooltip(placement="top" :content="$t('dialog.world.instances.refresh_instance_info')" :disabled="hideTooltips")
|
||||||
el-button(@click="refreshInstancePlayerCount(room.tag)" size="mini" icon="el-icon-refresh" style="margin-left:5px" circle)
|
el-button(@click="refreshInstancePlayerCount(room.tag)" size="mini" icon="el-icon-refresh" style="margin-left:5px" circle)
|
||||||
last-join(:location="room.$location.tag")
|
last-join(:location="room.$location.tag" :currentlocation="lastLocation.location")
|
||||||
instance-info(:location="room.tag" :instance="room.ref" :friendcount="room.friendCount" :updateelement="updateInstanceInfo")
|
instance-info(:location="room.tag" :instance="room.ref" :friendcount="room.friendCount" :updateelement="updateInstanceInfo")
|
||||||
.x-friend-list(style="margin:10px 0;max-height:unset" v-if="room.$location.userId || room.users.length")
|
.x-friend-list(style="margin:10px 0;max-height:unset" v-if="room.$location.userId || room.users.length")
|
||||||
.x-friend-item(v-if="room.$location.userId" @click="showUserDialog(room.$location.userId)" class="x-friend-item-border")
|
.x-friend-item(v-if="room.$location.userId" @click="showUserDialog(room.$location.userId)" class="x-friend-item-border")
|
||||||
@@ -1055,7 +1055,7 @@ html
|
|||||||
invite-yourself(:location="room.tag" style="margin-left:5px")
|
invite-yourself(:location="room.tag" style="margin-left:5px")
|
||||||
el-tooltip(placement="top" content="Refresh player count" :disabled="hideTooltips")
|
el-tooltip(placement="top" content="Refresh player count" :disabled="hideTooltips")
|
||||||
el-button(@click="refreshInstancePlayerCount(room.tag)" size="mini" icon="el-icon-refresh" style="margin-left:5px" circle)
|
el-button(@click="refreshInstancePlayerCount(room.tag)" size="mini" icon="el-icon-refresh" style="margin-left:5px" circle)
|
||||||
last-join(:location="room.tag")
|
last-join(:location="room.tag" :currentlocation="lastLocation.location")
|
||||||
instance-info(:location="room.tag" :instance="room.ref" :friendcount="room.friendCount" :updateelement="updateInstanceInfo")
|
instance-info(:location="room.tag" :instance="room.ref" :friendcount="room.friendCount" :updateelement="updateInstanceInfo")
|
||||||
.x-friend-list(style="margin:10px 0;padding:0;max-height:unset" v-if="room.users.length")
|
.x-friend-list(style="margin:10px 0;padding:0;max-height:unset" v-if="room.users.length")
|
||||||
.x-friend-item(v-for="user in room.users" :key="user.id" @click="showUserDialog(user.id)" class="x-friend-item-border")
|
.x-friend-item(v-for="user in room.users" :key="user.id" @click="showUserDialog(user.id)" class="x-friend-item-border")
|
||||||
@@ -1909,11 +1909,11 @@ html
|
|||||||
el-radio-button(label="Off") {{ $t('dialog.shared_feed_filters.off') }}
|
el-radio-button(label="Off") {{ $t('dialog.shared_feed_filters.off') }}
|
||||||
el-radio-button(label="VIP") {{ $t('dialog.shared_feed_filters.favorite') }}
|
el-radio-button(label="VIP") {{ $t('dialog.shared_feed_filters.favorite') }}
|
||||||
el-radio-button(label="Friends") {{ $t('dialog.shared_feed_filters.friends') }}
|
el-radio-button(label="Friends") {{ $t('dialog.shared_feed_filters.friends') }}
|
||||||
.toggle-item
|
//- .toggle-item
|
||||||
span.toggle-name Boop
|
//- span.toggle-name Boop
|
||||||
el-radio-group(v-model="sharedFeedFilters.noty.boop" size="mini" @change="saveSharedFeedFilters")
|
//- el-radio-group(v-model="sharedFeedFilters.noty.boop" size="mini" @change="saveSharedFeedFilters")
|
||||||
el-radio-button(label="Off") {{ $t('dialog.shared_feed_filters.off') }}
|
//- el-radio-button(label="Off") {{ $t('dialog.shared_feed_filters.off') }}
|
||||||
el-radio-button(label="On") {{ $t('dialog.shared_feed_filters.on') }}
|
//- el-radio-button(label="On") {{ $t('dialog.shared_feed_filters.on') }}
|
||||||
.toggle-item
|
.toggle-item
|
||||||
span.toggle-name Group Change
|
span.toggle-name Group Change
|
||||||
el-tooltip(placement="top" style="margin-left:5px" content="When you've left or been kicked from a group, group name changed, group owner changed, role added/removed")
|
el-tooltip(placement="top" style="margin-left:5px" content="When you've left or been kicked from a group, group name changed, group owner changed, role added/removed")
|
||||||
@@ -2163,11 +2163,11 @@ html
|
|||||||
el-radio-button(label="Off") {{ $t('dialog.shared_feed_filters.off') }}
|
el-radio-button(label="Off") {{ $t('dialog.shared_feed_filters.off') }}
|
||||||
el-radio-button(label="VIP") {{ $t('dialog.shared_feed_filters.favorite') }}
|
el-radio-button(label="VIP") {{ $t('dialog.shared_feed_filters.favorite') }}
|
||||||
el-radio-button(label="Friends") {{ $t('dialog.shared_feed_filters.friends') }}
|
el-radio-button(label="Friends") {{ $t('dialog.shared_feed_filters.friends') }}
|
||||||
.toggle-item
|
//- .toggle-item
|
||||||
span.toggle-name Boop
|
//- span.toggle-name Boop
|
||||||
el-radio-group(v-model="sharedFeedFilters.wrist.boop" size="mini" @change="saveSharedFeedFilters")
|
//- el-radio-group(v-model="sharedFeedFilters.wrist.boop" size="mini" @change="saveSharedFeedFilters")
|
||||||
el-radio-button(label="Off") {{ $t('dialog.shared_feed_filters.off') }}
|
//- el-radio-button(label="Off") {{ $t('dialog.shared_feed_filters.off') }}
|
||||||
el-radio-button(label="On") {{ $t('dialog.shared_feed_filters.on') }}
|
//- el-radio-button(label="On") {{ $t('dialog.shared_feed_filters.on') }}
|
||||||
.toggle-item
|
.toggle-item
|
||||||
span.toggle-name Group Change
|
span.toggle-name Group Change
|
||||||
el-tooltip(placement="top" style="margin-left:5px" content="When you've left or been kicked from a group, group name changed, group owner changed, role added/removed")
|
el-tooltip(placement="top" style="margin-left:5px" content="When you've left or been kicked from a group, group name changed, group owner changed, role added/removed")
|
||||||
|
|||||||
Reference in New Issue
Block a user