From e569b8c5f94377fe0aeea84f37b622ef1c0f40b2 Mon Sep 17 00:00:00 2001 From: Fela Ameghino Date: Thu, 9 Feb 2017 20:28:46 +0100 Subject: [PATCH] Windows URI association fix (#2957) Signed-off-by: Fela Ameghino (github: frayxrulez) --- Telegram/SourceFiles/pspecific_win.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Telegram/SourceFiles/pspecific_win.cpp b/Telegram/SourceFiles/pspecific_win.cpp index a1c24375c..3d31f4881 100644 --- a/Telegram/SourceFiles/pspecific_win.cpp +++ b/Telegram/SourceFiles/pspecific_win.cpp @@ -813,6 +813,7 @@ void RegisterCustomScheme() { HKEY rkey; QString exe = QDir::toNativeSeparators(cExeDir() + cExeName()); + // Legacy URI scheme registration if (!_psOpenRegKey(L"Software\\Classes\\tg", &rkey)) return; if (!_psSetKeyValue(rkey, L"URL Protocol", QString())) return; if (!_psSetKeyValue(rkey, 0, qsl("URL:Telegram Link"))) return; @@ -824,6 +825,26 @@ void RegisterCustomScheme() { if (!_psOpenRegKey(L"Software\\Classes\\tg\\shell\\open", &rkey)) return; if (!_psOpenRegKey(L"Software\\Classes\\tg\\shell\\open\\command", &rkey)) return; if (!_psSetKeyValue(rkey, 0, '"' + exe + qsl("\" -workdir \"") + cWorkingDir() + qsl("\" -- \"%1\""))) return; + + // URI scheme registration as Default Program - Windows Vista and above + if (!_psOpenRegKey(L"Software\\Classes\\tdesktop.tg", &rkey)) return; + if (!_psOpenRegKey(L"Software\\Classes\\tdesktop.tg\\DefaultIcon", &rkey)) return; + if (!_psSetKeyValue(rkey, 0, '"' + exe + qsl(",1\""))) return; + + if (!_psOpenRegKey(L"Software\\Classes\\tdesktop.tg\\shell", &rkey)) return; + if (!_psOpenRegKey(L"Software\\Classes\\tdesktop.tg\\shell\\open", &rkey)) return; + if (!_psOpenRegKey(L"Software\\Classes\\tdesktop.tg\\shell\\open\\command", &rkey)) return; + if (!_psSetKeyValue(rkey, 0, '"' + exe + qsl("\" -workdir \"") + cWorkingDir() + qsl("\" -- \"%1\""))) return; + + if (!_psOpenRegKey(L"Software\\TelegramDesktop", &rkey)) return; + if (!_psOpenRegKey(L"Software\\TelegramDesktop\\Capabilities", &rkey)) return; + if (!_psSetKeyValue(rkey, L"ApplicationName", qls("Telegram Desktop"))) return; + if (!_psSetKeyValue(rkey, L"ApplicationDescription", qls("Telegram Desktop"))) return; + if (!_psOpenRegKey(L"Software\\TelegramDesktop\\Capabilities\\UrlAssociations", &rkey)) return; + if (!_psSetKeyValue(rkey, L"tg", qls("tdesktop.tg"))) return; + + if (!_psOpenRegKey(L"Software\\RegisteredApplications", &rkey)) return; + if (!_psSetKeyValue(key, L"Telegram Desktop", qls("SOFTWARE\\TelegramDesktop\\Capabilities"))) return; #endif // !TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME }