mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-02-20 23:27:23 +00:00
Merge branch 'master' of https://github.com/telegramdesktop/tdesktop
This commit is contained in:
commit
4cb22530ae
@ -110,7 +110,6 @@ Application::Application(int &argc, char **argv) : PsApplication(argc, argv),
|
||||
}
|
||||
mainApp = this;
|
||||
|
||||
|
||||
installEventFilter(new EventFilterForKeys(this));
|
||||
|
||||
QFontDatabase::addApplicationFont(qsl(":/gui/art/fonts/OpenSans-Regular.ttf"));
|
||||
@ -655,7 +654,6 @@ void Application::socketError(QLocalSocket::LocalSocketError e) {
|
||||
|
||||
void Application::checkMapVersion() {
|
||||
if (Local::oldMapVersion() < AppVersion) {
|
||||
psRegisterCustomScheme();
|
||||
if (Local::oldMapVersion()) {
|
||||
QString versionFeatures;
|
||||
if (cDevVersion() && Local::oldMapVersion() < 8049) {
|
||||
|
@ -541,7 +541,7 @@ namespace {
|
||||
int32 _storageImagesSize = 0, _storageStickersSize = 0, _storageAudiosSize = 0;
|
||||
|
||||
bool _mapChanged = false;
|
||||
int32 _oldMapVersion = 0;
|
||||
int32 _oldMapVersion = 0, _oldSettingsVersion = 0;
|
||||
|
||||
enum WriteMapWhen {
|
||||
WriteMapNow,
|
||||
@ -1573,6 +1573,9 @@ namespace {
|
||||
_readMtpData();
|
||||
|
||||
LOG(("Map read time: %1").arg(getms() - ms));
|
||||
if (_oldSettingsVersion < AppVersion) {
|
||||
Local::writeSettings();
|
||||
}
|
||||
return Local::ReadMapDone;
|
||||
}
|
||||
|
||||
@ -1820,6 +1823,7 @@ namespace Local {
|
||||
cSetDcOptions(dcOpts);
|
||||
}
|
||||
|
||||
_oldSettingsVersion = settingsData.version;
|
||||
_settingsSalt = salt;
|
||||
}
|
||||
|
||||
@ -1962,6 +1966,10 @@ namespace Local {
|
||||
return _oldMapVersion;
|
||||
}
|
||||
|
||||
int32 oldSettingsVersion() {
|
||||
return _oldSettingsVersion;
|
||||
}
|
||||
|
||||
void writeDraft(const PeerId &peer, const MessageDraft &draft) {
|
||||
if (!_working()) return;
|
||||
|
||||
|
@ -100,6 +100,8 @@ namespace Local {
|
||||
ReadMapState readMap(const QByteArray &pass);
|
||||
int32 oldMapVersion();
|
||||
|
||||
int32 oldSettingsVersion();
|
||||
|
||||
struct MessageDraft {
|
||||
MessageDraft(MsgId replyTo = 0, QString text = QString(), bool previewCancelled = false) : replyTo(replyTo), text(text), previewCancelled(previewCancelled) {
|
||||
}
|
||||
|
@ -39,6 +39,9 @@ int main(int argc, char *argv[]) {
|
||||
logsInit();
|
||||
|
||||
Local::readSettings();
|
||||
if (Local::oldSettingsVersion() < AppVersion) {
|
||||
psNewVersion();
|
||||
}
|
||||
if (cFromAutoStart() && !cAutoStart()) {
|
||||
psAutoStart(false, true);
|
||||
Local::stop();
|
||||
|
@ -1249,6 +1249,10 @@ void psRegisterCustomScheme() {
|
||||
}
|
||||
}
|
||||
|
||||
void psNewVersion() {
|
||||
psRegisterCustomScheme();
|
||||
}
|
||||
|
||||
bool _execUpdater(bool update = true) {
|
||||
static const int MaxLen = 65536, MaxArgsCount = 128;
|
||||
|
||||
|
@ -163,7 +163,7 @@ void psShowInFolder(const QString &name);
|
||||
void psStart();
|
||||
void psFinish();
|
||||
|
||||
void psRegisterCustomScheme();
|
||||
void psNewVersion();
|
||||
|
||||
void psUpdateOverlayed(QWidget *widget);
|
||||
inline QString psConvertFileUrl(const QString &url) {
|
||||
|
@ -653,7 +653,7 @@ void psFinish() {
|
||||
objc_finish();
|
||||
}
|
||||
|
||||
void psRegisterCustomScheme() {
|
||||
void psNewVersion() {
|
||||
objc_registerCustomScheme();
|
||||
}
|
||||
|
||||
|
@ -193,7 +193,7 @@ void psShowInFolder(const QString &name);
|
||||
void psStart();
|
||||
void psFinish();
|
||||
|
||||
void psRegisterCustomScheme();
|
||||
void psNewVersion();
|
||||
|
||||
void psUpdateOverlayed(QWidget *widget);
|
||||
QString psConvertFileUrl(const QString &url);
|
||||
|
@ -1197,6 +1197,7 @@ void PsMainWindow::psInitSize() {
|
||||
|
||||
bool InitToastManager();
|
||||
bool CreateToast(PeerData *peer, int32 msgId, bool showpix, const QString &title, const QString &subtitle, const QString &msg);
|
||||
void CheckPinnedAppUserModelId();
|
||||
void CleanupAppUserModelIdShortcut();
|
||||
|
||||
void PsMainWindow::psInitFrameless() {
|
||||
@ -2197,9 +2198,7 @@ namespace {
|
||||
}
|
||||
}
|
||||
|
||||
void psRegisterCustomScheme() {
|
||||
|
||||
|
||||
void RegisterCustomScheme() {
|
||||
DEBUG_LOG(("App Info: Checking custom scheme 'tg'.."));
|
||||
|
||||
HKEY rkey;
|
||||
@ -2218,6 +2217,11 @@ void psRegisterCustomScheme() {
|
||||
if (!_psSetKeyValue(rkey, 0, '"' + exe + qsl("\" -workdir \"") + cWorkingDir() + qsl("\" -- \"%1\""))) return;
|
||||
}
|
||||
|
||||
void psNewVersion() {
|
||||
RegisterCustomScheme();
|
||||
CheckPinnedAppUserModelId();
|
||||
}
|
||||
|
||||
void psExecUpdater() {
|
||||
QString targs = qsl("-update");
|
||||
if (cFromAutoStart()) targs += qsl(" -autostart");
|
||||
@ -2805,6 +2809,120 @@ bool CreateToast(PeerData *peer, int32 msgId, bool showpix, const QString &title
|
||||
return true;
|
||||
}
|
||||
|
||||
QString pinnedPath() {
|
||||
static const int maxFileLen = MAX_PATH * 10;
|
||||
WCHAR wstrPath[maxFileLen];
|
||||
if (GetEnvironmentVariable(L"APPDATA", wstrPath, maxFileLen)) {
|
||||
QDir appData(QString::fromStdWString(std::wstring(wstrPath)));
|
||||
return appData.absolutePath() + qsl("/Microsoft/Internet Explorer/Quick Launch/User Pinned/TaskBar/");
|
||||
}
|
||||
return QString();
|
||||
}
|
||||
|
||||
void CheckPinnedAppUserModelId() {
|
||||
static const int maxFileLen = MAX_PATH * 10;
|
||||
|
||||
HRESULT hr = CoInitialize(0);
|
||||
if (!SUCCEEDED(hr)) return;
|
||||
|
||||
QString path = pinnedPath();
|
||||
std::wstring p = QDir::toNativeSeparators(path).toStdWString();
|
||||
|
||||
WCHAR src[MAX_PATH];
|
||||
GetModuleFileNameEx(GetCurrentProcess(), nullptr, src, MAX_PATH);
|
||||
BY_HANDLE_FILE_INFORMATION srcinfo = { 0 };
|
||||
HANDLE srcfile = CreateFile(src, 0x00, 0x00, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
||||
if (srcfile == INVALID_HANDLE_VALUE) return;
|
||||
BOOL srcres = GetFileInformationByHandle(srcfile, &srcinfo);
|
||||
CloseHandle(srcfile);
|
||||
if (!srcres) return;
|
||||
LOG(("Checking.."));
|
||||
WIN32_FIND_DATA findData;
|
||||
HANDLE findHandle = FindFirstFileEx((p + L"*").c_str(), FindExInfoStandard, &findData, FindExSearchNameMatch, 0, 0);
|
||||
if (findHandle == INVALID_HANDLE_VALUE) {
|
||||
LOG(("Init Error: could not find files in pinned folder"));
|
||||
return;
|
||||
}
|
||||
do {
|
||||
std::wstring fname = p + findData.cFileName;
|
||||
LOG(("Checking %1").arg(QString::fromStdWString(fname)));
|
||||
if (findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
|
||||
continue;
|
||||
} else {
|
||||
DWORD attributes = GetFileAttributes(fname.c_str());
|
||||
if (attributes >= 0xFFFFFFF) continue; // file does not exist
|
||||
|
||||
ComPtr<IShellLink> shellLink;
|
||||
HRESULT hr = CoCreateInstance(CLSID_ShellLink, nullptr, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&shellLink));
|
||||
if (!SUCCEEDED(hr)) continue;
|
||||
|
||||
ComPtr<IPersistFile> persistFile;
|
||||
hr = shellLink.As(&persistFile);
|
||||
if (!SUCCEEDED(hr)) continue;
|
||||
|
||||
hr = persistFile->Load(fname.c_str(), STGM_READWRITE);
|
||||
if (!SUCCEEDED(hr)) continue;
|
||||
|
||||
WCHAR dst[MAX_PATH];
|
||||
hr = shellLink->GetPath(dst, MAX_PATH, 0, 0);
|
||||
if (!SUCCEEDED(hr)) continue;
|
||||
|
||||
BY_HANDLE_FILE_INFORMATION dstinfo = { 0 };
|
||||
HANDLE dstfile = CreateFile(dst, 0x00, 0x00, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
||||
if (dstfile == INVALID_HANDLE_VALUE) continue;
|
||||
BOOL dstres = GetFileInformationByHandle(dstfile, &dstinfo);
|
||||
CloseHandle(dstfile);
|
||||
if (!dstres) continue;
|
||||
|
||||
if (srcinfo.dwVolumeSerialNumber == dstinfo.dwVolumeSerialNumber && srcinfo.nFileIndexLow == dstinfo.nFileIndexLow && srcinfo.nFileIndexHigh == dstinfo.nFileIndexHigh) {
|
||||
ComPtr<IPropertyStore> propertyStore;
|
||||
hr = shellLink.As(&propertyStore);
|
||||
if (!SUCCEEDED(hr)) return;
|
||||
|
||||
PROPVARIANT appIdPropVar;
|
||||
hr = propertyStore->GetValue(pkey_AppUserModel_ID, &appIdPropVar);
|
||||
if (!SUCCEEDED(hr)) return;
|
||||
LOG(("Reading.."));
|
||||
WCHAR already[MAX_PATH];
|
||||
hr = propVariantToString(appIdPropVar, already, MAX_PATH);
|
||||
if (SUCCEEDED(hr)) {
|
||||
if (std::wstring(AppUserModelId) == already) {
|
||||
LOG(("Already!"));
|
||||
PropVariantClear(&appIdPropVar);
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (appIdPropVar.vt != VT_EMPTY) {
|
||||
PropVariantClear(&appIdPropVar);
|
||||
return;
|
||||
}
|
||||
PropVariantClear(&appIdPropVar);
|
||||
|
||||
hr = InitPropVariantFromString(AppUserModelId, &appIdPropVar);
|
||||
if (!SUCCEEDED(hr)) return;
|
||||
|
||||
hr = propertyStore->SetValue(pkey_AppUserModel_ID, appIdPropVar);
|
||||
PropVariantClear(&appIdPropVar);
|
||||
if (!SUCCEEDED(hr)) return;
|
||||
|
||||
hr = propertyStore->Commit();
|
||||
if (!SUCCEEDED(hr)) return;
|
||||
|
||||
if (persistFile->IsDirty() == S_OK) {
|
||||
persistFile->Save(fname.c_str(), TRUE);
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
} while (FindNextFile(findHandle, &findData));
|
||||
DWORD errorCode = GetLastError();
|
||||
if (errorCode && errorCode != ERROR_NO_MORE_FILES) { // everything is found
|
||||
LOG(("Init Error: could not find some files in pinned folder"));
|
||||
return;
|
||||
}
|
||||
FindClose(findHandle);
|
||||
}
|
||||
|
||||
QString systemShortcutPath() {
|
||||
static const int maxFileLen = MAX_PATH * 10;
|
||||
WCHAR wstrPath[maxFileLen];
|
||||
@ -2963,7 +3081,6 @@ bool ValidateAppUserModelIdShortcut() {
|
||||
|
||||
bool InitToastManager() {
|
||||
if (!useToast || !ValidateAppUserModelIdShortcut()) return false;
|
||||
|
||||
if (!SUCCEEDED(setCurrentProcessExplicitAppUserModelID(AppUserModelId))) {
|
||||
return false;
|
||||
}
|
||||
|
@ -168,7 +168,7 @@ void psShowInFolder(const QString &name);
|
||||
void psStart();
|
||||
void psFinish();
|
||||
|
||||
void psRegisterCustomScheme();
|
||||
void psNewVersion();
|
||||
|
||||
void psUpdateOverlayed(TWidget *widget);
|
||||
inline QString psConvertFileUrl(const QString &url) {
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -22,7 +22,7 @@ contains(QT_CONFIG, xkbcommon-qt): {
|
||||
QT_CONFIG -= use-xkbcommon-x11support
|
||||
# include(../../../3rdparty/xkbcommon.pri)
|
||||
} else {
|
||||
# LIBS += $$QMAKE_LIBS_XKBCOMMON
|
||||
LIBS += $$QMAKE_LIBS_XKBCOMMON
|
||||
QMAKE_CXXFLAGS += $$QMAKE_CFLAGS_XKBCOMMON
|
||||
}
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -35,4 +35,4 @@ HEADERS += $$PWD/fcitxqtconnection.h \
|
||||
$$PWD/qfcitxplatforminputcontext.h \
|
||||
$$PWD/utils.h
|
||||
|
||||
OTHER_FILES += $$PWD/fcitx.jsn
|
||||
OTHER_FILES += $$PWD/fcitx.json
|
||||
|
Loading…
Reference in New Issue
Block a user