pair/downloads notif changes + more settings options
This commit is contained in:
@@ -77,9 +77,11 @@ public class LightlessConfig : ILightlessConfiguration
|
||||
public bool EnableNotificationSounds { get; set; } = true;
|
||||
public int DefaultNotificationDurationSeconds { get; set; } = 10;
|
||||
public bool ShowNotificationProgress { get; set; } = true;
|
||||
public NotificationLocation LightlessInfoNotification { get; set; } = NotificationLocation.LightlessUI;
|
||||
public NotificationLocation LightlessWarningNotification { get; set; } = NotificationLocation.LightlessUI;
|
||||
public NotificationLocation LightlessErrorNotification { get; set; } = NotificationLocation.ChatAndLightlessUI;
|
||||
public NotificationLocation LightlessInfoNotification { get; set; } = NotificationLocation.LightlessUi;
|
||||
public NotificationLocation LightlessWarningNotification { get; set; } = NotificationLocation.LightlessUi;
|
||||
public NotificationLocation LightlessErrorNotification { get; set; } = NotificationLocation.ChatAndLightlessUi;
|
||||
public NotificationLocation LightlessPairRequestNotification { get; set; } = NotificationLocation.LightlessUi;
|
||||
public NotificationLocation LightlessDownloadNotification { get; set; } = NotificationLocation.TextOverlay;
|
||||
|
||||
public float NotificationOpacity { get; set; } = 0.95f;
|
||||
public bool EnableNotificationAnimations { get; set; } = true;
|
||||
@@ -93,7 +95,6 @@ public class LightlessConfig : ILightlessConfiguration
|
||||
public uint CustomWarningSoundId { get; set; } = 15; // Se15
|
||||
public uint CustomErrorSoundId { get; set; } = 16; // Se16
|
||||
public bool UseCustomSounds { get; set; } = false;
|
||||
public float NotificationSoundVolume { get; set; } = 1.0f;
|
||||
// till here c:
|
||||
public bool UseFocusTarget { get; set; } = false;
|
||||
public bool overrideFriendColor { get; set; } = false;
|
||||
|
||||
@@ -6,13 +6,16 @@ public enum NotificationLocation
|
||||
Chat,
|
||||
Toast,
|
||||
Both,
|
||||
LightlessUI,
|
||||
ChatAndLightlessUI,
|
||||
LightlessUi,
|
||||
ChatAndLightlessUi,
|
||||
TextOverlay,
|
||||
}
|
||||
|
||||
public enum NotificationType
|
||||
{
|
||||
Info,
|
||||
Warning,
|
||||
Error
|
||||
Error,
|
||||
PairRequest,
|
||||
Download
|
||||
}
|
||||
Reference in New Issue
Block a user