Improve DeliveryAdminWindow

This commit is contained in:
2023-05-23 20:00:24 +02:00
parent 3315b758ad
commit 5b9aedd1a4
9 changed files with 161 additions and 15 deletions

View File

@ -11,6 +11,7 @@ namespace Elwig.Helpers {
private readonly string FileName;
public string DatabaseFile = App.DataPath + "database.sqlite3";
public string? DatabaseLog = null;
public string? ZwstId = null;
public IEnumerable<string[]> Scales;
private readonly LinkedList<string[]> ScaleList = new();
@ -43,6 +44,12 @@ namespace Elwig.Helpers {
DatabaseLog = App.DataPath + log;
}
if (ini == null || !ini.TryGetKey("general.branch", out string branch)) {
ZwstId = null;
} else {
ZwstId = branch;
}
ScaleList.Clear();
Scales = ScaleList;
if (ini != null) {