mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-06 14:46:04 +02:00
Add currentAvatarAssetUrl, typos
This commit is contained in:
+5
-2
@@ -9461,6 +9461,9 @@ speechSynthesis.getVoices();
|
|||||||
API.getAvatar({avatarId}).then((args) => {
|
API.getAvatar({avatarId}).then((args) => {
|
||||||
var { ref } = args;
|
var { ref } = args;
|
||||||
D.ref = ref;
|
D.ref = ref;
|
||||||
|
if ((ref.imageUrl === API.currentUser.currentAvatarImageUrl) && (!ref.assetUrl)) {
|
||||||
|
D.ref.assetUrl = API.currentUser.currentAvatarAssetUrl;
|
||||||
|
}
|
||||||
D.visible = true;
|
D.visible = true;
|
||||||
if (/quest/.test(ref.tags)) {
|
if (/quest/.test(ref.tags)) {
|
||||||
D.isQuestFallback = true;
|
D.isQuestFallback = true;
|
||||||
@@ -9480,7 +9483,7 @@ speechSynthesis.getVoices();
|
|||||||
var fileId = extractFileId(ref.assetUrl);
|
var fileId = extractFileId(ref.assetUrl);
|
||||||
var fileVersion = extractFileVersion(ref.assetUrl);
|
var fileVersion = extractFileVersion(ref.assetUrl);
|
||||||
}
|
}
|
||||||
var imageId = extractFileId(ref.thumbnailImageUrl);
|
var imageId = extractFileId(ref.imageUrl);
|
||||||
D.fileSize = '';
|
D.fileSize = '';
|
||||||
if (fileId) {
|
if (fileId) {
|
||||||
D.fileSize = 'Loading';
|
D.fileSize = 'Loading';
|
||||||
@@ -9620,7 +9623,7 @@ speechSynthesis.getVoices();
|
|||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((refUserId === API.currentUser.id) && (API.cachedAvatars.has(API.currentUser.currentAvatar))) {
|
if (refUserId === API.currentUser.id) {
|
||||||
this.showAvatarDialog(API.currentUser.currentAvatar);
|
this.showAvatarDialog(API.currentUser.currentAvatar);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -694,7 +694,7 @@ html
|
|||||||
span.name Use a Primary Password
|
span.name Use a Primary Password
|
||||||
el-switch(v-model="enablePrimaryPassword" @change="enablePrimaryPasswordChange" :disabled="!loginForm.savedCredentials[API.currentUser.username]")
|
el-switch(v-model="enablePrimaryPassword" @change="enablePrimaryPasswordChange" :disabled="!loginForm.savedCredentials[API.currentUser.username]")
|
||||||
div.options-container
|
div.options-container
|
||||||
span.header Side Pannel Sorting Options
|
span.header Side Panel Sorting Options
|
||||||
div.options-container-item
|
div.options-container-item
|
||||||
span.name Sort Private to bottom
|
span.name Sort Private to bottom
|
||||||
el-switch(v-model="orderFriendsGroupPrivate")
|
el-switch(v-model="orderFriendsGroupPrivate")
|
||||||
@@ -810,7 +810,7 @@ html
|
|||||||
div.options-container-item
|
div.options-container-item
|
||||||
el-button(size="small" icon="el-icon-chat-square" @click="showNotyFeedFiltersDialog()") Notification Filters
|
el-button(size="small" icon="el-icon-chat-square" @click="showNotyFeedFiltersDialog()") Notification Filters
|
||||||
br
|
br
|
||||||
span.sub-header Text-To-Speach Options
|
span.sub-header Text-To-Speech Options
|
||||||
div.options-container-item
|
div.options-container-item
|
||||||
span.name Notification TTS, When to play:
|
span.name Notification TTS, When to play:
|
||||||
br
|
br
|
||||||
|
|||||||
Reference in New Issue
Block a user