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>2019-05-23 15:23:10 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2019-05-23 15:23:13 +0300
commit68639b4d94012e7351dcef92f5b2135cc6d43f58 (patch)
treec356dbbeaf44a1258554d0474a44c247d4e56eff /blender_id
parent3469a7b5c40c88ea8267b359a4926fe1ee1f3ea4 (diff)
Updated Blender ID from upstream
- New URL for Blender ID: https://id.blender.org/
Diffstat (limited to 'blender_id')
-rw-r--r--blender_id/CHANGELOG.md1
-rw-r--r--blender_id/__init__.py2
-rw-r--r--blender_id/communication.py2
3 files changed, 3 insertions, 2 deletions
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