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:
authorPullusb <bernou.samuel@gmail.com>2022-02-14 22:14:29 +0300
committerPullusb <bernou.samuel@gmail.com>2022-02-14 22:14:29 +0300
commitd03905c1bc0ddd447966c8e30a2a2567ecdd409a (patch)
tree7cade90c111f6de152b69b94560fc4699c4b22f3
parent201b8271b907bdc0b2ebcee740dc1fa98e832fd4 (diff)
GPencil Tools: set bundle url to https
Brush pack download adress was set on http instead of https
-rw-r--r--greasepencil_tools/__init__.py2
-rw-r--r--greasepencil_tools/import_brush_pack.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/greasepencil_tools/__init__.py b/greasepencil_tools/__init__.py
index a4ac90c6..18b808c4 100644
--- a/greasepencil_tools/__init__.py
+++ b/greasepencil_tools/__init__.py
@@ -4,7 +4,7 @@ bl_info = {
"name": "Grease Pencil Tools",
"description": "Extra tools for Grease Pencil",
"author": "Samuel Bernou, Antonio Vazquez, Daniel Martinez Lara, Matias Mendiola",
-"version": (1, 5, 5),
+"version": (1, 5, 6),
"blender": (2, 91, 0),
"location": "Sidebar > Grease Pencil > Grease Pencil Tools",
"warning": "",
diff --git a/greasepencil_tools/import_brush_pack.py b/greasepencil_tools/import_brush_pack.py
index 8ee54003..296ac957 100644
--- a/greasepencil_tools/import_brush_pack.py
+++ b/greasepencil_tools/import_brush_pack.py
@@ -84,7 +84,7 @@ class GP_OT_install_brush_pack(bpy.types.Operator):
self.temp = Path(temp)
- dl_url = 'http://download.blender.org/demo/bundles/bundles-3.0/grease-pencil-brush-pack.zip'
+ dl_url = 'https://download.blender.org/demo/bundles/bundles-3.0/grease-pencil-brush-pack.zip'
## need to create an SSl context or linux fail and raise unverified ssl
ssl._create_default_https_context = ssl._create_unverified_context