From 6ceb987e7eec34ab3573d59b103e6404a0b1793c Mon Sep 17 00:00:00 2001 From: nerix Date: Sun, 10 Nov 2024 19:51:45 +0100 Subject: [PATCH 1/7] fix: update channel-view when pausing (#5707) --- CHANGELOG.md | 1 + src/widgets/helper/ChannelView.cpp | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca72b9ab939..8ca06e5d1b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -71,6 +71,7 @@ - Bugfix: Fixed 7TV emotes messing with Qt's HTML. (#5677) - Bugfix: Fixed incorrect messages getting replaced visually. (#5683) - Bugfix: Fixed rendering of multi-line selection that starts at a trailing space. (#5691) +- Bugfix: Fixed pause indicator not appearing in certain cases. (#5707) - Dev: Update Windows build from Qt 6.5.0 to Qt 6.7.1. (#5420) - Dev: Update vcpkg build Qt from 6.5.0 to 6.7.0, boost from 1.83.0 to 1.85.0, openssl from 3.1.3 to 3.3.0. (#5422) - Dev: Unsingletonize `ISoundController`. (#5462) diff --git a/src/widgets/helper/ChannelView.cpp b/src/widgets/helper/ChannelView.cpp index 22cb629c470..c7ee929c208 100644 --- a/src/widgets/helper/ChannelView.cpp +++ b/src/widgets/helper/ChannelView.cpp @@ -474,6 +474,8 @@ bool ChannelView::paused() const void ChannelView::pause(PauseReason reason, std::optional msecs) { + bool wasUnpaused = !this->paused(); + if (msecs) { /// Msecs has a value @@ -504,6 +506,11 @@ void ChannelView::pause(PauseReason reason, std::optional msecs) } this->updatePauses(); + + if (wasUnpaused) + { + this->update(); + } } void ChannelView::unpause(PauseReason reason) From 63f363e5a98eb2c6ff76d9e0e813581a6fed716a Mon Sep 17 00:00:00 2001 From: Ilya Zlobintsev Date: Tue, 12 Nov 2024 16:41:12 +0200 Subject: [PATCH 2/7] Deduplicate emotes by name in smart tab emote completion strategy (#5705) --- CHANGELOG.md | 1 + src/controllers/completion/TabCompletionModel.cpp | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ca06e5d1b2..f84cf33606f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,7 @@ - Minor: Tabs unhighlight when their content is read in other tabs. (#5649) - Minor: Made usernames in bits and sub messages clickable. (#5686) - Minor: Mentions of FrankerFaceZ and BetterTTV in settings are standardized as such. (#5698) +- Minor: Emote names are no longer duplicated when using smarter emote completion. (#5705) - Bugfix: Fixed tab move animation occasionally failing to start after closing a tab. (#5426, #5612) - Bugfix: If a network request errors with 200 OK, Qt's error code is now reported instead of the HTTP status. (#5378) - Bugfix: Fixed restricted users usernames not being clickable. (#5405) diff --git a/src/controllers/completion/TabCompletionModel.cpp b/src/controllers/completion/TabCompletionModel.cpp index 585fe3a08fa..829fe8e82c0 100644 --- a/src/controllers/completion/TabCompletionModel.cpp +++ b/src/controllers/completion/TabCompletionModel.cpp @@ -43,11 +43,15 @@ void TabCompletionModel::updateResults(const QString &query, query, fullTextContent, cursorPosition, isFirstWord); if (done) { + auto uniqueResults = std::unique(results.begin(), results.end()); + results.erase(uniqueResults, results.end()); this->setStringList(results); return; } #endif this->source_->addToStringList(results, 0, isFirstWord); + auto uniqueResults = std::unique(results.begin(), results.end()); + results.erase(uniqueResults, results.end()); this->setStringList(results); } } From eeb797c03f27fb7ebfd47b33a53fe0e61a7dfbe1 Mon Sep 17 00:00:00 2001 From: nerix Date: Tue, 12 Nov 2024 23:20:40 +0100 Subject: [PATCH 3/7] chore: keep GDI fontengine on Windows for now (#5710) --- CHANGELOG.md | 1 + CMakeLists.txt | 1 + cmake/resources/generate_resources.cmake | 9 +++++++++ cmake/resources/qt.conf.in | 2 ++ cmake/resources/resources_autogenerated.qrc.in | 3 +++ resources/.gitignore | 1 + resources/qt.conf | 2 -- resources/resources.qrc | 5 ----- src/CMakeLists.txt | 2 -- 9 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 cmake/resources/qt.conf.in delete mode 100644 resources/qt.conf delete mode 100644 resources/resources.qrc diff --git a/CHANGELOG.md b/CHANGELOG.md index f84cf33606f..ea1939fbb25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -129,6 +129,7 @@ - Dev: Fixed some compiler warnings. (#5672) - Dev: Unified parsing of historic and live IRC messages. (#5678) - Dev: 7TV's `entitlement.reset` is now explicitly ignored. (#5685) +- Dev: Qt 6.8 and later now default to the GDI fontengine. (#5710) ## 2.5.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 37c8835b812..c3f57d474b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,6 +32,7 @@ option(BUILD_TRANSLATIONS "" OFF) option(BUILD_SHARED_LIBS "" OFF) option(CHATTERINO_LTO "Enable LTO for all targets" OFF) option(CHATTERINO_PLUGINS "Enable ALPHA plugin support in Chatterino" OFF) +option(CHATTERINO_USE_GDI_FONTENGINE "Use the legacy GDI fontengine instead of the new DirectWrite one on Windows (Qt 6.8.0 and later)" ON) option(CHATTERINO_UPDATER "Enable update checks" ON) mark_as_advanced(CHATTERINO_UPDATER) diff --git a/cmake/resources/generate_resources.cmake b/cmake/resources/generate_resources.cmake index 0bd28a80e3c..df227a7d695 100644 --- a/cmake/resources/generate_resources.cmake +++ b/cmake/resources/generate_resources.cmake @@ -88,6 +88,15 @@ if (WIN32) list(APPEND RES_AUTOGEN_FILES "${CMAKE_BINARY_DIR}/autogen/windows.rc") endif () +set(WINDOWS_ARGUMENTS "@Invalid()") # empty QVariant() in QSettings +if (CHATTERINO_USE_GDI_FONTENGINE AND Qt${MAJOR_QT_VERSION}_VERSION VERSION_GREATER_EQUAL "6.8.0") + message(STATUS "Using legacy GDI fontengine") + set(WINDOWS_ARGUMENTS "fontengine=gdi") +endif () + +configure_file("${CMAKE_CURRENT_LIST_DIR}/qt.conf.in" "${CMAKE_SOURCE_DIR}/resources/qt.conf") +list(APPEND RES_AUTOGEN_FILES "${CMAKE_SOURCE_DIR}/resources/qt.conf") + list(APPEND RES_AUTOGEN_FILES "${CMAKE_SOURCE_DIR}/resources/resources_autogenerated.qrc" "${CMAKE_BINARY_DIR}/autogen/ResourcesAutogen.cpp" diff --git a/cmake/resources/qt.conf.in b/cmake/resources/qt.conf.in new file mode 100644 index 00000000000..4706fdcc481 --- /dev/null +++ b/cmake/resources/qt.conf.in @@ -0,0 +1,2 @@ +[Platforms] +WindowsArguments = ${WINDOWS_ARGUMENTS} diff --git a/cmake/resources/resources_autogenerated.qrc.in b/cmake/resources/resources_autogenerated.qrc.in index cce67fae913..9e28de4a68b 100644 --- a/cmake/resources/resources_autogenerated.qrc.in +++ b/cmake/resources/resources_autogenerated.qrc.in @@ -6,4 +6,7 @@ @RES_RESOURCES_CONTENT@ + + qt.conf + \ No newline at end of file diff --git a/resources/.gitignore b/resources/.gitignore index 1d38bf35715..5402f76fb70 100644 --- a/resources/.gitignore +++ b/resources/.gitignore @@ -1 +1,2 @@ linuxinstall +/qt.conf diff --git a/resources/qt.conf b/resources/qt.conf deleted file mode 100644 index 310dd86abee..00000000000 --- a/resources/qt.conf +++ /dev/null @@ -1,2 +0,0 @@ -[Platforms] -WindowArguments = dpiawareness=2 diff --git a/resources/resources.qrc b/resources/resources.qrc deleted file mode 100644 index 8568b5032a7..00000000000 --- a/resources/resources.qrc +++ /dev/null @@ -1,5 +0,0 @@ - - - qt.conf - - diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 631239533be..04b863c7995 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -740,8 +740,6 @@ set(SOURCE_FILES widgets/splits/SplitInput.hpp widgets/splits/SplitOverlay.cpp widgets/splits/SplitOverlay.hpp - - ${CMAKE_SOURCE_DIR}/resources/resources.qrc ) if (APPLE) From 6b5cc5f8d95192a6658d96c51991aeda5b9df130 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 11:18:05 +0100 Subject: [PATCH 4/7] chore(deps): bump codecov/codecov-action from 4.6.0 to 5.0.0 (#5713) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.6.0 to 5.0.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.6.0...v5.0.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 472aeb76076..9da4b6e6cfd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -98,7 +98,7 @@ jobs: working-directory: build-test - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.6.0 + uses: codecov/codecov-action@v5.0.0 with: token: ${{ secrets.CODECOV_TOKEN }} plugin: gcov From 50b51b23513461084f8b01925c792377c893dd28 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sun, 17 Nov 2024 11:57:54 +0100 Subject: [PATCH 5/7] fix: codecov v5 (#5715) --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9da4b6e6cfd..d8bbe207e04 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -101,6 +101,6 @@ jobs: uses: codecov/codecov-action@v5.0.0 with: token: ${{ secrets.CODECOV_TOKEN }} - plugin: gcov + plugins: gcov fail_ci_if_error: true verbose: true From 9e73ba2919c86ae3f3ce0abac059ed599ab0365c Mon Sep 17 00:00:00 2001 From: pajlada Date: Sun, 17 Nov 2024 12:39:22 +0100 Subject: [PATCH 6/7] dev: Default building with Qt6 on all platforms (#5716) --- .CI/full-ubuntu-build.sh | 1 - .CI/setup-clang-tidy.sh | 1 - .cirrus.yml | 1 - .docker/Dockerfile-ubuntu-22.04-qt6-build | 2 -- .github/workflows/build.yml | 2 -- .github/workflows/test.yml | 2 -- BUILDING_ON_FREEBSD.md | 2 +- BUILDING_ON_LINUX.md | 2 +- BUILDING_ON_MAC.md | 4 ++-- CHANGELOG.md | 1 + CMakeLists.txt | 6 +----- 11 files changed, 6 insertions(+), 18 deletions(-) diff --git a/.CI/full-ubuntu-build.sh b/.CI/full-ubuntu-build.sh index 5c2e9f801b3..114c3ffda62 100755 --- a/.CI/full-ubuntu-build.sh +++ b/.CI/full-ubuntu-build.sh @@ -29,7 +29,6 @@ cmake \ -DCMAKE_EXPORT_COMPILE_COMMANDS=On \ -DCHATTERINO_PLUGINS="$C2_PLUGINS" \ -DCMAKE_PREFIX_PATH="$Qt6_DIR/lib/cmake" \ - -DBUILD_WITH_QT6="$C2_BUILD_WITH_QT6" \ -DCHATTERINO_STATIC_QT_BUILD=On \ -DCMAKE_CXX_FLAGS="-fno-sized-deallocation" \ . diff --git a/.CI/setup-clang-tidy.sh b/.CI/setup-clang-tidy.sh index 4884285eb8e..0a9df6cf596 100755 --- a/.CI/setup-clang-tidy.sh +++ b/.CI/setup-clang-tidy.sh @@ -19,7 +19,6 @@ cmake -S. -Bbuild-clang-tidy \ -DCMAKE_EXPORT_COMPILE_COMMANDS=On \ -DCHATTERINO_LTO=Off \ -DCHATTERINO_PLUGINS=On \ - -DBUILD_WITH_QT6=On \ -DBUILD_TESTS=On \ -DBUILD_BENCHMARKS=On diff --git a/.cirrus.yml b/.cirrus.yml index d4ac409cd92..1183ff7129f 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -20,7 +20,6 @@ task: -DUSE_SYSTEM_QTKEYCHAIN="ON" \ -DCMAKE_BUILD_TYPE="release" \ -DCMAKE_EXPORT_COMPILE_COMMANDS="ON" \ - -DBUILD_WITH_QT6="ON" \ .. cat compile_commands.json make -j $(getconf _NPROCESSORS_ONLN) diff --git a/.docker/Dockerfile-ubuntu-22.04-qt6-build b/.docker/Dockerfile-ubuntu-22.04-qt6-build index 3fd5b8a20b4..bee6f5ec925 100644 --- a/.docker/Dockerfile-ubuntu-22.04-qt6-build +++ b/.docker/Dockerfile-ubuntu-22.04-qt6-build @@ -3,7 +3,6 @@ ARG UBUNTU_VERSION=22.04 FROM ubuntu:$UBUNTU_VERSION ARG QT_VERSION=6.2.4 -ARG BUILD_WITH_QT6=ON ENV TZ=UTC RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone @@ -48,7 +47,6 @@ RUN mkdir /src/build # cmake RUN cd /src/build && \ CXXFLAGS=-fno-sized-deallocation cmake \ - -DBUILD_WITH_QT6=$BUILD_WITH_QT6 \ -DCMAKE_INSTALL_PREFIX=appdir/usr/ \ -DCMAKE_PREFIX_PATH=/opt/qt/$QT_VERSION/gcc_64/lib/cmake \ -DBUILD_WITH_QTKEYCHAIN=OFF \ diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d01e876176d..ef5900cae36 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,7 +62,6 @@ jobs: C2_ENABLE_LTO: ${{ matrix.force-lto }} C2_PLUGINS: ${{ matrix.plugins }} C2_ENABLE_CRASHPAD: ${{ matrix.skip-crashpad == false }} - C2_BUILD_WITH_QT6: ${{ startsWith(matrix.qt-version, '6.') }} steps: - uses: actions/checkout@v4 @@ -87,7 +86,6 @@ jobs: -DCHATTERINO_LTO="$C2_ENABLE_LTO" \ -DCHATTERINO_PLUGINS="$C2_PLUGINS" \ -DCMAKE_PREFIX_PATH="$Qt6_DIR/lib/cmake" \ - -DBUILD_WITH_QT6="$C2_BUILD_WITH_QT6" \ -DCHATTERINO_STATIC_QT_BUILD=On \ .. make -j"$(nproc)" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d8bbe207e04..1ce616951ee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,6 @@ jobs: fail-fast: false env: C2_PLUGINS: ${{ matrix.plugins }} - C2_BUILD_WITH_QT6: ${{ startsWith(matrix.qt-version, '6.') }} steps: - uses: actions/checkout@v4 @@ -57,7 +56,6 @@ jobs: -DBUILD_APP=OFF \ -DCHATTERINO_PLUGINS="$C2_PLUGINS" \ -DCMAKE_PREFIX_PATH="$Qt6_DIR/lib/cmake" \ - -DBUILD_WITH_QT6="$C2_BUILD_WITH_QT6" \ -DCHATTERINO_STATIC_QT_BUILD=On \ -DCHATTERINO_GENERATE_COVERAGE=On \ -DCMAKE_BUILD_TYPE=Debug \ diff --git a/BUILDING_ON_FREEBSD.md b/BUILDING_ON_FREEBSD.md index 38b603a2c5c..a681dcb9500 100644 --- a/BUILDING_ON_FREEBSD.md +++ b/BUILDING_ON_FREEBSD.md @@ -17,7 +17,7 @@ FreeBSD 15.0-SNAP. ``` 1. Generate build files. To enable Lua plugins in your build add `-DCHATTERINO_PLUGINS=ON` to this command. ```sh - cmake -DBUILD_WITH_QT6=ON .. + cmake .. ``` 1. Build the project ```sh diff --git a/BUILDING_ON_LINUX.md b/BUILDING_ON_LINUX.md index 51317ecd1ff..104a41e2baa 100644 --- a/BUILDING_ON_LINUX.md +++ b/BUILDING_ON_LINUX.md @@ -53,7 +53,7 @@ nix-shell -p openssl boost qt6.full pkg-config cmake ``` 1. Generate build files. To enable Lua plugins in your build add `-DCHATTERINO_PLUGINS=ON` to this command. ```sh - cmake -DBUILD_WITH_QT6=ON -DBUILD_WITH_QTKEYCHAIN=OFF .. + cmake -DBUILD_WITH_QTKEYCHAIN=OFF .. ``` 1. Build the project ```sh diff --git a/BUILDING_ON_MAC.md b/BUILDING_ON_MAC.md index d1fc018b90b..f7d31f2afab 100644 --- a/BUILDING_ON_MAC.md +++ b/BUILDING_ON_MAC.md @@ -10,7 +10,7 @@ Local dev machines for testing are available on Apple Silicon on macOS 13. 1. Install [Homebrew](https://brew.sh/#install) We use this for dependency management on macOS 1. Install all dependencies: - `brew install boost openssl@1.1 rapidjson cmake qt@5` + `brew install boost openssl@3 rapidjson cmake qt@6` ## Building @@ -21,7 +21,7 @@ Local dev machines for testing are available on Apple Silicon on macOS 13. 1. Create a build directory and go into it: `mkdir build && cd build` 1. Run CMake. To enable Lua plugins in your build add `-DCHATTERINO_PLUGINS=ON` to this command. - `cmake -DCMAKE_PREFIX_PATH=/opt/homebrew/opt/qt@5 -DOPENSSL_ROOT_DIR=/opt/homebrew/opt/openssl@1.1 ..` + `cmake -DCMAKE_PREFIX_PATH=/opt/homebrew/opt/qt@6 ..` 1. Build: `make` diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1939fbb25..9b3d80fd5f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -73,6 +73,7 @@ - Bugfix: Fixed incorrect messages getting replaced visually. (#5683) - Bugfix: Fixed rendering of multi-line selection that starts at a trailing space. (#5691) - Bugfix: Fixed pause indicator not appearing in certain cases. (#5707) +- Dev: Default build with Qt6 on all platforms. (#5716) - Dev: Update Windows build from Qt 6.5.0 to Qt 6.7.1. (#5420) - Dev: Update vcpkg build Qt from 6.5.0 to 6.7.0, boost from 1.83.0 to 1.85.0, openssl from 3.1.3 to 3.3.0. (#5422) - Dev: Unsingletonize `ISoundController`. (#5462) diff --git a/CMakeLists.txt b/CMakeLists.txt index c3f57d474b9..da5eeed647a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,11 +21,7 @@ option(BUILD_WITH_QTKEYCHAIN "Build Chatterino with support for your system key option(USE_SYSTEM_MINIAUDIO "Build Chatterino with your system miniaudio" OFF) option(BUILD_WITH_CRASHPAD "Build chatterino with crashpad" OFF) option(USE_PRECOMPILED_HEADERS "Use precompiled headers" ON) -if(WIN32) - option(BUILD_WITH_QT6 "Build with Qt6, default on for Windows" On) -else() - option(BUILD_WITH_QT6 "Use Qt6 instead of default Qt5" OFF) -endif() +option(BUILD_WITH_QT6 "Build with Qt6" On) option(CHATTERINO_GENERATE_COVERAGE "Generate coverage files" OFF) # We don't use translations, and we don't want qtkeychain to build translations option(BUILD_TRANSLATIONS "" OFF) From 2215455ca0c5fffa1c05edb6d977740c38e7d638 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 12:05:55 +0000 Subject: [PATCH 7/7] chore(deps): bump jurplel/install-qt-action from 4.0.0 to 4.1.1 (#5709) --- .github/workflows/build.yml | 4 ++-- .github/workflows/clang-tidy.yml | 2 +- .github/workflows/test-macos.yml | 2 +- .github/workflows/test-windows.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ef5900cae36..4e8d26ad9ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -161,7 +161,7 @@ jobs: - name: Install Qt5 if: startsWith(matrix.qt-version, '5.') - uses: jurplel/install-qt-action@v4.0.0 + uses: jurplel/install-qt-action@v4.1.1 with: cache: true cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2 @@ -169,7 +169,7 @@ jobs: - name: Install Qt6 if: startsWith(matrix.qt-version, '6.') - uses: jurplel/install-qt-action@v4.0.0 + uses: jurplel/install-qt-action@v4.1.1 with: cache: true cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2 diff --git a/.github/workflows/clang-tidy.yml b/.github/workflows/clang-tidy.yml index 8f9214ab9c1..54111c29a81 100644 --- a/.github/workflows/clang-tidy.yml +++ b/.github/workflows/clang-tidy.yml @@ -30,7 +30,7 @@ jobs: - name: Install Qt6 if: startsWith(matrix.qt-version, '6.') - uses: jurplel/install-qt-action@v4.0.0 + uses: jurplel/install-qt-action@v4.1.1 with: cache: true cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2 diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 3eb1ef633a7..3d5fa5ed30b 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -48,7 +48,7 @@ jobs: fetch-depth: 0 # allows for tags access - name: Install Qt - uses: jurplel/install-qt-action@v4.0.0 + uses: jurplel/install-qt-action@v4.1.1 with: cache: true cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2 diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index b6b4c601439..40c03c3874a 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -58,7 +58,7 @@ jobs: fetch-depth: 0 # allows for tags access - name: Install Qt - uses: jurplel/install-qt-action@v4.0.0 + uses: jurplel/install-qt-action@v4.1.1 with: cache: true cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2