Compare commits

..
15 Commits
Author SHA1 Message Date
Bhushan Shah 1613a5f611 Update version for new release 6.7.4 2026-07-14 18:18:27 +05:30
Bhushan Shah 4761442255 Update version for new release 6.7.3 2026-07-14 15:52:31 +05:30
Bhushan Shah c34168ae86 Update version for new release 6.7.2 2026-06-23 16:14:06 +05:30
Bhushan Shah 223925da93 Update version for new release 6.7.1 2026-06-23 12:05:20 +05:30
Bhushan Shah 9629bb47f8 Update version for new release 6.7.0 2026-06-11 12:34:42 +05:30
Bhushan Shah d2326651ea Update version for new release 6.6.91 2026-05-28 11:13:32 +05:30
Bhushan Shah ebc42c56fb Update Frameworks version requirement to 6.26.0
GIT_SILENT
2026-05-27 23:12:31 +05:30
Bhushan Shah ba986ea573 Update version for new release 6.6.90 2026-05-14 13:30:54 +05:30
Bhushan Shah 8be764bb9a Update Frameworks version requirement to 6.24.0
GIT_SILENT
2026-05-14 12:40:04 +05:30
Vlad Zahorodnii aac600107a Fix spectacle crash
focusWindow may have no platform window.
2026-03-26 10:25:05 +00:00
Laurent Montel 9c02b52291 fix cmake warnings 2026-03-22 11:54:02 +01:00
David Redondo 15f108b536 Remove unneeded Qt version check 2026-03-02 10:46:31 +01:00
Vlad Zahorodnii dd76feea81 Add Window::screenConfiguration() shim
This shim is for 6.6 to maintain compatibility with previous versions.
2026-01-20 14:35:22 +02:00
Vlad Zahorodnii 430ad3630f Allow specifying explicit desired screen
If the window position is not specified, which is a reasonable thing to
do when using the layer shell protocol, setWidth() and setHeight() can
unintentionally change the screen() to the wrong one.

This change adds a setScreen() function so it's harder to shoot
yourself in the foot while using the layer shell protocol.
2026-01-20 14:12:23 +02:00
Bhushan Shah 68df285294 Update version for new release 6.6.80 2026-01-13 21:58:51 +05:30
4 changed files with 8 additions and 9 deletions
+3 -1
View File
@@ -5,6 +5,8 @@ include:
- project: sysadmin/ci-utilities - project: sysadmin/ci-utilities
file: file:
- /gitlab-templates/reuse-lint.yml - /gitlab-templates/reuse-lint.yml
- /gitlab-templates/linux-qt6-lts.yml - /gitlab-templates/linux-qt6.yml
- /gitlab-templates/freebsd-qt6.yml
- /gitlab-templates/xml-lint.yml - /gitlab-templates/xml-lint.yml
- /gitlab-templates/yaml-lint.yml - /gitlab-templates/yaml-lint.yml
- /gitlab-templates/linux-qt6-next.yml
+1 -1
View File
@@ -4,7 +4,7 @@
Dependencies: Dependencies:
- 'on': ['@all'] - 'on': ['@all']
'require': 'require':
'frameworks/extra-cmake-modules': 'Frameworks/6.24' 'frameworks/extra-cmake-modules': '@latest-kf6'
'third-party/wayland': '@latest' 'third-party/wayland': '@latest'
'third-party/wayland-protocols': '@latest' 'third-party/wayland-protocols': '@latest'
+3 -3
View File
@@ -4,13 +4,13 @@
cmake_minimum_required(VERSION 3.16) cmake_minimum_required(VERSION 3.16)
project(layershellqt) project(layershellqt)
set(PROJECT_VERSION "6.6.6") set(PROJECT_VERSION "6.7.4")
set(PROJECT_VERSION_MAJOR 6) set(PROJECT_VERSION_MAJOR 6)
set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD 99)
set(QT_MIN_VERSION "6.10.0") set(QT_MIN_VERSION "6.10.0")
set(KF6_MIN_VERSION "6.22.0") set(KF6_MIN_VERSION "6.26.0")
set(KDE_COMPILERSETTINGS_LEVEL "5.82") set(KDE_COMPILERSETTINGS_LEVEL "5.82")
set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD 20)
@@ -37,7 +37,7 @@ include(ECMGenerateExportHeader)
find_package(Qt6 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS WaylandClient Qml) find_package(Qt6 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS WaylandClient Qml)
if (Qt6WaylandClient_VERSION VERSION_GREATER_EQUAL "6.10.0") if (Qt6WaylandClient_VERSION VERSION_GREATER_EQUAL "6.10.0")
find_package(Qt6WaylandClientPrivate ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) find_package(Qt6WaylandClientPrivate ${QT_MIN_VERSION} REQUIRED NO_MODULE)
endif() endif()
find_package(WaylandScanner REQUIRED) find_package(WaylandScanner REQUIRED)
+1 -4
View File
@@ -7,11 +7,8 @@ add_library(LayerShellQtInterface)
qt6_extract_metatypes(LayerShellQtInterface) qt6_extract_metatypes(LayerShellQtInterface)
if (Qt6_VERSION VERSION_GREATER_EQUAL "6.8.0")
set(private_code_option "PRIVATE_CODE")
endif()
qt6_generate_wayland_protocol_client_sources(LayerShellQtInterface qt6_generate_wayland_protocol_client_sources(LayerShellQtInterface
${private_code_option} PRIVATE_CODE
FILES FILES
${WaylandProtocols_DATADIR}/stable/xdg-shell/xdg-shell.xml ${WaylandProtocols_DATADIR}/stable/xdg-shell/xdg-shell.xml
${WaylandProtocols_DATADIR}/staging/xdg-activation/xdg-activation-v1.xml ${WaylandProtocols_DATADIR}/staging/xdg-activation/xdg-activation-v1.xml