Compare commits

..

2 Commits

Author SHA1 Message Date
ffa69f3f7c Bumped version to 1.16 2020-03-03 10:37:52 +01:00
e62e47d2ab Fixed Windows compatibility with Shaman URL handling 2020-03-03 10:37:44 +01:00
6 changed files with 6 additions and 11 deletions

View File

@@ -1,11 +1,5 @@
# Blender Cloud changelog
## Version 1.17 (2021-02-04)
- Upgrade BAT to version 1.3.1, which brings compatibility with Geometry Nodes and
fixes some issues on Windows.
## Version 1.16 (2020-03-03)
- Fixed Windows compatibility issue with the handling of Shaman URLs.

View File

@@ -21,7 +21,7 @@
bl_info = {
'name': 'Blender Cloud',
"author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis",
'version': (1, 17),
'version': (1, 16),
'blender': (2, 80, 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 '

View File

@@ -1007,6 +1007,7 @@ def deactivate():
_rna_classes = [cls for cls in locals().values()
if isinstance(cls, type) and cls.__name__.startswith('ATTRACT')]
log.info('RNA classes:\n%s', '\n'.join([repr(cls) for cls in _rna_classes]))
def register():

View File

@@ -70,8 +70,8 @@ def handle_project_update(_=None, _2=None):
with mark_as_loading():
prefs = preferences()
project_id = prefs.project.project
log.debug('Updating internal state to reflect extensions enabled on current project %s.',
project_id)
log.info('Updating internal state to reflect extensions enabled on current project %s.',
project_id)
project_extensions.cache_clear()

View File

@@ -3,7 +3,7 @@
lockfile==0.12.2
pillarsdk==1.8.0
wheel==0.29.0
blender-asset-tracer==1.3.1
blender-asset-tracer==1.2.1
# Secondary requirements:
asn1crypto==0.24.0

View File

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