mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
items != props
This commit is contained in:
@@ -9863,7 +9863,7 @@ console.log(`isLinux: ${LINUX}`);
|
||||
'pedestals',
|
||||
'prints',
|
||||
'drones',
|
||||
'items'
|
||||
'props'
|
||||
];
|
||||
|
||||
$app.methods.createNewInstance = async function (worldId = '', options) {
|
||||
|
||||
@@ -98,6 +98,10 @@
|
||||
class="x-friend-item"
|
||||
value="drones"
|
||||
:label="$t('dialog.new_instance.content_drones')"></el-option>
|
||||
<el-option
|
||||
class="x-friend-item"
|
||||
value="props"
|
||||
:label="$t('dialog.new_instance.content_items')"></el-option>
|
||||
</el-option-group>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
@@ -367,7 +367,7 @@
|
||||
}}</el-dropdown-item>
|
||||
<template v-if="userDialog.ref.id === API.currentUser.id">
|
||||
<el-dropdown-item icon="el-icon-picture-outline" command="Manage Gallery" divided>{{
|
||||
t('dialog.user.actions.manage_gallery_icon')
|
||||
t('dialog.user.actions.manage_gallery_inventory_icon')
|
||||
}}</el-dropdown-item>
|
||||
<el-dropdown-item icon="el-icon-s-custom" command="Show Avatar Author">{{
|
||||
t('dialog.user.actions.show_avatar_author')
|
||||
|
||||
@@ -67,6 +67,10 @@
|
||||
<el-checkbox v-model="setWorldTagsDialog.drones">
|
||||
{{ $t('dialog.new_instance.content_drones') }}
|
||||
</el-checkbox>
|
||||
<br />
|
||||
<el-checkbox v-model="setWorldTagsDialog.props">
|
||||
{{ $t('dialog.new_instance.content_items') }}
|
||||
</el-checkbox>
|
||||
<template #footer>
|
||||
<div style="display: flex">
|
||||
<el-button size="small" @click="setWorldTagsDialog.visible = false">
|
||||
@@ -121,7 +125,8 @@
|
||||
stickers: true,
|
||||
pedestals: true,
|
||||
prints: true,
|
||||
drones: true
|
||||
drones: true,
|
||||
props: true
|
||||
}
|
||||
};
|
||||
},
|
||||
@@ -203,6 +208,9 @@
|
||||
case 'feature_drones_disabled':
|
||||
D.drones = false;
|
||||
break;
|
||||
case 'feature_props_disabled':
|
||||
D.props = false;
|
||||
break;
|
||||
}
|
||||
});
|
||||
D.authorTags = authorTags.toString();
|
||||
@@ -272,6 +280,9 @@
|
||||
if (!D.drones) {
|
||||
tags.unshift('feature_drones_disabled');
|
||||
}
|
||||
if (!D.props) {
|
||||
tags.unshift('feature_props_disabled');
|
||||
}
|
||||
worldRequest
|
||||
.saveWorld({
|
||||
id: this.worldId,
|
||||
|
||||
@@ -267,7 +267,7 @@
|
||||
{{ $t('dialog.world.actions.change_preview') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item icon="el-icon-edit" command="Change Tags">
|
||||
{{ $t('dialog.world.actions.change_tags') }}
|
||||
{{ $t('dialog.world.actions.change_warnings_settings_tags') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item icon="el-icon-edit" command="Change Allowed Domains">
|
||||
{{ $t('dialog.world.actions.change_allowed_video_player_domains') }}
|
||||
|
||||
@@ -257,7 +257,7 @@
|
||||
"vrchat_credits": "VRChat Credits",
|
||||
"refresh": "Click to refresh",
|
||||
"logout": "Logout",
|
||||
"manage_gallery_icon": "Manage VRC+ Images",
|
||||
"manage_gallery_inventory_icon": "Manage VRC+ Images & Inventory",
|
||||
"export_friend_list": "Export Friends List",
|
||||
"export_own_avatars": "Export Own Avatars",
|
||||
"discord_names": "Discord Names",
|
||||
@@ -713,7 +713,7 @@
|
||||
"request_invite_with_message": "Request Invite With Message",
|
||||
"invite_to_group": "Invite To Group",
|
||||
"send_boop": "Send Boop",
|
||||
"manage_gallery_icon": "Manage VRC+ Images",
|
||||
"manage_gallery_inventory_icon": "Manage VRC+ Images & Inventory",
|
||||
"accept_friend_request": "Accept Friend Request",
|
||||
"decline_friend_request": "Decline Friend Request",
|
||||
"cancel_friend_request": "Cancel Friend Request",
|
||||
@@ -874,7 +874,7 @@
|
||||
"change_capacity": "Change Capacity",
|
||||
"change_recommended_capacity": "Change Recommended Capacity",
|
||||
"change_preview": "Change Youtube Preview",
|
||||
"change_tags": "Change Tags",
|
||||
"change_warnings_settings_tags": "Change Content Warnings, Settings and Tags",
|
||||
"change_image": "Change Image",
|
||||
"change_allowed_video_player_domains": "Change Allowed Video Player Domains",
|
||||
"download_package": "Download Unity Package",
|
||||
@@ -1157,6 +1157,7 @@
|
||||
"content_pedestals": "Pedestals",
|
||||
"content_prints": "Prints",
|
||||
"content_drones": "Drones",
|
||||
"content_items": "Items",
|
||||
"world_id": "World ID",
|
||||
"instance_id": "Instance ID",
|
||||
"instance_id_placeholder": "Random",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
icon="el-icon-picture-outline"
|
||||
style="margin-left: 0; margin-right: 5px; margin-top: 10px"
|
||||
@click="showGalleryDialog()"
|
||||
>{{ t('view.profile.profile.manage_gallery_icon') }}</el-button
|
||||
>{{ t('view.profile.profile.manage_gallery_inventory_icon') }}</el-button
|
||||
>
|
||||
<el-button
|
||||
size="small"
|
||||
|
||||
Reference in New Issue
Block a user