From b6c7da53c198fa89d5a2318a28f2da1157f279e9 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sat, 1 Jun 2024 16:36:57 +0200 Subject: [PATCH] Extended list of Dynamic Lighting model list --- app/AppConfig.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index e45a937b..53ff81b9 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -636,9 +636,11 @@ public static class AppConfig return ContainsModel("GU605") || (IsTUF() && !(ContainsModel("FX507Z") || ContainsModel("FA617"))); } + + // 2024 Models support Dynamic Lighting public static bool IsDynamicLighting() { - return IsSlash() || ContainsModel("JIR") || ContainsModel("JZR") || ContainsModel("FA607") || ContainsModel("FX607"); + return IsSlash() || ContainsModel("JIR") || ContainsModel("JZR") || ContainsModel("JVR") || ContainsModel("JYR") || ContainsModel("FA607P") || ContainsModel("FX607J") || ContainsModel("FA507U"); } }