Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
@if (_gatewayConnected && _status?.FirmwareSupported == false && !string.IsNullOrEmpty(_status?.FirmwareVersion))
{
<div class="alert alert-danger" style="margin-top: 1rem;">
<strong>Unsupported Firmware:</strong> Performance tweaks are currently tested and supported up to UniFi OS 5.1.10. Your gateway is running @_status.FirmwareVersion. Deploying new tweaks is disabled until we validate compatibility with this version. Existing tweaks will continue to run.
<strong>Unsupported Firmware:</strong> Performance tweaks are currently tested and supported up to UniFi OS 5.1.11. Your gateway is running @_status.FirmwareVersion. Deploying new tweaks is disabled until we validate compatibility with this version. Existing tweaks will continue to run.
</div>
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class PerfTweaksDeploymentService
private const string OnBootDir = "/data/on_boot.d";
private const string PerfTweaksDir = "/data/perf-tweaks";
private const string SfpModuleDir = "/data/sfp-sgmiiplus";
private static readonly Version MaxSupportedFirmware = new(5, 1, 10);
private static readonly Version MaxSupportedFirmware = new(5, 1, 11);

private static readonly Dictionary<string, string> BootScriptFiles = new()
{
Expand Down
Loading