Updated to Risa's changes

This commit is contained in:
2025-08-10 12:48:02 +03:00
parent 0a0ae4bee9
commit 9730de1ba4
59 changed files with 302 additions and 2810 deletions

View File

@@ -63,6 +63,18 @@ public class PluginConfiguration : IPluginConfiguration, ISavable
public bool IncognitoMode { get; set; } = false;
public float CurrentTemplateSelectorWidth { get; set; } = 200f;
public float TemplateSelectorMinimumScale { get; set; } = 0.1f;
public float TemplateSelectorMaximumScale { get; set; } = 0.5f;
public float CurrentProfileSelectorWidth { get; set; } = 200f;
public float ProfileSelectorMinimumScale { get; set; } = 0.1f;
public float ProfileSelectorMaximumScale { get; set; } = 0.5f;
public List<string> ViewedMessageWindows { get; set; } = new();
}