Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-07-03 11:38:51 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-07-03 11:38:51 +0300
commit6cc3224d7f9a4f756195f63cbd2ba384a335ec42 (patch)
tree52a7311e1dbf1a00ff37c929f101645a19836193 /blender_id
parent42eaf0c57fa7ca7c9b4729bb0ba288009a8c0bfe (diff)
Upgraded Blender ID add-on to 1.5
This version explicitly supports Blender 2.80.
Diffstat (limited to 'blender_id')
-rw-r--r--blender_id/CHANGELOG.md5
-rw-r--r--blender_id/README.md3
-rw-r--r--blender_id/__init__.py8
3 files changed, 13 insertions, 3 deletions
diff --git a/blender_id/CHANGELOG.md b/blender_id/CHANGELOG.md
index cf62a6e1..f73f0824 100644
--- a/blender_id/CHANGELOG.md
+++ b/blender_id/CHANGELOG.md
@@ -1,5 +1,10 @@
# Blender ID Add-on Changelog
+# Version 1.5 (released 2018-07-03)
+
+- Support Blender 2.80.
+
+
## Version 1.4.1 (released 2017-12-15)
- Improved error reporting when validating a token fails due to
diff --git a/blender_id/README.md b/blender_id/README.md
index 936e6e3e..15c2fd83 100644
--- a/blender_id/README.md
+++ b/blender_id/README.md
@@ -13,6 +13,9 @@ Blender ID add-on version 1.2.0 removed some workarounds necessary for
Blender 2.77a. As such, versions 1.1.x are the last versions compatible with
Blender 2.77a, and 1.2.0 and newer require at least Blender 2.78.
+Blender ID add-on version 1.5 is the first to support Blender 2.80+.
+
+
Building & Bundling
-------------------
diff --git a/blender_id/__init__.py b/blender_id/__init__.py
index 73371945..0289b424 100644
--- a/blender_id/__init__.py
+++ b/blender_id/__init__.py
@@ -14,15 +14,17 @@
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
+# Copyright (C) 2014-2018 Blender Foundation
+#
# ##### END GPL LICENSE BLOCK #####
# <pep8 compliant>
bl_info = {
'name': 'Blender ID authentication',
- 'author': 'Francesco Siddi, Inês Almeida and Sybren A. Stüvel',
- 'version': (1, 4, 1),
- 'blender': (2, 77, 0),
+ 'author': 'Sybren A. Stüvel, Francesco Siddi, and Inês Almeida',
+ 'version': (1, 5, 0),
+ 'blender': (2, 80, 0),
'location': 'Add-on preferences',
'description':
'Stores your Blender ID credentials for usage with other add-ons',