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:
Diffstat (limited to 'blenderkit/version_checker.py')
-rw-r--r--blenderkit/version_checker.py80
1 files changed, 0 insertions, 80 deletions
diff --git a/blenderkit/version_checker.py b/blenderkit/version_checker.py
deleted file mode 100644
index 37aeadc4..00000000
--- a/blenderkit/version_checker.py
+++ /dev/null
@@ -1,80 +0,0 @@
-# ##### BEGIN GPL LICENSE BLOCK #####
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# ##### END GPL LICENSE BLOCK #####
-
-import bpy
-from blenderkit import paths
-
-import requests, os, json, threading
-
-
-def get_addon_version():
- # should return addon version, but since Blender 3.0 this is synced with Blender version
- ver = bpy.app.version
- return '%i.%i.%i' % (ver[0], ver[1], ver[2])
-
-
- # import blenderkit
- # ver = blenderkit.bl_info['version']
- # return '%i.%i.%i' % (ver[0], ver[1], ver[2])
-
-
-def check_version(url, api_key, module):
- headers = {
- "accept": "application/json",
- "Authorization": "Bearer %s" % api_key}
-
- print('checking online version of module %s' % str(module.bl_info['name']))
- try:
- r = requests.get(url, headers=headers)
- data = r.json()
- ver_online = {
- 'addonVersion2.8': data['addonVersion']
- }
- tempdir = paths.get_temp_dir()
-
- ver_filepath = os.path.join(tempdir, 'addon_version.json')
- with open(ver_filepath, 'w', encoding = 'utf-8') as s:
- json.dump(ver_online, s, ensure_ascii=False, indent=4)
- except:
- print("couldn't check online for version updates")
-
-
-def compare_versions(module):
- try:
- ver_local = module.bl_info['version']
- ver_local_float = ver_local[0] + .01 * ver_local[1] + .0001 * ver_local[2]
-
- tempdir = paths.get_temp_dir()
- ver_filepath = os.path.join(tempdir, 'addon_version.json')
- with open(ver_filepath, 'r',encoding='utf-8') as s:
- data = json.load(s)
-
- ver_online = data['addonVersion2.8'].split('.')
- ver_online_float = int(ver_online[0]) + .01 * int(ver_online[1]) + .0001 * int(ver_online[2])
-
- # print('versions: installed-%s, online-%s' % (str(ver_local_float), str(ver_online_float)))
- if ver_online_float > ver_local_float:
- return True
- except:
- print("couldn't compare addon versions")
- return False
-
-
-def check_version_thread(url, API_key, module):
- thread = threading.Thread(target=check_version, args=([url, API_key, module]), daemon=True)
- thread.start()