[Bf-extensions-cvs] [68639b4d] master: Updated Blender ID from upstream

Sybren A. Stüvel noreply at git.blender.org
Thu May 23 14:23:19 CEST 2019


Commit: 68639b4d94012e7351dcef92f5b2135cc6d43f58
Author: Sybren A. Stüvel
Date:   Thu May 23 14:23:10 2019 +0200
Branches: master
https://developer.blender.org/rBA68639b4d94012e7351dcef92f5b2135cc6d43f58

Updated Blender ID from upstream

- New URL for Blender ID: https://id.blender.org/

===================================================================

M	blender_id/CHANGELOG.md
M	blender_id/__init__.py
M	blender_id/communication.py

===================================================================

diff --git a/blender_id/CHANGELOG.md b/blender_id/CHANGELOG.md
index cb0c1868..40b44e0b 100644
--- a/blender_id/CHANGELOG.md
+++ b/blender_id/CHANGELOG.md
@@ -3,6 +3,7 @@
 # Version 2.0 (in development)
 
 - Require Blender 2.80+.
+- Use the new URL https://id.blender.org/ for communication with Blender ID.
 - API change: `blender_id.get_subclient_user_id()` now returns `''` instead of `None` when the user
   is not logged in.
 - Log which Blender ID instance is communicated with.
diff --git a/blender_id/__init__.py b/blender_id/__init__.py
index 42d7df02..b2e54212 100644
--- a/blender_id/__init__.py
+++ b/blender_id/__init__.py
@@ -23,7 +23,7 @@
 bl_info = {
     'name': 'Blender ID authentication',
     'author': 'Sybren A. Stüvel, Francesco Siddi, and Inês Almeida',
-    'version': (1, 9, 99),
+    'version': (1, 9, 999),
     'blender': (2, 80, 0),
     'location': 'Add-on preferences',
     'description':
diff --git a/blender_id/communication.py b/blender_id/communication.py
index 72bf90fe..0cef6faa 100644
--- a/blender_id/communication.py
+++ b/blender_id/communication.py
@@ -25,7 +25,7 @@ import typing
 log = logging.getLogger(__name__)
 
 # Can be overridden by setting the environment variable BLENDER_ID_ENDPOINT.
-BLENDER_ID_ENDPOINT = 'https://www.blender.org/id/'
+BLENDER_ID_ENDPOINT = 'https://id.blender.org/'
 
 # Will become a requests.Session at the first request to Blender ID.
 requests_session = None



More information about the Bf-extensions-cvs mailing list