diff --git a/.gitignore b/.gitignore index e57871b..a65055b 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ build/ dist/ ifstools.egg-info/ venv/ +ifstools.spec diff --git a/README.md b/README.md index 22521f4..2cf8de9 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,10 @@ Then run `ifstools` from anywhere in a command prompt. ## Usage ``` -usage: ifstools [-h] [-e] [-y] [-o OUT_DIR] [--tex-only] [--nocache] [-m] [-s] - [-r] - file_to_unpack.ifs|folder_to_repack_ifs - [file_to_unpack.ifs|folder_to_repack_ifs ...] +usage: ifstools [-h] [-e] [-y] [-o OUT_DIR] [--tex-only] [-c] + [--bounds] [--no-cache] [-m] [-s] [-r] + file_to_unpack.ifs|folder_to_repack_ifs + [file_to_unpack.ifs|folder_to_repack_ifs ...] Unpack/pack IFS files and textures @@ -40,7 +40,10 @@ optional arguments: -y don't prompt for file/folder overwrite -o OUT_DIR output directory --tex-only only extract textures - --nocache ignore texture cache, recompress all + -c, --canvas dump the image canvas as defined by the + texturelist.xml in _canvas.png + --bounds draw image bounds on the exported canvas in red + --no-cache ignore texture cache, recompress all -m, --extract-manifest extract the IFS manifest for inspection -s, --silent don't display files as they are processed diff --git a/setup.py b/setup.py index 7d52d05..25c79b9 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ requires = [ if sys.version_info < (3,0): requires.append('future') -version = '1.4' +version = '1.5' setup( name='ifstools', description='Extractor/repacker for Konmai IFS files',