diff --git a/renderer/public/data/en/app_i18n.json b/renderer/public/data/en/app_i18n.json index f170e88b..45a6077d 100644 --- a/renderer/public/data/en/app_i18n.json +++ b/renderer/public/data/en/app_i18n.json @@ -437,7 +437,10 @@ "parse_error": "For some reason this item's stats did not parse.", "parse_error2": "It likely has a mod that is not supported yet.", "parse_error3": "(Potentially new or changed wording from poe1)", - "bulk_exchange": "Bulk exchange rates are not implemented yet" + "bulk_exchange": "Bulk exchange rates are not implemented yet", + "found_data": "Found {0} items and {1} stats", + "no_data": "No new data found", + "failed_to_load": "Loading fallback data failed, try again later" }, "tips": { "tip_1": "You can add your own images to the cheat sheet widget by hitting \"edit\"", diff --git a/renderer/src/parser/Parser.ts b/renderer/src/parser/Parser.ts index c7632d1e..111e188f 100644 --- a/renderer/src/parser/Parser.ts +++ b/renderer/src/parser/Parser.ts @@ -7,7 +7,6 @@ import { BaseType, ITEM_BY_TRANSLATED, TRADE_ITEM_BY_REF, - TRADE_STAT_BY_STAT_ID, } from "@/assets/data"; import { ModifierType, StatCalculated, sumStatsByModType } from "./modifiers"; import { @@ -1633,18 +1632,19 @@ function parseStatsFromMod( continue; } - const validTradeIds = parsedStat?.stat.trade.ids[ - modifier.info.type - ]?.filter((id) => - TRADE_STAT_BY_STAT_ID( - id + - (parsedStat.stat.trade.option - ? "|" + parsedStat.translation.value - : ""), - ), - ); + // const validTradeIds = parsedStat?.stat.trade.ids[ + // modifier.info.type + // ]?.filter((id) => + // TRADE_STAT_BY_STAT_ID( + // id + + // (parsedStat.stat.trade.option + // ? "|" + parsedStat.translation.value + // : ""), + // ), + // ); - if (parsedStat && validTradeIds && validTradeIds.length) { + // if (parsedStat && validTradeIds && validTradeIds.length) { + if (parsedStat) { modifier.stats.push(parsedStat); stat = statIterator.next(true); diff --git a/renderer/src/web/price-check/PriceCheckWindow.vue b/renderer/src/web/price-check/PriceCheckWindow.vue index f3f7325e..6bffb857 100644 --- a/renderer/src/web/price-check/PriceCheckWindow.vue +++ b/renderer/src/web/price-check/PriceCheckWindow.vue @@ -90,6 +90,11 @@