This is a collection of CSV and image files used for updating my Final Fantasy XIV web applications. The data is generated using Saint Coinach.
- Download the latest version of SaintCoinach.Cmd from the project's releases page
- Unzip the archive and navigate into it
- Copy
extract.bat
from this repository into the Saint Coinach folder - Edit the paths in the script as necessary
- Run the script and check the changes into GitHub (Note: Windows has a serious fear of bats)
Image data is no longer stored in this repository. The extract script will generate a ui.zip
file in this directory, but it is up to the user to unarchive this where it is needed. My applications will expect the images to exist under /var/rails/images/ffxiv
. After creating this directory with the necessary permissions, you can use the following script to unzip the archive in this directory:
#!/usr/bin/env sh
mv ui.zip /var/rails/images/ffxiv
cd /var/rails/images/ffxiv
unzip -oq ui.zip
find ui -type f -exec chmod 664 {} \;
rm ui.zip
A similar script can be used for processing music samples for FFXIV Collect:
mv music.zip /var/rails/music/ffxiv
cd /var/rails/music/ffxiv
unzip -oq music.zip
find . -type f -exec chmod 664 {} \;
rm music.zip
FINAL FANTASY is a registered trademark of Square Enix Holdings Co., Ltd.
FINAL FANTASY XIV © SQUARE ENIX CO., LTD.