Renamed to udk-manip.

This commit is contained in:
njohnson 2026-01-20 16:14:46 -05:00
parent 5c455e9a45
commit 91b043929c
2 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
# udk-config-extractor # udk-manip
A command-line tool for extracting and repacking UDK/UE3 coalesced config and localization files. A command-line tool for manipulating UDK/UE3 coalesced config and localization files.
Tested with Army of Two: The 40th Day (Xbox 360). Tested with Army of Two: The 40th Day (Xbox 360).
@ -27,11 +27,11 @@ Tested with Army of Two: The 40th Day (Xbox 360).
## Usage ## Usage
``` ```
udk-config-extractor list <file> - List archive contents udk-manip list <file> - List archive contents
udk-config-extractor unpack <file> [output_dir] - Extract all files udk-manip unpack <file> [output_dir] - Extract all files
udk-config-extractor pack <input_dir> <output_file> - Create coalesced file udk-manip pack <input_dir> <output_file> - Create coalesced file
udk-config-extractor info <file> - Show archive info udk-manip info <file> - Show archive info
udk-config-extractor extract <file> <index> [output] - Extract single file udk-manip extract <file> <index> [output] - Extract single file
``` ```
### Drag & Drop ### Drag & Drop
@ -46,7 +46,7 @@ udk-config-extractor extract <file> <index> [output] - Extract single file
Requires Qt 6 and a C++17 compiler. Requires Qt 6 and a C++17 compiler.
```bash ```bash
qmake udk-config-extractor.pro qmake udk-manip.pro
make make
``` ```

View File

@ -5,7 +5,7 @@ TEMPLATE = app
CONFIG += console c++17 CONFIG += console c++17
CONFIG -= app_bundle CONFIG -= app_bundle
TARGET = udk-config-extractor TARGET = udk-manip
SOURCES += \ SOURCES += \
main.cpp \ main.cpp \