Skip to content

Commit

Permalink
Version 5.1 released
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Feb 24, 2018
1 parent 2935c28 commit a570914
Show file tree
Hide file tree
Showing 35 changed files with 71 additions and 69 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ If you want to try newest but unstable version, you can download it from [unstab
|Version|Download URL|
|---|---|
|*unstable*|[Download](https://github.com/nutti/Magic-UV/archive/develop.zip)|
|5.1|[Download](https://github.com/nutti/Magic-UV/releases/tag/v5.1)|
|5.0|[Download](https://github.com/nutti/Magic-UV/releases/tag/v5.0)|
|4.5|[Download](https://github.com/nutti/Magic-UV/releases/tag/v4.5)|
|4.4|[Download](https://github.com/nutti/Magic-UV/releases/tag/v4.4)|
Expand Down Expand Up @@ -82,6 +83,7 @@ See the link below for further details.
## Change Log
|Version|Release Date|Change Log|
|---|---|---|
|5.1|2018.2.24|[1] Fixed bugs|
|5.0|2018.2.16|[1] **Add feature**<br> - Align UV Cursor<br> - UV Cursor Location<br> - Align UV<br> - Smooth UV<br> - UV Inspection<br> - Select UV<br> - Texture Wrap<br> - UV Sculpt<br><br>[2] Improve feature<br> (1) Copy/Paste UV<br> - Add menu to UV/Image Editor<br>(2) World Scale UV<br> - Add: Information about Texel Density<br>(3) UV Bounding Box<br> - Add option: Bound<br>(4) Texture Projection<br> - Add option: Assign UVMap<br>(5) UVW<br> - Add option: Assign UVMap<br><br>[3] Improve UI<br><br>[4] Fixed bugs<br><br>[5] Optimization/Refactoring|
|4.5|2017.11.19|[1] **Add feature**<br> - UVW<br><br>[2] Improve feature<br> (1) Preserve UV Aspect<br> - Add option: Aspect Origin<br><br>[3] Fixed bugs<br><br>[4] Merge change set of Blender's official repository|
|4.4|2017.8.2|[1] Improve feature<br>(1) Copy/Paste UV<br> - Add option: Copy Seams<br>(2) Transfer UV<br> - Add option: Copy Seams<br>(3) Flip/Rotate UV<br> - Add option: Seams<br><br>[2] Fixed bugs<br><br>[3] Merge change set of Blender's official repository|
Expand Down
6 changes: 3 additions & 3 deletions uv_magic_uv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"


bl_info = {
"name": "Magic UV",
"author": "Nutti, Mifth, Jace Priester, kgeogeo, mem, imdjs"
"Keith (Wahooney) Boshoff, McBuff, MaxRobinot, Alexander Milovsky",
"version": (5, 0, 0),
"version": (5, 1, 0),
"blender": (2, 79, 0),
"location": "See Add-ons Preferences",
"description": "UV Toolset. See Add-ons Preferences for details",
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from collections import defaultdict
from pprint import pprint
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

if "bpy" in locals():
import importlib
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/align_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "imdjs, Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import math
from math import atan2, tan, sin, cos
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/align_uv_cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
from mathutils import Vector
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/copy_paste_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "imdjs, Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import math
from math import atan2, sin, cos
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/copy_paste_uv_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/copy_paste_uv_uvedit.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>, Jace Priester"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import math
from math import atan2, sin, cos
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/flip_rotate_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/mirror_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Keith (Wahooney) Boshoff, Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
from bpy.props import (
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/move_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "kgeogeo, mem, Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/pack_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from math import fabs

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/preserve_uv_aspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/smooth_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "imdjs, Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/texture_lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import math
from math import atan2, cos, sqrt, sin, fabs
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/texture_projection.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from collections import namedtuple

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/texture_wrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/transfer_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>, Mifth, MaxRobinot"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from collections import OrderedDict

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/unwrap_constraint.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/uv_bounding_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from enum import IntEnum
import math
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/uv_inspection.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/uv_sculpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from math import pi, cos, tan, sin

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/uvw.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Alexander Milovsky, Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from math import sin, cos, pi

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/op/world_scale_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "McBuff, Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from math import sqrt

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

from bpy.props import (
FloatProperty,
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/properites.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy
from bpy.props import (
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

if "bpy" in locals():
import importlib
Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/ui/uvedit_copy_paste_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/ui/uvedit_editor_enhance.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/ui/uvedit_uv_manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/ui/view3d_copy_paste_uv_editmode.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/ui/view3d_copy_paste_uv_objectmode.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/ui/view3d_uv_manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy

Expand Down
4 changes: 2 additions & 2 deletions uv_magic_uv/ui/view3d_uv_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.0"
__date__ = "16 Feb 2018"
__version__ = "5.1"
__date__ = "24 Feb 2018"

import bpy

Expand Down

0 comments on commit a570914

Please sign in to comment.