Skip to content

Commit

Permalink
v3.0.1 Download speedcheck fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Seris0 committed Nov 3, 2024
1 parent c9178f3 commit 76e1ca0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
Binary file removed Sucrose.png
Binary file not shown.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
bl_info = {
"name": "XXMI Scripts & Quick Import",
"author": "Gustav0, LeoTorreZ",
"version": (3, 0, 0),
"version": (3, 0, 1),
"blender": (3, 6, 2),
"description": "Script Compilation",
"category": "Object",
Expand Down
9 changes: 0 additions & 9 deletions addon_updater_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,6 @@ def execute(self, context):
hours=settings.updater_interval_hours,
minutes=settings.updater_interval_minutes)
Updater.check_for_update_now(ui_refresh)
python_executable = bpy.app.binary_path_python if bpy.app.version < (3, 0, 0) else sys.executable
try:
import pip
call([python_executable, '-m', 'pip', 'install', 'pip', '--user', '--upgrade'], shell=True)
call([python_executable, '-m', 'pip', 'install', 'Pillow', '--user', '--upgrade'], shell=True)
except ImportError:
call([python_executable, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'operators',
'get-pip.py'), '--user'], shell=True)
call([python_executable, '-m', 'pip', 'install', 'Pillow', '--user', '--upgrade'], shell=True)
return {'FINISHED'}


Expand Down

0 comments on commit 76e1ca0

Please sign in to comment.