mirror of
https://github.com/mon/ifstools.git
synced 2026-07-07 20:24:02 -05:00
v1.4, add exe build
This commit is contained in:
parent
225400a290
commit
9996fe4532
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -5,3 +5,4 @@ __pycache__/
|
|||
build/
|
||||
dist/
|
||||
ifstools.egg-info/
|
||||
venv/
|
||||
|
|
|
|||
12
README.md
12
README.md
|
|
@ -12,8 +12,11 @@ Extractor for Konmai IFS files.
|
|||
- Dumps the ifs manifest so you can explore the format
|
||||
|
||||
## Install
|
||||
Install Python, then:
|
||||
`pip install ifstools`
|
||||
Just want an exe? [Download the latest](https://github.com/mon/ifstools/releases).
|
||||
|
||||
Have Python installed? Do this:
|
||||
`pip install ifstools`
|
||||
Then run `ifstools` from anywhere in a command prompt.
|
||||
|
||||
## Usage
|
||||
```
|
||||
|
|
@ -45,6 +48,11 @@ optional arguments:
|
|||
contents
|
||||
```
|
||||
|
||||
## Build an exe
|
||||
`pip install pyinstaller`
|
||||
`pyinstaller ifstools_bin.py --onefile -n ifstools`
|
||||
Recommend doing this in a fresh venv so the module finder doesn't include more than required.
|
||||
|
||||
Notes:
|
||||
- dxt5 texture repacking is not fully supported - they will silently be converted to argb8888rev
|
||||
|
||||
|
|
|
|||
3
ifstools_bin.py
Normal file
3
ifstools_bin.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from ifstools import ifstools
|
||||
|
||||
ifstools.main()
|
||||
Loading…
Reference in New Issue
Block a user