From 5e63a5dfd1f760f52d7a61998ebbce2c27705b8f Mon Sep 17 00:00:00 2001 From: AlexandrPkhm Date: Mon, 24 Aug 2026 22:59:11 +0400 Subject: [PATCH 1/2] fix: exclude Riot Client, League of Legends and Riot Vanguard from routing (#68) --- windows/route_exclusions_apps.json | 69 ++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/windows/route_exclusions_apps.json b/windows/route_exclusions_apps.json index 5a015ce..b603a86 100644 --- a/windows/route_exclusions_apps.json +++ b/windows/route_exclusions_apps.json @@ -397,5 +397,74 @@ } ], "public_issue_url": "https://github.com/AdguardTeam/CompatibilityIssues/issues/65" + }, + { + "name": "Riot Client", + "executable_names": [ + "RiotClientServices.exe", + "RiotClientUx.exe", + "RiotClientUxRender.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Riot Game league_of_legends.live" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Riot Game valorant.live" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES(x86)%\\Riot Games\\Riot Client\\RiotClientServices.exe" + } + ], + "public_issue_url": "https://github.com/AdguardTeam/CompatibilityIssues/issues/68" + }, + { + "name": "League of Legends", + "executable_names": [ + "LeagueClient.exe", + "LeagueClientUx.exe", + "LeagueClientUxRender.exe", + "League of Legends.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Riot Game league_of_legends.live" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Riot Games, Inc\\League of Legends" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Riot Games, Inc\\League of Legends" + } + ], + "public_issue_url": "https://github.com/AdguardTeam/CompatibilityIssues/issues/68" + }, + { + "name": "Riot Vanguard", + "executable_names": [ + "vgc.exe", + "vgm.exe" + ], + "installed_conditions": [ + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\vgc" + }, + { + "type": "RegistryKey", + "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Riot Vanguard" + }, + { + "type": "FilePath", + "pattern": "%PROGRAMFILES%\\Riot Vanguard\\vgc.exe" + } + ], + "public_issue_url": "https://github.com/AdguardTeam/CompatibilityIssues/issues/68" } ] From 2361fbafd955a7e15c326e7b71464ead060557c9 Mon Sep 17 00:00:00 2001 From: AlexandrPkhm Date: Mon, 24 Aug 2026 23:28:14 +0400 Subject: [PATCH 2/2] Keep only the strongest install conditions for Riot entries --- windows/route_exclusions_apps.json | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/windows/route_exclusions_apps.json b/windows/route_exclusions_apps.json index b603a86..0265194 100644 --- a/windows/route_exclusions_apps.json +++ b/windows/route_exclusions_apps.json @@ -413,10 +413,6 @@ { "type": "RegistryKey", "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Riot Game valorant.live" - }, - { - "type": "FilePath", - "pattern": "%PROGRAMFILES(x86)%\\Riot Games\\Riot Client\\RiotClientServices.exe" } ], "public_issue_url": "https://github.com/AdguardTeam/CompatibilityIssues/issues/68" @@ -434,10 +430,6 @@ "type": "RegistryKey", "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Riot Game league_of_legends.live" }, - { - "type": "RegistryKey", - "pattern": "HKEY_LOCAL_MACHINE\\Software\\Riot Games, Inc\\League of Legends" - }, { "type": "RegistryKey", "pattern": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Riot Games, Inc\\League of Legends" @@ -456,10 +448,6 @@ "type": "RegistryKey", "pattern": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\vgc" }, - { - "type": "RegistryKey", - "pattern": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Riot Vanguard" - }, { "type": "FilePath", "pattern": "%PROGRAMFILES%\\Riot Vanguard\\vgc.exe"