Compare commits

...

3 Commits

4 changed files with 9 additions and 5 deletions

View File

@@ -1,5 +1,10 @@
# Blender Cloud changelog # Blender Cloud changelog
## Version 1.9.1 (2018-09-17)
- Fix issue with Python 3.7, which is used by current daily builds of Blender.
## Version 1.9 (2018-09-05) ## Version 1.9 (2018-09-05)
- Last version to support Blender versions before 2.80! - Last version to support Blender versions before 2.80!

View File

@@ -21,7 +21,7 @@
bl_info = { bl_info = {
'name': 'Blender Cloud', 'name': 'Blender Cloud',
"author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis", "author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis",
'version': (1, 9, 0), 'version': (1, 9, 1),
'blender': (2, 80, 0), 'blender': (2, 80, 0),
'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser', '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 ' 'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon '

View File

@@ -90,9 +90,8 @@ def handle_project_update(_=None, _2=None):
prefs.flamenco_job_file_path = pppm['file_path'] prefs.flamenco_job_file_path = pppm['file_path']
prefs.flamenco_job_output_path = pppm['output_path'] prefs.flamenco_job_output_path = pppm['output_path']
prefs.flamenco_job_output_strip_components = pppm['output_strip_components'] prefs.flamenco_job_output_strip_components = pppm['output_strip_components']
else: elif prefs.flamenco_manager.available_managers:
log.debug('Resetting Flamenco Manager to None') prefs.flamenco_manager.manager = prefs.flamenco_manager.available_managers[0]
prefs.flamenco_manager.manager = None
def store(_=None, _2=None): def store(_=None, _2=None):

View File

@@ -228,7 +228,7 @@ setup(
'wheels': BuildWheels}, 'wheels': BuildWheels},
name='blender_cloud', name='blender_cloud',
description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.', description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.',
version='1.9.0', version='1.9.1',
author='Sybren A. Stüvel', author='Sybren A. Stüvel',
author_email='sybren@stuvel.eu', author_email='sybren@stuvel.eu',
packages=find_packages('.'), packages=find_packages('.'),