added items
This commit is contained in:
parent
c3de5fdb63
commit
5f90bc137b
158 changed files with 2316 additions and 512 deletions
|
|
@ -2,7 +2,7 @@ using System.Text.Json;
|
|||
using System.Text.Json.Serialization;
|
||||
using Serilog;
|
||||
|
||||
namespace Poe2Trade.Core;
|
||||
namespace Automata.Core;
|
||||
|
||||
public class SavedLink
|
||||
{
|
||||
|
|
@ -18,8 +18,8 @@ public class SavedSettings
|
|||
{
|
||||
public bool Paused { get; set; }
|
||||
public List<SavedLink> Links { get; set; } = [];
|
||||
public string Poe2LogPath { get; set; } = @"C:\Program Files (x86)\Steam\steamapps\common\Path of Exile 2\logs\Client.txt";
|
||||
public string Poe2WindowTitle { get; set; } = "Path of Exile 2";
|
||||
public string GameLogPath { get; set; } = @"C:\Program Files (x86)\Steam\steamapps\common\Path of Exile 2\logs\Client.txt";
|
||||
public string GameWindowTitle { get; set; } = "Path of Exile 2";
|
||||
public string BrowserUserDataDir { get; set; } = "./browser-data";
|
||||
public int TravelTimeoutMs { get; set; } = 15000;
|
||||
public int StashScanTimeoutMs { get; set; } = 10000;
|
||||
|
|
@ -38,6 +38,9 @@ public class SavedSettings
|
|||
public string OcrEngine { get; set; } = "WinOCR";
|
||||
public KulemakSettings Kulemak { get; set; } = new();
|
||||
public DiamondSettings Diamond { get; set; } = new();
|
||||
public List<CraftRecipe> Crafts { get; set; } = [];
|
||||
public List<CurrencyPosition> CurrencyPositions { get; set; } = [];
|
||||
public string SelectedLeague { get; set; } = "";
|
||||
}
|
||||
|
||||
public class DiamondPriceConfig
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue