Compare commits
3 Commits
version-1.
...
version-1.
Author | SHA1 | Date | |
---|---|---|---|
5b77ae50a1 | |||
74958cf217 | |||
5026dfc441 |
@@ -21,7 +21,7 @@
|
||||
bl_info = {
|
||||
'name': 'Blender Cloud',
|
||||
"author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis",
|
||||
'version': (1, 6, 0),
|
||||
'version': (1, 6, 1),
|
||||
'blender': (2, 77, 0),
|
||||
'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser',
|
||||
'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon '
|
||||
|
@@ -162,7 +162,11 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
||||
|
||||
# Add extra settings specific to the job type
|
||||
if scene.flamenco_render_job_type == 'blender-render-progressive':
|
||||
samples = scene.cycles.samples
|
||||
if scene.cycles.progressive == 'BRANCHED_PATH':
|
||||
samples = scene.cycles.aa_samples
|
||||
else:
|
||||
samples = scene.cycles.samples
|
||||
|
||||
if scene.cycles.use_square_samples:
|
||||
samples **= 2
|
||||
|
||||
|
@@ -860,6 +860,13 @@ class AuthenticatedPillarOperatorMixin(PillarOperatorMixin):
|
||||
self.report({'ERROR'}, 'Please log in on Blender ID first.')
|
||||
self.quit()
|
||||
return False
|
||||
except requests.exceptions.ConnectionError:
|
||||
self.log.exception('Error checking pillar credentials.')
|
||||
self.report({'ERROR'}, 'Unable to connect to Blender Cloud, '
|
||||
'check your internet connection.')
|
||||
self.quit()
|
||||
return False
|
||||
|
||||
|
||||
self.user_id = self.db_user['_id']
|
||||
return True
|
||||
|
2
setup.py
2
setup.py
@@ -227,7 +227,7 @@ setup(
|
||||
'wheels': BuildWheels},
|
||||
name='blender_cloud',
|
||||
description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.',
|
||||
version='1.6.0',
|
||||
version='1.6.1',
|
||||
author='Sybren A. Stüvel',
|
||||
author_email='sybren@stuvel.eu',
|
||||
packages=find_packages('.'),
|
||||
|
Reference in New Issue
Block a user