Skip to content

Commit

Permalink
Move ucupaint out of beta, this is the release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ucupumar committed Oct 26, 2023
1 parent 116348c commit 8f085ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": (1, 1, 0),
"blender": (2, 80, 0),
"location": "Node Editor > Properties > Ucupaint",
"warning": "Beta Version",
"warning": "",
"description": "Special node to manage painting layers for Cycles and Eevee materials",
"wiki_url": "https://ucupumar.github.io/ucupaint-wiki/",
"doc_url": "https://ucupumar.github.io/ucupaint-wiki/",
Expand Down
19 changes: 1 addition & 18 deletions ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -2975,23 +2975,6 @@ def main_draw(self, context):
#col.operator('node.y_new_udim_atlas_segment_test', icon_value=lib.get_icon('image'))
#col.operator('node.y_uv_transform_test', icon_value=lib.get_icon('uv'))

# Hide support this addon panel for now
#return

#icon = 'TRIA_DOWN' if ypui.show_support else 'TRIA_RIGHT'
#row = layout.row(align=True)
#row.prop(ypui, 'show_support', emboss=False, text='', icon=icon)
#row.label(text='Support This Addon!')

#if ypui.show_support:
# box = layout.box()
# col = box.column()
# col.alert = True
# if is_greater_than_280():
# col.operator('wm.url_open', text='Become A Patron!', icon='ARMATURE_DATA').url = 'https://www.patreon.com/ucupumar'
# else: col.operator('wm.url_open', text='Become A Patron!', icon='POSE_DATA').url = 'https://www.patreon.com/ucupumar'
# col.alert = False

class NODE_PT_YPaint(bpy.types.Panel):
bl_space_type = 'NODE_EDITOR'
bl_label = get_addon_title() + " " + get_current_version_str() + get_alpha_suffix()
Expand Down Expand Up @@ -3442,7 +3425,7 @@ def draw_item(self, context, layout, data, item, icon, active_data, active_propn
def draw_ypaint_about(self, context):
col = self.layout.column(align=True)
col.label(text=get_addon_title() + ' is created by:')
col.operator('wm.url_open', text='ucupumar', icon='ARMATURE_DATA').url = 'https://www.patreon.com/ucupumar'
col.operator('wm.url_open', text='ucupumar', icon='ARMATURE_DATA').url = 'https://github.com/ucupumar'
col.operator('wm.url_open', text='arsa', icon='ARMATURE_DATA').url = 'https://sites.google.com/view/arsanagara'
col.operator('wm.url_open', text='swifterik', icon='ARMATURE_DATA').url = 'https://jblaha.art/'
col.operator('wm.url_open', text='rifai', icon='ARMATURE_DATA').url = 'https://github.com/rifai'
Expand Down

0 comments on commit 8f085ba

Please sign in to comment.