Add memory of last mod path as well as default directory. Add default Author. Fix bugs.

This commit is contained in:
Ottermandias 2022-04-27 23:31:56 +02:00
parent c2a030aa6b
commit 545536f66f
5 changed files with 86 additions and 8 deletions

View file

@ -4,6 +4,7 @@ using System.Linq;
using Dalamud.Configuration;
using Dalamud.Logging;
using OtterGui.Filesystem;
using Penumbra.Import;
using Penumbra.UI.Classes;
namespace Penumbra;
@ -38,6 +39,9 @@ public partial class Configuration : IPluginConfiguration
public bool DisableSoundStreaming { get; set; } = true;
public bool EnableHttpApi { get; set; }
public string DefaultModImportPath { get; set; } = string.Empty;
public string DefaultModAuthor { get; set; } = DefaultTexToolsData.Author;
public Dictionary< ColorId, uint > Colors { get; set; }
= Enum.GetValues< ColorId >().ToDictionary( c => c, c => c.Data().DefaultColor );