Skip to content

Commit

Permalink
Compatibility for branches 2.79
Browse files Browse the repository at this point in the history
Compatible with 2.79 Release and 2.79 Stable Nightly builds.
ProgressReport change packedge
  • Loading branch information
johnzero7 committed Jan 8, 2019
1 parent 7ce31f9 commit af54b56
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ XPS Tools
Blender Toolshelf, an addon for Blender to

Import/Export XPS Models, Poses.
(Requieres Blender 2.74 up)
(Requieres Blender 2.79)

Main Features:
- Imports and Exports XPS/XNALara models with armature.
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
bl_info = {
"name": "XNALara/XPS Import/Export",
"author": "johnzero7",
"version": (1, 8, 6),
"version": (1, 8, 7),
"blender": (2, 74, 0),
"location": "File > Import-Export > XNALara/XPS",
"description": "Import-Export XNALara/XPS",
Expand Down
5 changes: 4 additions & 1 deletion export_obj.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
import operator
import bpy_extras.io_utils

from progress_report import ProgressReport, ProgressReportSubstep
try:
from progress_report import ProgressReport, ProgressReportSubstep
except ImportError:
from bpy_extras.wm_utils.progress_report import ProgressReport, ProgressReportSubstep


def name_compat(name):
Expand Down
5 changes: 4 additions & 1 deletion import_obj.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@
from bpy_extras.io_utils import unpack_list
from bpy_extras.image_utils import load_image

from progress_report import ProgressReport, ProgressReportSubstep
try:
from progress_report import ProgressReport, ProgressReportSubstep
except ImportError:
from bpy_extras.wm_utils.progress_report import ProgressReport, ProgressReportSubstep


def line_value(line_split):
Expand Down

0 comments on commit af54b56

Please sign in to comment.