Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.5.0 #308

Merged
merged 14 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ![Perfect Jewelers Orb](./renderer/public/images/jeweler.png) Exiled Exchange 2

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

Expand Down
7 changes: 7 additions & 0 deletions dataParser/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ vendor/json-api/ru/*.json
vendor/json-api/ko/*.json
vendor/json-api/cmn-Hant/*.json
vendor/json-api/ja/*.json
vendor/json-api/de/*.json
vendor/client/tables/*.json
vendor/client/descriptions/*
!vendor/client/descriptions/.gitkeep
Expand All @@ -152,12 +153,14 @@ vendor/client/tables/*
!vendor/client/tables/ko/ArmourTypesOverride.json
!vendor/client/tables/cmn-Hant/ArmourTypesOverride.json
!vendor/client/tables/ja/ArmourTypesOverride.json
!vendor/client/tables/de/ArmourTypesOverride.json

!vendor/client/tables/en/.gitkeep
!vendor/client/tables/ru/.gitkeep
!vendor/client/tables/ko/.gitkeep
!vendor/client/tables/cmn-Hant/.gitkeep
!vendor/client/tables/ja/.gitkeep
!vendor/client/tables/de/.gitkeep



Expand All @@ -168,6 +171,7 @@ vendor/client/tables/*
!vendor/json-api/ko/.gitkeep
!vendor/json-api/cmn-Hant/.gitkeep
!vendor/json-api/ja/.gitkeep
!vendor/json-api/de/.gitkeep


EXPORT/tables/**/*.json
Expand All @@ -179,3 +183,6 @@ vendor/json-api/ru/*.json
vendor/json-api/ko/*.json
vendor/json-api/cmn-Hant/*.json
vendor/json-api/ja/*.json
vendor/json-api/de/*.json

EXPORT/files/**/*.csd
25 changes: 24 additions & 1 deletion dataParser/EXPORT/config.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,34 @@
{
"steam": "C:\\Program Files (x86)\\Steam\\steamapps\\common\\Path of Exile 2",
"files": [
"Metadata/StatDescriptions/active_skill_gem_stat_descriptions.csd",
"Metadata/StatDescriptions/advanced_mod_stat_descriptions.csd",
"Metadata/StatDescriptions/atlas_stat_descriptions.csd",
"Metadata/StatDescriptions/character_panel_stat_descriptions.csd",
"Metadata/StatDescriptions/chest_stat_descriptions.csd",
"Metadata/StatDescriptions/expedition_relic_stat_descriptions.csd",
"Metadata/StatDescriptions/gem_stat_descriptions.csd",
"Metadata/StatDescriptions/heist_equipment_stat_descriptions.csd",
"Metadata/StatDescriptions/leaguestone_stat_descriptions.csd",
"Metadata/StatDescriptions/map_stat_descriptions.csd",
"Metadata/StatDescriptions/meta_gem_stat_descriptions.csd",
"Metadata/StatDescriptions/monster_stat_descriptions.csd",
"Metadata/StatDescriptions/passive_skill_aura_stat_descriptions.csd",
"Metadata/StatDescriptions/passive_skill_stat_descriptions.csd",
"Metadata/StatDescriptions/primordial_altar_stat_descriptions.csd",
"Metadata/StatDescriptions/sanctum_relic_stat_descriptions.csd",
"Metadata/StatDescriptions/sentinel_stat_descriptions.csd",
"Metadata/StatDescriptions/skill_stat_descriptions.csd",
"Metadata/StatDescriptions/stat_descriptions.csd",
"Metadata/StatDescriptions/utility_flask_buff_stat_descriptions.csd"
],
"translations": [
"English",
"Russian",
"Korean",
"Traditional Chinese",
"Japanese"
"Japanese",
"German"
],
"tables": [
{
Expand Down
2 changes: 1 addition & 1 deletion dataParser/copy-py-ndjson.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


supported_languages=("en" "ru" "ko" "cmn-Hant" "ja")
supported_languages=("en" "ru" "ko" "cmn-Hant" "ja" "de")

for lang in "${supported_languages[@]}"; do
echo "Copying $lang"
Expand Down
10 changes: 9 additions & 1 deletion dataParser/copy-tables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,18 @@ cp -R EXPORT/tables/Traditional\ Chinese/* vendor/client/tables/cmn-Hant/
echo "Copying files from EXPORT/tables/Japanese to data/ja"
cp -R EXPORT/tables/Japanese/* vendor/client/tables/ja/

echo "Copying files from EXPORT/tables/German to data/de"
cp -R EXPORT/tables/German/* vendor/client/tables/de/

echo "Copying not generated files from english to other languages"

# Copy without overwriting English -> data/ru
cp -n vendor/client/tables/en/* vendor/client/tables/ru/
cp -n vendor/client/tables/en/* vendor/client/tables/ko/
cp -n vendor/client/tables/en/* vendor/client/tables/cmn-Hant/
cp -n vendor/client/tables/en/* vendor/client/tables/ja/
cp -n vendor/client/tables/en/* vendor/client/tables/ja/
cp -n vendor/client/tables/en/* vendor/client/tables/de/

# Copy description files from EXPORT/files to client/descriptions
echo "Copying description files from EXPORT/files to client/descriptions"
cp -R EXPORT/files/* vendor/client/descriptions/
9 changes: 7 additions & 2 deletions dataParser/data/cmn-Hant/items.ndjson
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{"name": "Bidding", "refName": "Bidding", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
{"name": "Overseer Precursor Tablet", "refName": "Overseer Precursor Tablet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TowerAugment"}, "w": 1, "h": 1}
{"name": "Tremors", "refName": "Tremors", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
{"name": "[DNT] Axe Chop", "refName": "[DNT] Axe Chop", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
{"name": "[DNT] Axe Execute", "refName": "[DNT] Axe Execute", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
Expand Down Expand Up @@ -2583,7 +2584,7 @@
{"name": "雙肢弓", "refName": "Double Limb Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4}
{"name": "雜響權杖", "refName": "Rattling Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3}
{"name": "雷彈", "refName": "Lightning Bolt", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
{"name": "雷彈", "refName": "Lightning Bolt", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
{"name": "雷彈", "refName": "Greater Lightning Bolt", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
{"name": "雷暴彈藥", "refName": "Stormblast Bolts", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
{"name": "雷霆之杖", "refName": "Lightning Rod", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
{"name": "電光領域", "refName": "Galvanic Field", "namespace": "GEM", "icon": "https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HYWx2YW5pY0ZpZWxkU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa27ccb46/GalvanicFieldSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}}
Expand Down Expand Up @@ -3027,11 +3028,14 @@
{"name": "引導之掌", "refName": "Guiding Palm", "namespace": "UNIQUE", "unique": {"base": "神殿權杖"}}
{"name": "獵豬", "refName": "Hoghunt", "namespace": "UNIQUE", "unique": {"base": "墮落巨棍棒"}}
{"name": "雷姆諾的奪命樂具", "refName": "Hrimnor's Hymn", "namespace": "UNIQUE", "unique": {"base": "橡木巨錘"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "分裂巨斧"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "拱形巨斧"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "鍛鐵巨劍"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "分裂鏈錘"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "鈍斧"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "戰爭長鋒"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "分裂巨斧"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "闊劍"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "焦黑短劍"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "優雅長柄刀"}}
{"name": "未完成", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "闊刃巨劍"}}
{"name": "生機之記", "refName": "Lifesprig", "namespace": "UNIQUE", "unique": {"base": "調和法杖"}}
Expand All @@ -3050,6 +3054,7 @@
{"name": "塔林的顫慄之語", "refName": "Taryn's Shiver", "namespace": "UNIQUE", "unique": {"base": "極寒長杖"}}
{"name": "血棘", "refName": "The Blood Thorn", "namespace": "UNIQUE", "unique": {"base": "纏繞細杖"}}
{"name": "暗影重擔", "refName": "The Burden of Shadows", "namespace": "UNIQUE", "unique": {"base": "鳴響長杖"}}
{"name": "狂舞德爾維希", "refName": "The Dancing Dervish", "namespace": "UNIQUE", "unique": {"base": "彎刀"}}
{"name": "黑暗玷汙者", "refName": "The Dark Defiler", "namespace": "UNIQUE", "unique": {"base": "雜響權杖"}}
{"name": "熾炎之使", "refName": "The Searing Touch", "namespace": "UNIQUE", "unique": {"base": "炎植長杖"}}
{"name": "哨兵", "refName": "The Sentry", "namespace": "UNIQUE", "unique": {"base": "歌德細杖"}}
Expand Down
Loading
Loading