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/
ifstools.egg-info/
venv/
ifstools.spec

View File

@ -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

View File

@ -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',