CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 1.2.20) (push) Waiting to run
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 2.0.11) (push) Waiting to run
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 1.2.20) (push) Waiting to run
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 2.0.11) (push) Waiting to run
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 1.2.20) (push) Has been cancelled
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 2.0.11) (push) Has been cancelled
When running Python via QProcess on Windows, the output code page will be set to the system default instead of UTF-8.
This commit enforces that UTF-8 will be used unconditionally.
Supersedes #23629.
PR #23633.
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 1.2.20) (push) Waiting to run
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 2.0.11) (push) Waiting to run
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 1.2.20) (push) Has been cancelled
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 2.0.11) (push) Has been cancelled
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 1.2.20) (push) Has been cancelled
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 2.0.11) (push) Has been cancelled
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 1.2.20) (push) Has been cancelled
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 2.0.11) (push) Has been cancelled
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 1.2.20) (push) Has been cancelled
CI - Windows / Build (${{ matrix.libt_version }}, ${{ matrix.config.arch }}) (map[arch:x64 os:windows-latest qt_arch:win64_msvc2022_64], 2.0.11) (push) Has been cancelled
So the GUI won't hang when the calculation took a long time.
Note that it is not possible to cancel the calculation so it will always run until finish in the background.
Supersedes #23497.
PR #23584.
This reverts commit 530c7d1bbd.
The installer uses the `UAC` plugin which creates two instances of the
installer when launched. One runs with admin privileges while the other
with user privileges. Creating a mutex in the first instance stops the
other one from continuing.
PR #23540
The default from Qt was `99.99` which could be too small for some.
The new limit is `INT_MAX` (not `DOUBLE_MAX`) as to hide the rounding/approximation errors from the user.
PR #23559.
This change only affects forked repository.
Previously ccache was only enabled on `master` branch regardless of the owner of the repository.
This is not ideal for forked repository where the owner (mostly) wants to run the GHA CI to
create binary for their own use and ccache couldn't be utilized. This change will enable
ccache by default for all non-official repositories.
PR #23558.
This commit implements a new "Reboot System" option that allows users to automatically reboot the computer when all downloads are complete, similar to the existing shutdown, suspend, and hibernate options.
Closes#10774.
PR #23525.
And remove a few redundant properties as they are the same as the default value (or they have the same effect as using the default value).
Closes#23465.
PR #23528.
* This PR added an undocumented function `ManifestDPIAwareness` and enable `PerMonitorV2` support (requires Win10 1703+)
691211035c/Docs/src/attributes.but (L290-L292)
* Remove `XPStyle` because this function do nothing on NSIS 3.x
PR #23426.
If a process is an orphan (without a parent) then the process won't exit when qbt exits and
the process will be still running. This is unwanted behavior.
PR #23422.