1
0
mirror of https://github.com/mon/ifstools.git synced 2024-11-24 01:50:10 +01:00
This commit is contained in:
Will Toohey 2018-05-06 19:05:25 +10:00
parent 8c5ed5a3b9
commit 06c2b338d2
3 changed files with 10 additions and 6 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ build/
dist/ dist/
ifstools.egg-info/ ifstools.egg-info/
venv/ venv/
ifstools.spec

View File

@ -20,8 +20,8 @@ Then run `ifstools` from anywhere in a command prompt.
## Usage ## Usage
``` ```
usage: ifstools [-h] [-e] [-y] [-o OUT_DIR] [--tex-only] [--nocache] [-m] [-s] usage: ifstools [-h] [-e] [-y] [-o OUT_DIR] [--tex-only] [-c]
[-r] [--bounds] [--no-cache] [-m] [-s] [-r]
file_to_unpack.ifs|folder_to_repack_ifs file_to_unpack.ifs|folder_to_repack_ifs
[file_to_unpack.ifs|folder_to_repack_ifs ...] [file_to_unpack.ifs|folder_to_repack_ifs ...]
@ -40,7 +40,10 @@ optional arguments:
-y don't prompt for file/folder overwrite -y don't prompt for file/folder overwrite
-o OUT_DIR output directory -o OUT_DIR output directory
--tex-only only extract textures --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 -m, --extract-manifest
extract the IFS manifest for inspection extract the IFS manifest for inspection
-s, --silent don't display files as they are processed -s, --silent don't display files as they are processed

View File

@ -11,7 +11,7 @@ requires = [
if sys.version_info < (3,0): if sys.version_info < (3,0):
requires.append('future') requires.append('future')
version = '1.4' version = '1.5'
setup( setup(
name='ifstools', name='ifstools',
description='Extractor/repacker for Konmai IFS files', description='Extractor/repacker for Konmai IFS files',