mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 13:14:17 +01:00
Add memory of last mod path as well as default directory. Add default Author. Fix bugs.
This commit is contained in:
parent
c2a030aa6b
commit
545536f66f
5 changed files with 86 additions and 8 deletions
|
|
@ -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 );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue