refactor: remove ip from host parameters
This commit is contained in:
parent
bcdefca32c
commit
63a36ad5d4
@ -1 +1 @@
|
|||||||
Subproject commit 6ed4e63b3d2f8afe3f10cad0992c9d4af1b9274a
|
Subproject commit d65c6a6a2af2e53add5c31f7eef1aaaaa9060813
|
@ -122,7 +122,6 @@ class SessionStartOperator(bpy.types.Operator):
|
|||||||
try:
|
try:
|
||||||
client.host(
|
client.host(
|
||||||
id=settings.username,
|
id=settings.username,
|
||||||
address=settings.ip,
|
|
||||||
port=settings.port,
|
port=settings.port,
|
||||||
ipc_port=settings.ipc_port,
|
ipc_port=settings.ipc_port,
|
||||||
timeout=settings.connection_timeout,
|
timeout=settings.connection_timeout,
|
||||||
|
@ -362,7 +362,7 @@ class SessionProps(bpy.types.PropertyGroup):
|
|||||||
update=presence.update_overlay_settings
|
update=presence.update_overlay_settings
|
||||||
)
|
)
|
||||||
presence_show_far_user: bpy.props.BoolProperty(
|
presence_show_far_user: bpy.props.BoolProperty(
|
||||||
name="Show different scenes",
|
name="Show users on different scenes",
|
||||||
description="Show user on different scenes",
|
description="Show user on different scenes",
|
||||||
default=False,
|
default=False,
|
||||||
update=presence.update_overlay_settings
|
update=presence.update_overlay_settings
|
||||||
@ -379,6 +379,7 @@ class SessionProps(bpy.types.PropertyGroup):
|
|||||||
)
|
)
|
||||||
password: bpy.props.StringProperty(
|
password: bpy.props.StringProperty(
|
||||||
name="password",
|
name="password",
|
||||||
|
default=random_string_digits(),
|
||||||
description='Session password',
|
description='Session password',
|
||||||
subtype='PASSWORD'
|
subtype='PASSWORD'
|
||||||
)
|
)
|
||||||
|
@ -176,18 +176,22 @@ class SESSION_PT_settings_network(bpy.types.Panel):
|
|||||||
|
|
||||||
box = row.box()
|
box = row.box()
|
||||||
|
|
||||||
row = box.row()
|
|
||||||
row.prop(settings, "ip", text="IP")
|
|
||||||
row = box.row()
|
|
||||||
row.label(text="Port:")
|
|
||||||
row.prop(settings, "port", text="")
|
|
||||||
row = box.row()
|
|
||||||
if runtime_settings.session_mode == 'HOST':
|
if runtime_settings.session_mode == 'HOST':
|
||||||
|
row = box.row()
|
||||||
|
row.label(text="Port:")
|
||||||
|
row.prop(settings, "port", text="")
|
||||||
|
row = box.row()
|
||||||
row.label(text="Admin password:")
|
row.label(text="Admin password:")
|
||||||
row.prop(runtime_settings, "password", text="")
|
row.prop(runtime_settings, "password", text="")
|
||||||
row = box.row()
|
row = box.row()
|
||||||
row.operator("session.start", text="HOST").host = True
|
row.operator("session.start", text="HOST").host = True
|
||||||
else:
|
else:
|
||||||
|
row = box.row()
|
||||||
|
row.prop(settings, "ip", text="IP")
|
||||||
|
row = box.row()
|
||||||
|
row.label(text="Port:")
|
||||||
|
row.prop(settings, "port", text="")
|
||||||
|
row = box.row()
|
||||||
row.prop(runtime_settings, "admin", text='Connect as admin', icon='DISCLOSURE_TRI_DOWN' if runtime_settings.admin
|
row.prop(runtime_settings, "admin", text='Connect as admin', icon='DISCLOSURE_TRI_DOWN' if runtime_settings.admin
|
||||||
else 'DISCLOSURE_TRI_RIGHT')
|
else 'DISCLOSURE_TRI_RIGHT')
|
||||||
if runtime_settings.admin:
|
if runtime_settings.admin:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user