[Bf-extensions-cvs] [d03905c1] master: GPencil Tools: set bundle url to https

Pullusb noreply at git.blender.org
Mon Feb 14 20:14:35 CET 2022


Commit: d03905c1bc0ddd447966c8e30a2a2567ecdd409a
Author: Pullusb
Date:   Mon Feb 14 20:14:29 2022 +0100
Branches: master
https://developer.blender.org/rBAd03905c1bc0ddd447966c8e30a2a2567ecdd409a

GPencil Tools: set bundle url to https

Brush pack download adress was set on http instead of https

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

M	greasepencil_tools/__init__.py
M	greasepencil_tools/import_brush_pack.py

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

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



More information about the Bf-extensions-cvs mailing list