summaryrefslogtreecommitdiff
path: root/Source/Core/WinUpdater/WinUI.cpp
AgeCommit message (Collapse)Author
2024-08-20Remove redundant semicolonsDr. Dystopia
2023-04-15Embrace nullptr over NULL and 0get
2023-03-17WinUpdater: Quote path for args when relaunching Dolphin.Admiral H. Curtiss
2023-03-13Merge pull request #11636 from shuffle2/updater-testPierre Bourdon
Add test for Updater
2023-03-11winupdater: improve wording of UI::ErrorShawn Hoffman
2023-03-11updater: add test for update flowShawn Hoffman
currently windows-only
2022-09-20WinUpdater: Check OS and VC++ Redist versions.Shawn Hoffman
2021-07-05treewide: convert GPLv2+ license info to SPDX tagsPierre Bourdon
SPDX standardizes how source code conveys its copyright and licensing information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX tags are adopted in many large projects, including things like the Linux kernel.
2020-07-08Common: Rename UTF16ToUTF8JosJuice
This function does *not* always convert from UTF-16. It converts from UTF-16 on Windows and UTF-32 on other operating systems. Also renaming UTF8ToUTF16 for consistency, even though it technically doesn't have the same problem since it only was implemented on Windows.
2019-08-19WinUpdater: Properly initialize COM on window thread and release ↵Silent
ITaskbarList3 on exit
2019-08-06WinUpdater: Wait in UI::Init until window is done creating to avoid losing ↵Silent
UI::SetVisible signals
2019-08-05WinUpdater: Create updater window as hidden by defaultSilent
UpdaterCommon attempts to hide updater window directly after creating, so creating it hidden avoids the window from showing for a split second
2019-07-22WinUpdater: Properly account for failure in WaitForPIDSilent
2019-07-22WinUpdater: Improved exit synchronization on Windows - now joins a thread ↵Silent
instead of using flags to signal
2019-07-22WinUpdater: Replaced PeekMessage with GetMessage - removes a busy loop in ↵Silent
favour of a proper wait based message queue
2019-04-10Move Updater to WinUpdaterspycrab