mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 22:36:05 +02:00
Fix emoji & sticker count, fix delete/open cached world/avatar, default enable memos
This commit is contained in:
+4
-2
@@ -364,7 +364,9 @@ console.log(`isLinux: ${LINUX}`);
|
|||||||
getAvatarGallery: this.getAvatarGallery,
|
getAvatarGallery: this.getAvatarGallery,
|
||||||
inviteImageUpload: this.inviteImageUpload,
|
inviteImageUpload: this.inviteImageUpload,
|
||||||
clearInviteImageUpload: this.clearInviteImageUpload,
|
clearInviteImageUpload: this.clearInviteImageUpload,
|
||||||
isLinux: this.isLinux
|
isLinux: this.isLinux,
|
||||||
|
openFolderGeneric: this.openFolderGeneric,
|
||||||
|
deleteVRChatCache: this.deleteVRChatCache
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
el: '#root',
|
el: '#root',
|
||||||
@@ -6277,7 +6279,7 @@ console.log(`isLinux: ${LINUX}`);
|
|||||||
);
|
);
|
||||||
$app.data.hideUserMemos = await configRepository.getBool(
|
$app.data.hideUserMemos = await configRepository.getBool(
|
||||||
'VRCX_hideUserMemos',
|
'VRCX_hideUserMemos',
|
||||||
true
|
false
|
||||||
);
|
);
|
||||||
$app.data.hideUnfriends = await configRepository.getBool(
|
$app.data.hideUnfriends = await configRepository.getBool(
|
||||||
'VRCX_hideUnfriends',
|
'VRCX_hideUnfriends',
|
||||||
|
|||||||
@@ -149,7 +149,9 @@
|
|||||||
<el-tab-pane v-loading="galleryDialogEmojisLoading" lazy>
|
<el-tab-pane v-loading="galleryDialogEmojisLoading" lazy>
|
||||||
<span slot="label">
|
<span slot="label">
|
||||||
{{ t('dialog.gallery_icons.emojis') }}
|
{{ t('dialog.gallery_icons.emojis') }}
|
||||||
<span style="color: #909399; font-size: 12px; margin-left: 5px"> {{ emojiTable.length }}/9 </span>
|
<span style="color: #909399; font-size: 12px; margin-left: 5px">
|
||||||
|
{{ emojiTable.length }}/{{ API.cachedConfig?.maxUserEmoji }}
|
||||||
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<input
|
<input
|
||||||
id="EmojiUploadButton"
|
id="EmojiUploadButton"
|
||||||
@@ -289,7 +291,9 @@
|
|||||||
<el-tab-pane v-loading="galleryDialogStickersLoading" lazy>
|
<el-tab-pane v-loading="galleryDialogStickersLoading" lazy>
|
||||||
<span slot="label">
|
<span slot="label">
|
||||||
{{ t('dialog.gallery_icons.stickers') }}
|
{{ t('dialog.gallery_icons.stickers') }}
|
||||||
<span style="color: #909399; font-size: 12px; margin-left: 5px"> {{ stickerTable.length }}/9 </span>
|
<span style="color: #909399; font-size: 12px; margin-left: 5px">
|
||||||
|
{{ stickerTable.length }}/{{ API.cachedConfig?.maxUserStickers }}
|
||||||
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<input
|
<input
|
||||||
id="StickerUploadButton"
|
id="StickerUploadButton"
|
||||||
|
|||||||
@@ -139,7 +139,7 @@
|
|||||||
effect="plain"
|
effect="plain"
|
||||||
size="mini"
|
size="mini"
|
||||||
style="margin-right: 5px; margin-top: 5px"
|
style="margin-right: 5px; margin-top: 5px"
|
||||||
@click="openFolderGeneric(worldDialog.cachePath)">
|
@click="openFolder(worldDialog.cachePath)">
|
||||||
<span v-text="worldDialog.cacheSize" />
|
<span v-text="worldDialog.cacheSize" />
|
||||||
| {{ $t('dialog.world.tags.cache') }}
|
| {{ $t('dialog.world.tags.cache') }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
@@ -191,7 +191,7 @@
|
|||||||
icon="el-icon-delete"
|
icon="el-icon-delete"
|
||||||
circle
|
circle
|
||||||
:disabled="isGameRunning && worldDialog.cacheLocked"
|
:disabled="isGameRunning && worldDialog.cacheLocked"
|
||||||
@click="deleteVRChatCache(worldDialog.ref)" />
|
@click="deleteWorldFromCache(worldDialog.ref)" />
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
placement="top"
|
placement="top"
|
||||||
@@ -811,7 +811,9 @@
|
|||||||
'showFullscreenImageDialog',
|
'showFullscreenImageDialog',
|
||||||
'showWorldDialog',
|
'showWorldDialog',
|
||||||
'showFavoriteDialog',
|
'showFavoriteDialog',
|
||||||
'openExternalLink'
|
'openExternalLink',
|
||||||
|
'openFolderGeneric',
|
||||||
|
'deleteVRChatCache'
|
||||||
],
|
],
|
||||||
props: {
|
props: {
|
||||||
worldDialog: Object,
|
worldDialog: Object,
|
||||||
@@ -983,11 +985,11 @@
|
|||||||
this.newInstanceDialogLocationTag = '';
|
this.newInstanceDialogLocationTag = '';
|
||||||
this.$nextTick(() => (this.newInstanceDialogLocationTag = tag));
|
this.$nextTick(() => (this.newInstanceDialogLocationTag = tag));
|
||||||
},
|
},
|
||||||
openFolderGeneric(path) {
|
openFolder(path) {
|
||||||
this.$emit('open-folder-generic', path);
|
this.openFolderGeneric(path);
|
||||||
},
|
},
|
||||||
deleteVRChatCache(world) {
|
deleteWorldFromCache(world) {
|
||||||
this.$emit('delete-vrchat-cache', world);
|
this.deleteVRChatCache(world);
|
||||||
},
|
},
|
||||||
worldDialogCommand(command) {
|
worldDialogCommand(command) {
|
||||||
const D = this.worldDialog;
|
const D = this.worldDialog;
|
||||||
|
|||||||
Reference in New Issue
Block a user