Skip to content

Commit

Permalink
Version 6.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Jan 26, 2019
1 parent dfaf75f commit ff02ca1
Show file tree
Hide file tree
Showing 47 changed files with 110 additions and 99 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.0...develop)


## [Version 6.0](https://github.com/nutti/Magic-UV/compare/v5.2...v6.0) - 20XX.XX.XX
## [Version 6.0](https://github.com/nutti/Magic-UV/compare/v5.2...v6.0) - 2019.1.26

Support Blender 2.8. (Make compatibility with Blender 2.7x)

Expand Down
2 changes: 1 addition & 1 deletion dev_tools/update_timestamp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

# make converted file
File.open(src_path, 'r') {|src_file|
File.open(dest_path, 'w') {|dest_file|
File.open(dest_path, 'wb') {|dest_file|
src_file.each_line do |line|
if /^__date__/ =~ line
today = Date.today
Expand Down
4 changes: 2 additions & 2 deletions src/magic_uv/__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.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"


bl_info = {
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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

import bpy
from mathutils import Vector
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 <nutti.metro@gmail.com>, Jace Priester"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>, Mifth, MaxRobinot"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

import bpy
from bpy.props import BoolProperty, EnumProperty
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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"


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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

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 <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "5.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

import bpy

Expand Down
4 changes: 2 additions & 2 deletions src/magic_uv/ui/uvedit_editor_enhancement.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.2"
__date__ = "17 Nov 2018"
__version__ = "6.0"
__date__ = "26 Jan 2019"

import bpy

Expand Down
Loading

0 comments on commit ff02ca1

Please sign in to comment.