Compare commits
2 Commits
version-1.
...
version-1.
Author | SHA1 | Date | |
---|---|---|---|
bc864737ae | |||
f454a99c4b |
@@ -1,6 +1,11 @@
|
|||||||
# Blender Cloud changelog
|
# Blender Cloud changelog
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.11.1 (2019-01-04)
|
||||||
|
|
||||||
|
- Bundled missing Texture Browser icons.
|
||||||
|
|
||||||
|
|
||||||
## Version 1.11.0 (2019-01-04)
|
## Version 1.11.0 (2019-01-04)
|
||||||
|
|
||||||
- Texture Browser now works on Blender 2.8.
|
- Texture Browser now works on Blender 2.8.
|
||||||
|
@@ -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, 11, 0),
|
'version': (1, 11, 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 '
|
||||||
|
10
setup.py
10
setup.py
@@ -236,12 +236,16 @@ 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.11.0',
|
version='1.11.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('.'),
|
||||||
data_files=[('blender_cloud', ['README.md', 'README-flamenco.md', 'CHANGELOG.md']),
|
data_files=[
|
||||||
('blender_cloud/icons', glob.glob('blender_cloud/icons/*'))],
|
('blender_cloud', ['README.md', 'README-flamenco.md', 'CHANGELOG.md']),
|
||||||
|
('blender_cloud/icons', glob.glob('blender_cloud/icons/*')),
|
||||||
|
('blender_cloud/texture_browser/icons',
|
||||||
|
glob.glob('blender_cloud/texture_browser/icons/*'))
|
||||||
|
],
|
||||||
scripts=[],
|
scripts=[],
|
||||||
url='https://developer.blender.org/diffusion/BCA/',
|
url='https://developer.blender.org/diffusion/BCA/',
|
||||||
license='GNU General Public License v2 or later (GPLv2+)',
|
license='GNU General Public License v2 or later (GPLv2+)',
|
||||||
|
Reference in New Issue
Block a user