mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2026-01-13 18:30:38 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02801c8689 | ||
|
|
3419804b4b | ||
|
|
f74a0b648c | ||
|
|
a336e9b3d5 | ||
|
|
a31d593bcf |
3
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
3
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@@ -59,6 +59,7 @@ body:
|
||||
label: Version
|
||||
description: What version of EE2 are you running? You can see this in Settings -> About
|
||||
options:
|
||||
- 0.13.10
|
||||
- 0.13.9
|
||||
- 0.13.8
|
||||
- 0.13.7
|
||||
@@ -73,7 +74,7 @@ body:
|
||||
- 0.11.x
|
||||
- 0.10.x
|
||||
- Change me
|
||||
default: 13
|
||||
default: 14
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
|
||||
@@ -6,6 +6,7 @@ repos:
|
||||
- id: end-of-file-fixer
|
||||
- id: check-yaml
|
||||
- id: check-added-large-files
|
||||
args: ['--maxkb=1024']
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: check-version-consistency
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#  Exiled Exchange 2
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ export default defineConfig({
|
||||
},
|
||||
themeConfig: {
|
||||
// logo: 'TODO', https://github.com/vuejs/vitepress/issues/1401
|
||||
appVersion: '0.13.9',
|
||||
appVersion: '0.13.10',
|
||||
github: {
|
||||
releasesUrl: 'https://github.com/Kvan7/Exiled-Exchange-2/releases'
|
||||
},
|
||||
|
||||
@@ -28,9 +28,13 @@ title: FAQ
|
||||
Don't worry, you still can use keys
|
||||

|
||||
|
||||
- **Do Private Leagues work?**
|
||||
|
||||
Yes, but you will need to sign in via the builtin browser. See [here](/private-leagues) for more info
|
||||
|
||||
- **Will my language be supported?**
|
||||
|
||||
No plans to support other languages. I know Awakened PoE has Russian, but I don't have plans to add other languages since I am still fixing this to work with the new game.
|
||||
Maybe, would need the app_i18n file to be translated to your language
|
||||
|
||||
- **I downloaded a zip with a bunch of files, but no .exe inside?**
|
||||
|
||||
|
||||
@@ -45,6 +45,7 @@ title: Index Page
|
||||
## P
|
||||
|
||||
- [Price Check](/price-check)
|
||||
- [Private Leagues](/private-leagues.md)
|
||||
|
||||
## Q
|
||||
|
||||
|
||||
17
docs/private-leagues.md
Normal file
17
docs/private-leagues.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: Private Leagues
|
||||
---
|
||||
|
||||
1. Select Private League in settings
|
||||
|
||||

|
||||
|
||||
2. Enable the builtin browser
|
||||
|
||||

|
||||
|
||||
3. Open the builtin browser and sign in
|
||||
|
||||

|
||||
|
||||

|
||||
BIN
docs/reference-images/builtin-browser-button.png
Normal file
BIN
docs/reference-images/builtin-browser-button.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
BIN
docs/reference-images/builtin-browser.png
Normal file
BIN
docs/reference-images/builtin-browser.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
BIN
docs/reference-images/private-league-setting.png
Normal file
BIN
docs/reference-images/private-league-setting.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
BIN
docs/reference-images/sign-in.png
Normal file
BIN
docs/reference-images/sign-in.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 949 KiB |
4
main/package-lock.json
generated
4
main/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "exiled-exchange-2",
|
||||
"version": "0.13.9",
|
||||
"version": "0.13.10",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "exiled-exchange-2",
|
||||
"version": "0.13.9",
|
||||
"version": "0.13.10",
|
||||
"dependencies": {
|
||||
"electron-overlay-window": "4.0.2",
|
||||
"uiohook-napi": "1.5.x"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "exiled-exchange-2",
|
||||
"version": "0.13.9",
|
||||
"version": "0.13.10",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "node build/script.mjs",
|
||||
|
||||
@@ -458,6 +458,9 @@ export function createFilters(
|
||||
statRefs: item.statsByType
|
||||
.filter((calc) => calc.type === ModifierType.Veiled)
|
||||
.map((calc) => calc.stat.ref),
|
||||
veiledCount: item.newMods.filter(
|
||||
(m) => m.info.type === ModifierType.Veiled,
|
||||
).length,
|
||||
disabled: item.rarity !== ItemRarity.Unique,
|
||||
};
|
||||
|
||||
|
||||
@@ -73,6 +73,7 @@ export interface ItemFilters {
|
||||
};
|
||||
veiled?: {
|
||||
statRefs: string[];
|
||||
veiledCount: number;
|
||||
disabled: boolean;
|
||||
};
|
||||
areaLevel?: FilterNumeric;
|
||||
|
||||
@@ -5,6 +5,7 @@ import {
|
||||
INTERNAL_TRADE_IDS,
|
||||
InternalTradeId,
|
||||
ItemIsElementalModifier,
|
||||
FilterTag,
|
||||
} from "../filters/interfaces";
|
||||
import { setProperty as propSet } from "dot-prop";
|
||||
import { DateTime } from "luxon";
|
||||
@@ -890,9 +891,6 @@ export function createTradeRequest(
|
||||
stats = stats.filter(
|
||||
(stat) => !INTERNAL_TRADE_IDS.includes(stat.tradeId[0] as any),
|
||||
);
|
||||
if (filters.veiled && !filters.veiled.disabled) {
|
||||
propSet(query.filters, "misc_filters.filters.veiled.option", String(true));
|
||||
}
|
||||
|
||||
// if (filters.influences) {
|
||||
// for (const influence of filters.influences) {
|
||||
@@ -943,6 +941,31 @@ export function createTradeRequest(
|
||||
}
|
||||
}
|
||||
|
||||
if (filters.veiled && !filters.veiled.disabled) {
|
||||
propSet(query.filters, "misc_filters.filters.veiled.option", String(true));
|
||||
const veiledCount = filters.veiled.veiledCount;
|
||||
|
||||
// HACK: add pseudo stat for veiled count(dont want on my ui though)
|
||||
qAnd.filters.push(
|
||||
tradeIdToQuery("pseudo.pseudo_number_of_unrevealed_mods", {
|
||||
tradeId: ["pseudo.pseudo_number_of_unrevealed_mods"],
|
||||
statRef: "# Unrevealed Modifiers",
|
||||
text: "Unrevealed Modifiers",
|
||||
tag: FilterTag.Pseudo,
|
||||
sources: [],
|
||||
roll: {
|
||||
value: veiledCount,
|
||||
min: veiledCount,
|
||||
max: undefined,
|
||||
default: { min: veiledCount, max: veiledCount },
|
||||
dp: false,
|
||||
isNegated: false,
|
||||
},
|
||||
disabled: false,
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
return body;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user