Skip to content

Commit

Permalink
Version 6.4 released
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Oct 23, 2020
1 parent 6c7360a commit f935926
Show file tree
Hide file tree
Showing 47 changed files with 94 additions and 94 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## [Unreleased](https://github.com/nutti/Magic-UV/compare/v6.4...master)


## [Version 6.4](https://github.com/nutti/Magic-UV/compare/v6.3...v6.4) - 2020.X.XX
## [Version 6.4](https://github.com/nutti/Magic-UV/compare/v6.3...v6.4) - 2020.10.23


### Updated Features
Expand Down
6 changes: 3 additions & 3 deletions src/magic_uv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"


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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

if "bpy" in locals():
import importlib
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import math
from math import atan2, tan, sin, cos
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

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

__author__ = "Dusan Stevanovic, Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"


import math
Expand Down
4 changes: 2 additions & 2 deletions src/magic_uv/op/copy_paste_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <[email protected]>, Jace Priester"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bmesh
import bpy.utils
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bmesh
import bpy
Expand Down
4 changes: 2 additions & 2 deletions src/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__ = "imdjs, Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import math
from math import atan2, sin, cos
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy
import bmesh
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy
from bpy.props import (
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

from math import fabs

Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy
from bpy.props import StringProperty, EnumProperty, BoolProperty
Expand Down
4 changes: 2 additions & 2 deletions src/magic_uv/op/select_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy
from bpy.props import BoolProperty
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy
from bpy.props import BoolProperty, FloatProperty
Expand Down
4 changes: 2 additions & 2 deletions src/magic_uv/op/texture_lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

from collections import namedtuple

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

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

__author__ = "Nutti <[email protected]>, Mifth, MaxRobinot"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

from collections import OrderedDict

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy
from bpy.props import (
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import random
from math import fabs
Expand Down
4 changes: 2 additions & 2 deletions src/magic_uv/op/uv_sculpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

from math import pi, cos, tan, sin

Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

from math import sin, cos, pi

Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

from math import sqrt

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"


from .utils.property_class_registry import PropertyClassRegistry
Expand Down
4 changes: 2 additions & 2 deletions src/magic_uv/ui/IMAGE_MT_uvs.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy.utils

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

__author__ = "Nutti <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

if "bpy" in locals():
import importlib
Expand Down
4 changes: 2 additions & 2 deletions src/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 <[email protected]>"
__status__ = "production"
__version__ = "6.3"
__date__ = "10 Aug 2020"
__version__ = "6.4"
__date__ = "23 Oct 2020"

import bpy

Expand Down
Loading

0 comments on commit f935926

Please sign in to comment.