-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpreferences.py
123 lines (100 loc) · 4.54 KB
/
preferences.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# ##### 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 #####
if "bpy" in locals():
import importlib
importlib.reload(addon_updater)
importlib.reload(addon_manager)
else:
from . import addon_updater
from . import addon_manager
"""Addon preferences"""
import bpy
import os
from bpy.types import AddonPreferences
from bpy.props import ( StringProperty,
BoolProperty,
FloatProperty,
EnumProperty)
class AddonPreferences(AddonPreferences):
bl_idname = __package__
############################################
# ADDON UPDATER
############################################
repository_path: StringProperty(
name="Project",
description="Github Project url example: https://github.com/JoseConseco/GoB",
subtype='DIR_PATH',
default="https://github.com/JoseConseco/GoB")
zip_filename: StringProperty(
name="zip_filename",
description="zip_filename",
subtype='FILE_PATH',
default="blender_addon_updater.zip")
auto_update_check: BoolProperty(
name="Check for updates automatically",
description="auto_update_check",
default=False)
experimental_versions: BoolProperty(
name="Experimental Versions",
description="Check for experimental versions",
default=False)
#################
def draw(self, context):
# GoB Troubleshooting
layout = self.layout
layout.use_property_split = True
#advanced & dev options
#
############################################
# ADDON UPDATER
############################################
box = layout.box()
box.label(text='Addon Updater', icon='PREFERENCES')
col = box.column(align=False)
row = col.row(align=False)
row.operator("addon_manager.find_trackers", text="Search Addon Trackers", icon='FILE_REFRESH', depress=False)
row.operator("addon_updater.check_updates", text="Check for Updates", icon='FILE_REFRESH', depress=False).button_input = 0
if addon_updater.update_available == False:
row.operator("addon_updater.check_updates", text="Addon is up to date", icon='IMPORT', emboss=True, depress=True).button_input = -1
elif addon_updater.update_available == None:
row.operator("addon_updater.check_updates", text="nothing to show", icon='ERROR', emboss=False, depress=True).button_input = -1
elif addon_updater.update_available == 'TIME':
row.operator("addon_updater.check_updates", text="Limit exceeded! Try again later", icon='COLORSET_01_VEC', emboss=False, depress=True).button_input = -1
else:
row.operator("addon_updater.check_updates", text="Download: " + addon_updater.update_available, icon='COLORSET_03_VEC').button_input = 1
col = box.column(align=False)
col.prop(self, 'repository_path')
#col.prop(self, 'zip_filename')
col.prop(self, 'experimental_versions')
#col.prop(self, 'auto_update_check')
col.separator(factor=2)
col = layout.column(align=True)
col.label(text='Tracker urls')
for addon in addon_manager.AddonManager_OT_SearchTrackers.tracker_urls:
box = col.box()
row = box.row()
row.label(text=str(addon[0]))
row.label(text=str(addon[1]))
col.separator(factor=2)
col = layout.column(align=True)
col.label(text='Doc urls')
for addon in addon_manager.AddonManager_OT_SearchTrackers.doc_urls:
box = col.box()
row = box.row()
row.label(text=str(addon[0]))
row.label(text=str(addon[1]))