Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
c30ra committed Dec 9, 2021
1 parent 87d6ab8 commit 39b6963
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: "Linux: Blender 2.93"
name: "Linux: Blender 3.1"

on:
push:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
UV ALIGN DISTRIBUTE 5.0
UV ALIGN DISTRIBUTE 5.1
changes since v5.0
- ported to blender 3.1

changes since v4.2
- removed local dependecie, now are installed on script activation

Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Github All Releases](https://img.shields.io/github/downloads/c30ra/uv-align-distribute/total.svg)]()

![Linux: Blender 2.93](https://github.com/c30ra/uv-align-distribute/workflows/Linux:%20Blender%202.93/badge.svg)
![Linux: Blender 3.1](https://github.com/c30ra/uv-align-distribute/workflows/Linux:%20Blender%203.1/badge.svg)

This add-on help align and distribute uv island in the uv space

Expand Down
18 changes: 5 additions & 13 deletions uv_align_distribute/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
bl_info = {
"name": "UV Align\\Distribute",
"author": "Rebellion (Luca Carella)",
"version": (5, 0),
"version": (5, 1),
"blender": (2, 93, 0),
"location": "UV\\Image editor > Tool Panel, UV\\Image editor UVs > menu",
"description": "Set of tools to help UV alignment\\distribution",
Expand Down Expand Up @@ -94,28 +94,20 @@ def register():
pcoll.load("align_center_ver", os.path.join(my_icons_dir, "al_center_ver.png"), "IMAGE")

pcoll.load(
"align_rotation",
os.path.join(my_icons_dir, "ink_transform_rotate.png"),
"IMAGE",
"align_rotation", os.path.join(my_icons_dir, "ink_transform_rotate.png"), "IMAGE",
)

pcoll.load(
"distribute_bottom",
os.path.join(my_icons_dir, "distribute_bottom.png"),
"IMAGE",
"distribute_bottom", os.path.join(my_icons_dir, "distribute_bottom.png"), "IMAGE",
)
pcoll.load(
"distribute_hcentre",
os.path.join(my_icons_dir, "distribute_hcentre.png"),
"IMAGE",
"distribute_hcentre", os.path.join(my_icons_dir, "distribute_hcentre.png"), "IMAGE",
)
pcoll.load("distribute_left", os.path.join(my_icons_dir, "distribute_left.png"), "IMAGE")
pcoll.load("distribute_right", os.path.join(my_icons_dir, "distribute_right.png"), "IMAGE")
pcoll.load("distribute_top", os.path.join(my_icons_dir, "distribute_top.png"), "IMAGE")
pcoll.load(
"distribute_vcentre",
os.path.join(my_icons_dir, "distribute_vcentre.png"),
"IMAGE",
"distribute_vcentre", os.path.join(my_icons_dir, "distribute_vcentre.png"), "IMAGE",
)
pcoll.load("distribute_hdist", os.path.join(my_icons_dir, "distribute_hdist.png"), "IMAGE")
pcoll.load("distribute_vdist", os.path.join(my_icons_dir, "distribute_vdist.png"), "IMAGE")
Expand Down

0 comments on commit 39b6963

Please sign in to comment.