diff --git a/.idea/abmatt.iml b/.idea/abmatt.iml
index c773ca6..0931036 100644
--- a/.idea/abmatt.iml
+++ b/.idea/abmatt.iml
@@ -5,7 +5,7 @@
-
+
diff --git a/.idea/misc.xml b/.idea/misc.xml
index 316a359..4bc962a 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,4 +1,4 @@
-
+
\ No newline at end of file
diff --git a/abmatt/build/config.txt b/abmatt/build/config.txt
index 7162f41..07f79d1 100644
--- a/abmatt/build/config.txt
+++ b/abmatt/build/config.txt
@@ -1,5 +1,5 @@
build_name = main # build output name
build_type = onedir # the type of build, (auto|onefile|onedir)
-version = 1.2.0
+version = 1.3.0
run_integration_tests = False
run_unit_tests = False
diff --git a/abmatt/converters/dae.py b/abmatt/converters/dae.py
index a667007..d717c36 100644
--- a/abmatt/converters/dae.py
+++ b/abmatt/converters/dae.py
@@ -597,7 +597,7 @@ def __initialize_libraries(self, initial_name):
def __initialize_assets(self, root):
asset = XMLNode('asset', parent=root)
contributor = XMLNode('contributor', parent=asset)
- authoring_tool = XMLNode('authoring_tool', 'ABMATT COLLADA exporter v1.2.0', parent=contributor)
+ authoring_tool = XMLNode('authoring_tool', 'ABMATT COLLADA exporter v1.3.0', parent=contributor)
time_stamp = datetime.now()
created = XMLNode('created', str(time_stamp), parent=asset)
modified = XMLNode('modified', str(time_stamp), parent=asset)
diff --git a/abmatt/converters/obj.py b/abmatt/converters/obj.py
index 931282c..bd26721 100644
--- a/abmatt/converters/obj.py
+++ b/abmatt/converters/obj.py
@@ -143,7 +143,7 @@ def save(self):
self.save_obj()
def save_mtllib(self, folder):
- s = '# Wavefront MTL exported with ABMATT v1.2.0'
+ s = '# Wavefront MTL exported with ABMATT v1.3.0'
materials = self.materials
for x in materials:
s += '\n' + materials[x].get_save_str()
@@ -151,7 +151,7 @@ def save_mtllib(self, folder):
f.write(s)
def save_obj(self):
- s = '# Wavefront OBJ exported with ABMATT v1.2.0\n\nmtllib ' + self.mtllib + '\n\n'
+ s = '# Wavefront OBJ exported with ABMATT v1.3.0\n\nmtllib ' + self.mtllib + '\n\n'
vertex_index = 1
normal_index = 1
normal_offset = -1
diff --git a/abmatt/dist/install-ubu.txt b/abmatt/dist/install-ubu.txt
index 25f5cfa..667b4eb 100644
--- a/abmatt/dist/install-ubu.txt
+++ b/abmatt/dist/install-ubu.txt
@@ -1,6 +1,6 @@
====================================================================================
ANOOB'S BRRES MATERIAL TOOL
-Version: 1.2.0
+Version: 1.3.0
Author: Robert Nelson
OS: linux
Github: https://github.com/Robert-N7/abmatt
diff --git a/abmatt/dist/install-win.txt b/abmatt/dist/install-win.txt
index a7bb9f7..7ac4e1b 100644
--- a/abmatt/dist/install-win.txt
+++ b/abmatt/dist/install-win.txt
@@ -1,6 +1,6 @@
===================================================================================================
ANOOB'S BRRES MATERIAL TOOL
-Version 1.2.0
+Version 1.3.0
Robert Nelson
OS: Windows 10 64-bit
Github: https://github.com/Robert-N7/abmatt
diff --git a/abmatt/dist/make_installer.nsi b/abmatt/dist/make_installer.nsi
index 446418d..1ff7052 100644
--- a/abmatt/dist/make_installer.nsi
+++ b/abmatt/dist/make_installer.nsi
@@ -1,4 +1,4 @@
-!define VERSION "1.2.0"
+!define VERSION "1.3.0"
!define PROGRAM_NAME "ANoob's Brres Material Tool ${VERSION}"
InstallDir "$Documents\abmatt"
Name "${PROGRAM_NAME}"
diff --git a/abmatt/load_config.py b/abmatt/load_config.py
index 724deb3..c3a8204 100644
--- a/abmatt/load_config.py
+++ b/abmatt/load_config.py
@@ -117,7 +117,7 @@ def load_config(app_dir=None, loudness=None, autofix_level=None):
return conf
-VERSION = '1.2.0'
+VERSION = '1.3.0'
USAGE = "USAGE: abmatt [command_line][--interactive -f -b -d --overwrite]"
diff --git a/setup.py b/setup.py
index 19250bc..7c4f652 100755
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@
# calling the setup function
setup(name='abmatt',
- version='1.2.0',
+ version='1.3.0',
entry_points={
'console_scripts': [
'abmatt = abmatt.__main__:main'