v2019.09.26

This commit is contained in:
pypy
2019-09-26 02:15:34 +09:00
parent 1dc688a6a0
commit 8789b48ba9
2 changed files with 11 additions and 1 deletions

View File

@@ -3471,7 +3471,7 @@ if (window.CefSharp) {
VRCX,
nextRefresh: 0,
isGameRunning: false,
appVersion: '2019.09.24',
appVersion: '2019.09.26',
latestAppVersion: '',
ossDialog: false
},

View File

@@ -1300,6 +1300,16 @@
<div v-loading="inviteDialog.loading">
<location :location="inviteDialog.worldId" :link="false"></location>
<el-select v-model="inviteDialog.userIds" multiple clearable placeholder="Choose Friends" filterable :disabled="inviteDialog.loading" style="width:100%;margin-top:15px">
<el-option-group v-if="API.currentUser" label="ME">
<el-option :label="API.currentUser.displayName" :value="API.currentUser.id" class="x-friend-item" style="height:auto">
<div class="avatar" :class="userStatusClass(API.currentUser)">
<img v-lazy="API.currentUser.currentAvatarThumbnailImageUrl">
</div>
<div class="detail">
<span v-text="API.currentUser.displayName" class="name"></span>
</div>
</el-option>
</el-option-group>
<el-option-group v-if="friendGroup0.length" label="VIP">
<el-option v-for="friend in friendGroup0" :key="friend.id" :label="friend.name" :value="friend.id" class="x-friend-item" style="height:auto">
<template v-if="friend.ref">