remove EDDB use from tool

This never worked right, and it slowed down the tool massively on start up. And now that automatic objective detection works quite well it is no longer really needed.
This commit is contained in:
2022-06-07 19:05:21 +02:00
parent 431c83fc23
commit f88047718a
11 changed files with 1 additions and 497 deletions

View File

@@ -4,19 +4,10 @@ namespace EliteBGS.Util {
public class AppConfig : INotifyPropertyChanged {
private static readonly string default_journal_location = "%UserProfile%\\Saved Games\\Frontier Developments\\Elite Dangerous";
private string journal_location = default_journal_location;
private bool useeddb = false;
private string lastdiscordlog;
public string DefaultJournalLocation => default_journal_location;
public bool UseEDDB {
get => useeddb;
set {
useeddb = value;
FirePropertyChanged("UseEDDB");
}
}
public string LastUsedDiscordTemplate {
get => lastdiscordlog;
set {