Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-N7 committed Oct 19, 2021
1 parent 797e487 commit 629570f
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .idea/abmatt.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion abmatt/build/config.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion abmatt/converters/dae.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions abmatt/converters/obj.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@ 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()
with open(os.path.join(folder, self.mtllib), 'w') as f:
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
Expand Down
2 changes: 1 addition & 1 deletion abmatt/dist/install-ubu.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion abmatt/dist/install-win.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion abmatt/dist/make_installer.nsi
Original file line number Diff line number Diff line change
@@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion abmatt/load_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <file> -b <brres-file> -d <destination> --overwrite]"


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 629570f

Please sign in to comment.