work
save startup to fix blender opening on 2nd monitor
This commit is contained in:
@@ -84,7 +84,7 @@ def make_annotations(cls):
|
||||
if bl_props:
|
||||
if '__annotations__' not in cls.__dict__:
|
||||
setattr(cls, '__annotations__', {})
|
||||
annotations = cls.__dict__['__annotations__']
|
||||
annotations = cls.__dict__.get('__annotations__', {})
|
||||
for k, v in bl_props.items():
|
||||
annotations[k] = v
|
||||
delattr(cls, k)
|
||||
@@ -1376,10 +1376,12 @@ def register(bl_info):
|
||||
# other considerations and suggestions from a security standpoint
|
||||
# "tokenstring" Need read api and read repo permission
|
||||
# updater.private_token = "glpat-K6GjFFka_J6o3GTbe3JK"
|
||||
updater.private_token = "glpat-js__ikigVSQ_tKWgjVn1"
|
||||
# updater.private_token = "glpat-js__ikigVSQ_tKWgjVn1"
|
||||
updater.private_token = "glpat-5rHfAdBG2Br3ww6H8U4vI286MQp1OjFpcXEK.01.100el42cj"
|
||||
|
||||
# choose your own username, must match website (not needed for GitLab)
|
||||
updater.user = ""
|
||||
|
||||
|
||||
# choose your own repository, must match git name for GitHUb and Bitbucket,
|
||||
# for GitLab use project ID (numbers only)
|
||||
updater.repo = "22294607"
|
||||
|
||||
Reference in New Issue
Block a user