From 64cb082afa39ce10d0f4e2f9fbc6af152f01bba6 Mon Sep 17 00:00:00 2001 From: AlexandrPkhm Date: Tue, 18 Aug 2026 13:52:52 +0400 Subject: [PATCH] fix: correct Tabbit Browser executable name and file description The entry used Tabbit.exe (the binary is actually Tabbit Browser.exe) and a file_description that only matched one regional build. The intl build reports "Tabbit" while the CN build reports "Tabbit Browser", so use an empty file_description to match both. --- windows/browsers.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/windows/browsers.json b/windows/browsers.json index b040662..0642c2f 100644 --- a/windows/browsers.json +++ b/windows/browsers.json @@ -1281,9 +1281,9 @@ }, { "name": "Tabbit Browser", - "file_description": "Tabbit Browser", + "file_description": "", "executable_names": [ - "Tabbit.exe" + "Tabbit Browser.exe" ], "installed_conditions": [ { @@ -1292,11 +1292,11 @@ }, { "type": "RegistryKey", - "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Tabbit.exe" + "pattern": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Tabbit Browser.exe" }, { "type": "FilePath", - "pattern": "%LOCALAPPDATA%\\Tabbit\\Application\\Tabbit.exe" + "pattern": "%LOCALAPPDATA%\\Tabbit\\Application\\Tabbit Browser.exe" } ] },