Skip to content

Commit 850fa90

Browse files
authored
v0.6.0 (#328)
* [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
1 parent 06c396f commit 850fa90

File tree

129 files changed

+336828
-141556
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+336828
-141556
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ![Perfect Jewelers Orb](./renderer/public/images/jeweler.png) Exiled Exchange 2
22

3-
![GitHub Downloads (specific asset, latest release)](https://img.shields.io/github/downloads/kvan7/exiled-exchange-2/latest/Exiled-Exchange-2-Setup-0.5.0.exe?style=plastic&link=https%3A%2F%2Ftooomm.github.io%2Fgithub-release-stats%2F%3Fusername%3Dkvan7%26repository%3DExiled-Exchange-2)
3+
![GitHub Downloads (specific asset, latest release)](https://img.shields.io/github/downloads/kvan7/exiled-exchange-2/latest/Exiled-Exchange-2-Setup-0.6.0.exe?style=plastic&link=https%3A%2F%2Ftooomm.github.io%2Fgithub-release-stats%2F%3Fusername%3Dkvan7%26repository%3DExiled-Exchange-2)
44
![GitHub Tag](https://img.shields.io/github/v/tag/kvan7/exiled-exchange-2?style=plastic&label=latest%20version)
55
![GitHub commits since latest release (branch)](https://img.shields.io/github/commits-since/kvan7/exiled-exchange-2/latest/dev?style=plastic)
66

dataParser/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ vendor/json-api/ko/*.json
140140
vendor/json-api/cmn-Hant/*.json
141141
vendor/json-api/ja/*.json
142142
vendor/json-api/de/*.json
143+
vendor/json-api/es/*.json
143144
vendor/client/tables/*.json
144145
vendor/client/descriptions/*
145146
!vendor/client/descriptions/.gitkeep
@@ -154,13 +155,15 @@ vendor/client/tables/*
154155
!vendor/client/tables/cmn-Hant/ArmourTypesOverride.json
155156
!vendor/client/tables/ja/ArmourTypesOverride.json
156157
!vendor/client/tables/de/ArmourTypesOverride.json
158+
!vendor/client/tables/es/ArmourTypesOverride.json
157159

158160
!vendor/client/tables/en/.gitkeep
159161
!vendor/client/tables/ru/.gitkeep
160162
!vendor/client/tables/ko/.gitkeep
161163
!vendor/client/tables/cmn-Hant/.gitkeep
162164
!vendor/client/tables/ja/.gitkeep
163165
!vendor/client/tables/de/.gitkeep
166+
!vendor/client/tables/es/.gitkeep
164167

165168

166169

@@ -172,6 +175,7 @@ vendor/client/tables/*
172175
!vendor/json-api/cmn-Hant/.gitkeep
173176
!vendor/json-api/ja/.gitkeep
174177
!vendor/json-api/de/.gitkeep
178+
!vendor/json-api/es/.gitkeep
175179

176180

177181
EXPORT/tables/**/*.json
@@ -184,5 +188,7 @@ vendor/json-api/ko/*.json
184188
vendor/json-api/cmn-Hant/*.json
185189
vendor/json-api/ja/*.json
186190
vendor/json-api/de/*.json
191+
vendor/json-api/de/*.json
192+
vendor/json-api/es/*.json
187193

188194
EXPORT/files/**/*.csd

dataParser/EXPORT/config.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"Korean",
2929
"Traditional Chinese",
3030
"Japanese",
31-
"German"
31+
"German",
32+
"Spanish"
3233
],
3334
"tables": [
3435
{
@@ -121,7 +122,9 @@
121122
"Stat5Value",
122123
"Stat6Value",
123124
"RadiusJewelType",
124-
"Level"
125+
"Level",
126+
"GenerationType",
127+
"Families"
125128
]
126129
},
127130
{

dataParser/copy-py-ndjson.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
supported_languages=("en" "ru" "ko" "cmn-Hant" "ja" "de")
3+
supported_languages=("en" "ru" "ko" "cmn-Hant" "ja" "de" "es")
44

55
for lang in "${supported_languages[@]}"; do
66
echo "Copying $lang"

dataParser/copy-tables.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ cp -R EXPORT/tables/Japanese/* vendor/client/tables/ja/
1717
echo "Copying files from EXPORT/tables/German to data/de"
1818
cp -R EXPORT/tables/German/* vendor/client/tables/de/
1919

20+
echo "Copying files from EXPORT/tables/Spanish to data/es"
21+
cp -R EXPORT/tables/Spanish/* vendor/client/tables/es/
22+
2023
echo "Copying not generated files from english to other languages"
2124

2225
# Copy without overwriting English -> data/ru
@@ -25,6 +28,7 @@ cp -n vendor/client/tables/en/* vendor/client/tables/ko/
2528
cp -n vendor/client/tables/en/* vendor/client/tables/cmn-Hant/
2629
cp -n vendor/client/tables/en/* vendor/client/tables/ja/
2730
cp -n vendor/client/tables/en/* vendor/client/tables/de/
31+
cp -n vendor/client/tables/en/* vendor/client/tables/es/
2832

2933
# Copy description files from EXPORT/files to client/descriptions
3034
echo "Copying description files from EXPORT/files to client/descriptions"

dataParser/data/cmn-Hant/items.ndjson

Lines changed: 264 additions & 264 deletions
Large diffs are not rendered by default.

dataParser/data/cmn-Hant/stats.ndjson

Lines changed: 585 additions & 421 deletions
Large diffs are not rendered by default.

dataParser/data/de/items.ndjson

Lines changed: 278 additions & 278 deletions
Large diffs are not rendered by default.

dataParser/data/de/stats.ndjson

Lines changed: 597 additions & 433 deletions
Large diffs are not rendered by default.

dataParser/data/en/items.ndjson

Lines changed: 281 additions & 281 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)