All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 36s
1.11.6 Changelog (In Progress) --- * Update submodule reference * Update dalamud sdk * Reworked the Syncshell Admin Page - Fixed that owners are visible in the list, Removed Pin/Remove/Ban buttons on Owners. - Styling is done similiar as settings page. - Added 1 or 3 day(s) option for inactive check. + Added new functions on the Server Top Bar button - Right click on the button will disconnect you from Lightless - Shift+Left click will open the settings page + Added colors section in the settings to change accent colors. - The nameplate coloring has been moved to this section + Added pin option from Dalamud in the UI. + Added ability to pause syncing while going in Instance/Duty + Added functionality to make syncshell folders + Fixed nameplate bug in PVP + added self-threshold warning Co-authored-by: defnotken <itsdefnotken@gmail.com> Co-authored-by: CakeAndBanana <admin@cakeandbanana.nl> Co-authored-by: thijmenh <thijmenhogenkamp@gmail.com> Co-authored-by: choco <choco@noreply.git.lightless-sync.org> Co-authored-by: cake <cake@noreply.git.lightless-sync.org> Co-authored-by: choco <thijmenhogenkamp@gmail.com> Reviewed-on: #4
17 lines
944 B
C#
17 lines
944 B
C#
namespace LightlessSync.LightlessConfiguration.Configurations;
|
|
|
|
public class PlayerPerformanceConfig : ILightlessConfiguration
|
|
{
|
|
public int Version { get; set; } = 1;
|
|
public bool ShowPerformanceIndicator { get; set; } = true;
|
|
public bool WarnOnExceedingThresholds { get; set; } = true;
|
|
public bool WarnOnPreferredPermissionsExceedingThresholds { get; set; } = false;
|
|
public int VRAMSizeWarningThresholdMiB { get; set; } = 375;
|
|
public int TrisWarningThresholdThousands { get; set; } = 165;
|
|
public bool AutoPausePlayersExceedingThresholds { get; set; } = false;
|
|
public bool AutoPausePlayersWithPreferredPermissionsExceedingThresholds { get; set; } = false;
|
|
public int VRAMSizeAutoPauseThresholdMiB { get; set; } = 550;
|
|
public int TrisAutoPauseThresholdThousands { get; set; } = 250;
|
|
public List<string> UIDsToIgnore { get; set; } = new();
|
|
public bool PauseInInstanceDuty { get; set; } = false;
|
|
} |