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