Skip to content

Commit c72944d

Browse files
committed
update version
1 parent b7fb131 commit c72944d

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

abmatt/build/config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
build_name = main # build output name
22
build_type = onedir # the type of build, (auto|onefile|onedir)
3-
version = 1.1.0
3+
version = 1.2.0
44
run_integration_tests = False
55
run_unit_tests = False

abmatt/converters/dae.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ def __initialize_libraries(self, initial_name):
597597
def __initialize_assets(self, root):
598598
asset = XMLNode('asset', parent=root)
599599
contributor = XMLNode('contributor', parent=asset)
600-
authoring_tool = XMLNode('authoring_tool', 'ABMATT COLLADA exporter v1.1.0', parent=contributor)
600+
authoring_tool = XMLNode('authoring_tool', 'ABMATT COLLADA exporter v1.2.0', parent=contributor)
601601
time_stamp = datetime.now()
602602
created = XMLNode('created', str(time_stamp), parent=asset)
603603
modified = XMLNode('modified', str(time_stamp), parent=asset)

abmatt/converters/obj.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ def save(self):
138138
self.save_obj()
139139

140140
def save_mtllib(self, folder):
141-
s = '# Wavefront MTL exported with ABMATT v1.1.0'
141+
s = '# Wavefront MTL exported with ABMATT v1.2.0'
142142
materials = self.materials
143143
for x in materials:
144144
s += '\n' + materials[x].get_save_str()
145145
with open(os.path.join(folder, self.mtllib), 'w') as f:
146146
f.write(s)
147147

148148
def save_obj(self):
149-
s = '# Wavefront OBJ exported with ABMATT v1.1.0\n\nmtllib ' + self.mtllib + '\n\n'
149+
s = '# Wavefront OBJ exported with ABMATT v1.2.0\n\nmtllib ' + self.mtllib + '\n\n'
150150
vertex_index = 1
151151
normal_index = 1
152152
normal_offset = -1

abmatt/dist/install-ubu.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
====================================================================================
22
ANOOB'S BRRES MATERIAL TOOL
3-
Version: 1.1.0
3+
Version: 1.2.0
44
Author: Robert Nelson
55
OS: linux
66
Github: https://github.com/Robert-N7/abmatt

abmatt/dist/install-win.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
===================================================================================================
22
ANOOB'S BRRES MATERIAL TOOL
3-
Version 1.1.0
3+
Version 1.2.0
44
Robert Nelson
55
OS: Windows 10 64-bit
66
Github: https://github.com/Robert-N7/abmatt

abmatt/dist/make_installer.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!define VERSION "1.1.0"
1+
!define VERSION "1.2.0"
22
!define PROGRAM_NAME "ANoob's Brres Material Tool ${VERSION}"
33
InstallDir "$Documents\abmatt"
44
Name "${PROGRAM_NAME}"

abmatt/load_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def load_config(app_dir=None, loudness=None, autofix_level=None):
117117
return conf
118118

119119

120-
VERSION = '1.1.0'
120+
VERSION = '1.2.0'
121121
USAGE = "USAGE: abmatt [command_line][--interactive -f <file> -b <brres-file> -d <destination> --overwrite]"
122122

123123

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
# calling the setup function
2929
setup(name='abmatt',
30-
version='1.1.0',
30+
version='1.2.0',
3131
entry_points={
3232
'console_scripts': [
3333
'abmatt = abmatt.__main__:main'

0 commit comments

Comments
 (0)