Using "your Blender Cloud" instead of "your home project".
This commit is contained in:
parent
2190bd795e
commit
be99bcb250
@ -26,7 +26,7 @@ def blender_syncable_versions(self, context):
|
|||||||
bss = context.window_manager.blender_sync_status
|
bss = context.window_manager.blender_sync_status
|
||||||
versions = bss.available_blender_versions
|
versions = bss.available_blender_versions
|
||||||
if not versions:
|
if not versions:
|
||||||
return [('', 'No settings stored in your home project.', '')]
|
return [('', 'No settings stored in your Blender Cloud', '')]
|
||||||
return [(v, v, '') for v in versions]
|
return [(v, v, '') for v in versions]
|
||||||
|
|
||||||
|
|
||||||
|
@ -250,7 +250,7 @@ async def available_blender_versions(home_project_id: str, user_id: str) -> list
|
|||||||
caching=False)
|
caching=False)
|
||||||
|
|
||||||
if sync_group is None:
|
if sync_group is None:
|
||||||
bss.report({'ERROR'}, 'No synced Blender settings in your home project')
|
bss.report({'ERROR'}, 'No synced Blender settings in your Blender Cloud')
|
||||||
log.debug('-- unable to find sync group for home_project_id=%r and user_id=%r',
|
log.debug('-- unable to find sync group for home_project_id=%r and user_id=%r',
|
||||||
home_project_id, user_id)
|
home_project_id, user_id)
|
||||||
return []
|
return []
|
||||||
@ -268,7 +268,7 @@ async def available_blender_versions(home_project_id: str, user_id: str) -> list
|
|||||||
caching=False)
|
caching=False)
|
||||||
|
|
||||||
if not sync_nodes or not sync_nodes._items:
|
if not sync_nodes or not sync_nodes._items:
|
||||||
bss.report({'ERROR'}, 'No synced Blender settings in your home project')
|
bss.report({'ERROR'}, 'No synced Blender settings in your Blender Cloud.')
|
||||||
return []
|
return []
|
||||||
|
|
||||||
versions = [node.name for node in sync_nodes._items]
|
versions = [node.name for node in sync_nodes._items]
|
||||||
@ -464,7 +464,8 @@ class PILLAR_OT_sync(pillar.PillarOperatorMixin,
|
|||||||
|
|
||||||
# If the sync group node doesn't exist, offer a list of groups that do.
|
# If the sync group node doesn't exist, offer a list of groups that do.
|
||||||
if self.sync_group_id is None:
|
if self.sync_group_id is None:
|
||||||
self.bss_report({'ERROR'}, 'There are no synced Blender settings in your home project.')
|
self.bss_report({'ERROR'},
|
||||||
|
'There are no synced Blender settings in your Blender Cloud.')
|
||||||
return
|
return
|
||||||
|
|
||||||
if self.sync_group_versioned_id is None:
|
if self.sync_group_versioned_id is None:
|
||||||
|
Reference in New Issue
Block a user