From 5964765b762578573b3b7c2815552da9df1639c6 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Tue, 4 Oct 2011 02:37:33 +0900 Subject: [PATCH] fix --- ChangeLog | 23 +++++++++++++++++++++++ MANIFEST.in | 1 + pymeshio/pmx/writer.py | 2 +- setup.py | 39 ++++++++++----------------------------- 4 files changed, 35 insertions(+), 30 deletions(-) create mode 100644 ChangeLog diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..553eee2 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,23 @@ +2.1.0 (2011-10-02) +~~~~~~~~~~~~~~~~~~ +* refactoring api + +2.0.2 (2011-10-01) +~~~~~~~~~~~~~~~~~~ +* fix for Python 2.7(remove anotation) +* fix pymeshio.pmx.Bdef1.bone_index to index0 +* fix pymeshio.pmx.Material.index_count to vertex_count +* add pmx example + +2.0.0 (2011-9-30) +~~~~~~~~~~~~~~~~~~ +* add pmx loader + +1.9.2 (2011-9-29) +~~~~~~~~~~~~~~~~~~ +* add tkinter viewer sample + +1.9.1 (2011-9-23) +~~~~~~~~~~~~~~~~~~ +* register pypi + diff --git a/MANIFEST.in b/MANIFEST.in index ea08a5e..78c7bc1 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include blender25-meshio/*.py include examples/*.py include README.* +include ChageLog diff --git a/pymeshio/pmx/writer.py b/pymeshio/pmx/writer.py index 073a665..033d944 100644 --- a/pymeshio/pmx/writer.py +++ b/pymeshio/pmx/writer.py @@ -257,7 +257,7 @@ class Writer(common.BinaryWriter): def write(ios, model, text_encoding=1): - """pmx‘‚«ž‚Ý + """pmx書き込み """ assert(isinstance(ios, io.IOBase)) assert(isinstance(model, pmx.Model)) diff --git a/setup.py b/setup.py index 141e944..6c74add 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import os import shutil name='pymeshio' -version='2.1.0' +version='2.2.0' short_description='pure python 3d model io library' long_description='''\ `pymeshio` is a package for 3d model io. @@ -20,15 +20,15 @@ Requirements Features -------- -* read/write Metasequioa mqo format +* read Metasequioa mqo format * read/write MikuMikuDance pmd format -* read-only MikuMikuDance pmx format -* read/write MikuMikuDance vmd format -* read/write MikuMikuDance vpd format +* read/write MikuMikuDance pmx format +* read MikuMikuDance vmd format +* read MikuMikuDance vpd format -Setup ------ +Install +------- :: $ easy_install pymeshio @@ -51,36 +51,17 @@ Usage ToDo -------- -* pmx writer * pmd to pmx converter * blender importer for pmx * blender exporter for pmx -History +New ------- -2.1.0 (2011-10-02) - -* refactoring api - -2.0.2 (2011-10-01) +2.2.0 (2011-10-03) ~~~~~~~~~~~~~~~~~~ -* fix for Python 2.7(remove anotation) -* fix pymeshio.pmx.Bdef1.bone_index to index0 -* fix pymeshio.pmx.Material.index_count to vertex_count -* add pmx example +* implement pmx writer -2.0.0 (2011-9-30) -~~~~~~~~~~~~~~~~~~ -* add pmx loader - -1.9.2 (2011-9-29) -~~~~~~~~~~~~~~~~~~ -* add tkinter viewer sample - -1.9.1 (2011-9-23) -~~~~~~~~~~~~~~~~~~ -* register pypi ''' classifiers=[ -- 2.11.0