mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-12-12 02:56:36 +00:00
* [PoE2] - Controlled metamorphisis shouldn't be ring size and up #397
* [Not Recognized Modifier] - quality on wand #398
* Wrong search parameters set for belt, generates negative min value #412
* Add Hybrid potential note to T1 tag #410
* Option to always show tiers #385
* Add oils to anoints #419
* Add deprecated notice
* better handling for hybrids
* Add corruption tags for those enchants #420
* Make normal rarity filter visible when applicable #408
* Fixes some tiers not showing due to being too high
* Add good crafting base items (magic) #423
* #424
* Should only be able to fill runes on a corrupted item that it has sockets #422
* fix crash for undefined error
* Adds hybrids to hybrid note
* Disable internal tradeIds for unique items #409
* fix empty mod always on
* [Parse Error] - Expedition logbook #318
* correct area level floors
* Request: add option for currency ratio. #396
* Fix add enchants to hover items
* Add sources for dps numbers
* Fix crit hit chance sources
* Revert "Add sources for dps numbers"
This reverts commit f1bbcc24a2.
* Change specific better ones
* bugfix/ubuntu/Fix widget area coordinates and size using primary display scale factor (#433)
* Multiplying widget are coordinates by the display scale factor
* Adding switch statement for handling linxu case properly
* adding missing default treshold
* Update main/src/windowing/WidgetAreaTracker.ts
* Handle not on primary display case
* rename
---------
Co-authored-by: kvan7 <kvan.valve@gmail.com>
* Fixes #435
* Fixes: #436
* Seems to mostly fix tiers
* use ref again
* fix unique items broken in other languages
* Add max tier to show all tiers
* fixes some missing tiers
* fix corruption enchant tag again
* version bump
26 lines
785 B
Bash
26 lines
785 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
|
|
|
|
echo "Pushing generic data to ./data"
|
|
cp $DIR/data/generic/* ../renderer/public/data |