mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2026-09-20 19:55:52 +00:00
850fa90455
* [Parse Error] - Rarity: Magic #285 (#315) * Add in fix Co-authored-by: @vagrant-soul * Adds regression tests * Features/uniqueRollsRewrite (#316) * update with new rolls system * More or less working now * adds fix for some stats from json having + * Features/jewels (#317) * Fix help text on jewels * Add fix for shock * [Not Recognized Modifier] - (most monster map modifiers) #314 * Features/showItemOnHover (#322) * Move row into own component * add tooltip on shift and hover * works MVP * style and fix affix strings * pseudo add * change tooltip method to more dynamic * Corrupted back to red * style updates * Add option for tooltip in settings * Features/relics (#323) * update en strings * translation client strings * Fix relic parse error * Tag text * enable relic filters by default * add spanish? (#324) Co-authored-by: @mgallego * Divider line shows when it shouldn't on non weapons or armour #325 * Features/newRunes (#326) * Rip out old rune code * final removed stuff? * change filter back to number * use new rune filter * done runes * Remove alpha * Features/runeSocketsPart4 (#327) * some stat change is working * iron working? * new betterer way? * DONE DONE DONE * add translation line * version bump
23 lines
699 B
Bash
23 lines
699 B
Bash
#!/bin/bash
|
|
|
|
# This script pushes data from our data/en directory to the actual data/en directory
|
|
|
|
# Get the current directory
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
# Get the data directory
|
|
DATA_DIR="./data"
|
|
SUPPORTED_LANG=("en" "ru" "ko" "cmn-Hant" "ja" "de" "es")
|
|
# Get all *.ndjson files in the data directory
|
|
|
|
echo "current dir: $DIR"
|
|
|
|
for lang in "${SUPPORTED_LANG[@]}"; do
|
|
FILES=$(find $DATA_DIR/$lang -name "*.ndjson")
|
|
|
|
# Loop through each file and push it to the actual data directory, overwriting any existing files
|
|
for file in $FILES; do
|
|
echo "Pushing $file to data/$lang"
|
|
cp $file ../renderer/public/data/$lang
|
|
done
|
|
done |