x11/lxqt: update to 2.4.0.

see https://lxqt-project.org/release/2026/04/20/release-lxqt-2-4-0/
This commit is contained in:
landry
2026-05-06 13:31:00 +00:00
parent c515d33eab
commit f55321891b
81 changed files with 299 additions and 354 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
DIST_SUBDIR = lxqt
VERSION ?= 2.2.0
VERSION ?= 2.4.0
DISTNAME ?= ${NAME}-${VERSION}
+1 -1
View File
@@ -7,7 +7,7 @@ WANTLIB += Qt6Gui Qt6Svg Qt6Widgets Qt6Xdg Qt6XdgIconLoader Qt6Xml
WANTLIB += X11 c gio-2.0 glib-2.0 gobject-2.0 lxqt m
LIB_DEPENDS = devel/kf6/kwindowsystem \
x11/lxqt/liblxqt \
x11/lxqt/liblxqt>=${VERSION} \
x11/lxqt/libqtxdg \
x11/qt6/qtsvg
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-about-2.2.0.tar.xz) = xctOqhwFvjR6kg3Ml8eJJJnUg+fndrRjPjkLZ8Fs128=
SIZE (lxqt/lxqt-about-2.2.0.tar.xz) = 49428
SHA256 (lxqt/lxqt-about-2.4.0.tar.xz) = dyY90bNYJ5G3E0xZCiruZB+3Qj7l+JzwU3hSknZEX64=
SIZE (lxqt/lxqt-about-2.4.0.tar.xz) = 51016
+1
View File
@@ -39,6 +39,7 @@ share/lxqt/translations/lxqt-about/lxqt-about_it.qm
share/lxqt/translations/lxqt-about/lxqt-about_ja.qm
share/lxqt/translations/lxqt-about/lxqt-about_ka.qm
share/lxqt/translations/lxqt-about/lxqt-about_kab.qm
share/lxqt/translations/lxqt-about/lxqt-about_kk.qm
share/lxqt/translations/lxqt-about/lxqt-about_ko.qm
share/lxqt/translations/lxqt-about/lxqt-about_lg.qm
share/lxqt/translations/lxqt-about/lxqt-about_lt.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-build-tools-2.2.0.tar.xz) = EhThLKBlYcpyTmcJKuEmX90jEo/eRJ6dOwJ1yyoFHUM=
SIZE (lxqt/lxqt-build-tools-2.2.0.tar.xz) = 26088
SHA256 (lxqt/lxqt-build-tools-2.4.0.tar.xz) = FJmf+VToIKI69EOJuffGX55YsvHApVnwut04+bRZruY=
SIZE (lxqt/lxqt-build-tools-2.4.0.tar.xz) = 26924
+1 -1
View File
@@ -8,7 +8,6 @@ share/cmake/lxqt2-build-tools/find-modules/FindFontconfig.cmake
share/cmake/lxqt2-build-tools/find-modules/FindGLIB.cmake
share/cmake/lxqt2-build-tools/find-modules/FindMenuCache.cmake
share/cmake/lxqt2-build-tools/find-modules/FindUDev.cmake
share/cmake/lxqt2-build-tools/find-modules/FindXCB.cmake
share/cmake/lxqt2-build-tools/find-modules/FindXKBCommon.cmake
share/cmake/lxqt2-build-tools/find-modules/FindXTerm.cmake
share/cmake/lxqt2-build-tools/find-modules/FindXdgEmail.cmake
@@ -32,6 +31,7 @@ share/cmake/lxqt2-build-tools/modules/LXQtPreventInSourceBuilds.cmake
share/cmake/lxqt2-build-tools/modules/LXQtQueryQt.cmake
share/cmake/lxqt2-build-tools/modules/LXQtTranslate.cmake
share/cmake/lxqt2-build-tools/modules/LXQtTranslateDesktop.cmake
share/cmake/lxqt2-build-tools/modules/LXQtTranslateDesktop.sh
share/cmake/lxqt2-build-tools/modules/LXQtTranslateDesktopYaml.pl
share/cmake/lxqt2-build-tools/modules/LXQtTranslateTs.cmake
share/cmake/lxqt2-build-tools/modules/LXQtTranslationLoader.cmake
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-config-2.2.0.tar.xz) = UnsLOegVZFD49pvW5RbRAZOwfkkqiUV2EDbeRpkPMx4=
SIZE (lxqt/lxqt-config-2.2.0.tar.xz) = 402896
SHA256 (lxqt/lxqt-config-2.4.0.tar.xz) = iUOg1hmT4Gj6carIXrHrk6wyBkko7hyMH/lma0XhYQ4=
SIZE (lxqt/lxqt-config-2.4.0.tar.xz) = 416440
@@ -1,16 +0,0 @@
https://github.com/lxqt/lxqt-config/pull/1180
https://github.com/lxqt/lxqt-config/commit/85b4d3425508f83ebcfc19960d992abc979d8993
fix build with kscreen 6.6
Index: lxqt-config-monitor/monitorsettingsdialog.cpp
--- lxqt-config-monitor/monitorsettingsdialog.cpp.orig
+++ lxqt-config-monitor/monitorsettingsdialog.cpp
@@ -187,7 +187,7 @@ void MonitorSettingsDialog::saveConfiguration(KScreen:
monitor.connected = output->isConnected();
if ( output->isConnected() ) {
monitor.enabled = output->isEnabled();
- monitor.primary = output->isPrimary();
+ monitor.primary = (config->primaryOutput() == output);
monitor.xPos = output->pos().x();
monitor.yPos = output->pos().y();
monitor.currentMode = output->currentModeId();
@@ -1,16 +0,0 @@
https://github.com/lxqt/lxqt-config/pull/1180
https://github.com/lxqt/lxqt-config/commit/85b4d3425508f83ebcfc19960d992abc979d8993
fix build with kscreen 6.6
Index: lxqt-config-monitor/monitorwidget.cpp
--- lxqt-config-monitor/monitorwidget.cpp.orig
+++ lxqt-config-monitor/monitorwidget.cpp
@@ -146,7 +146,7 @@ MonitorWidget::MonitorWidget(KScreen::OutputPtr output
ui.yPosSpinBox->setValue(output->pos().y());
// Behavior chooser
- if (output->isPrimary())
+ if (config->primaryOutput() == output)
ui.behaviorCombo->setCurrentIndex(PrimaryDisplay);
else
ui.behaviorCombo->setCurrentIndex(ExtendDisplay);
+12
View File
@@ -17,7 +17,9 @@ share/applications/lxqt-config-brightness.desktop
share/applications/lxqt-config-file-associations.desktop
share/applications/lxqt-config-input.desktop
share/applications/lxqt-config-locale.desktop
share/applications/lxqt-config-monitor-autostart.desktop
share/applications/lxqt-config-monitor.desktop
share/applications/lxqt-config-touchpad-autostart.desktop
share/applications/lxqt-config.desktop
share/icons/hicolor/48x48/apps/brightnesssettings.svg
share/lxqt/
@@ -75,6 +77,7 @@ share/lxqt/translations/lxqt-config-appearance/lxqt-config-appearance_sl.qm
share/lxqt/translations/lxqt-config-appearance/lxqt-config-appearance_sr@latin.qm
share/lxqt/translations/lxqt-config-appearance/lxqt-config-appearance_sr_BA.qm
share/lxqt/translations/lxqt-config-appearance/lxqt-config-appearance_sr_RS.qm
share/lxqt/translations/lxqt-config-appearance/lxqt-config-appearance_sv.qm
share/lxqt/translations/lxqt-config-appearance/lxqt-config-appearance_th_TH.qm
share/lxqt/translations/lxqt-config-appearance/lxqt-config-appearance_tr.qm
share/lxqt/translations/lxqt-config-appearance/lxqt-config-appearance_uk.qm
@@ -106,6 +109,7 @@ share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_id.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_it.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_ja.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_ka.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_kk.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_ko.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_lg.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_lt.qm
@@ -121,6 +125,7 @@ share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_ru.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_si.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_sk_SK.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_sl.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_sv.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_tr.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_uk.qm
share/lxqt/translations/lxqt-config-brightness/lxqt-config-brightness_zh_CN.qm
@@ -191,6 +196,7 @@ share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associati
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_en_GB.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_es.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_et.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_eu.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_fi.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_fr.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_gl.qm
@@ -211,10 +217,12 @@ share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associati
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_oc.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_pl.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_pt.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_pt_BR.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_ru.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_si.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_sk_SK.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_sl.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_sv.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_tr.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_uk.qm
share/lxqt/translations/lxqt-config-file-associations/lxqt-config-file-associations_zh_CN.qm
@@ -280,8 +288,10 @@ share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_da.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_de.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_el.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_en_GB.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_eo.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_es.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_et.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_eu.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_fi.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_fr.qm
share/lxqt/translations/lxqt-config-locale/lxqt-config-locale_gl.qm
@@ -329,6 +339,7 @@ share/lxqt/translations/lxqt-config-monitor/lxqt-config-monitor_el.qm
share/lxqt/translations/lxqt-config-monitor/lxqt-config-monitor_en_GB.qm
share/lxqt/translations/lxqt-config-monitor/lxqt-config-monitor_es.qm
share/lxqt/translations/lxqt-config-monitor/lxqt-config-monitor_et.qm
share/lxqt/translations/lxqt-config-monitor/lxqt-config-monitor_eu.qm
share/lxqt/translations/lxqt-config-monitor/lxqt-config-monitor_fi.qm
share/lxqt/translations/lxqt-config-monitor/lxqt-config-monitor_fr.qm
share/lxqt/translations/lxqt-config-monitor/lxqt-config-monitor_gl.qm
@@ -405,6 +416,7 @@ share/lxqt/translations/lxqt-config/lxqt-config_ru.qm
share/lxqt/translations/lxqt-config/lxqt-config_si.qm
share/lxqt/translations/lxqt-config/lxqt-config_sk_SK.qm
share/lxqt/translations/lxqt-config/lxqt-config_sl.qm
share/lxqt/translations/lxqt-config/lxqt-config_sv.qm
share/lxqt/translations/lxqt-config/lxqt-config_th_TH.qm
share/lxqt/translations/lxqt-config/lxqt-config_tr.qm
share/lxqt/translations/lxqt-config/lxqt-config_uk.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-globalkeys-2.2.0.tar.xz) = Zs/f7tTAuWj0Y1hHzMMr7IE2u3TPvZpbMeBHUzn5l5o=
SIZE (lxqt/lxqt-globalkeys-2.2.0.tar.xz) = 78632
SHA256 (lxqt/lxqt-globalkeys-2.4.0.tar.xz) = b3+4Ize9BoI/aY31oeYxBZ6Z5US/qaHXxbZ/0B/5MZo=
SIZE (lxqt/lxqt-globalkeys-2.4.0.tar.xz) = 81164
+2
View File
@@ -67,6 +67,7 @@ share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshor
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ja.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ka.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_kab.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_kk.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ko.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_lg.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_lt.qm
@@ -82,6 +83,7 @@ share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshor
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_si.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_sk_SK.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_sl.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_sv.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_th_TH.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_tr.qm
share/lxqt/translations/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_uk.qm
+1 -1
View File
@@ -1,7 +1,7 @@
COMMENT = information about LXQt and the system its running on
NAME = libdbusmenu-lxqt
VERSION = 0.3.0
VERSION = 0.4.0
SHARED_LIBS += dbusmenu-lxqt 0.0 # 0.0
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/libdbusmenu-lxqt-0.3.0.tar.xz) = raDRTTpNn7C6NEvweNNRBG39Im2hCW+GbXgWenkkP/k=
SIZE (lxqt/libdbusmenu-lxqt-0.3.0.tar.xz) = 40084
SHA256 (lxqt/libdbusmenu-lxqt-0.4.0.tar.xz) = t/lNZTVZ8CGTKq2nYpHpM1NUMaM3w5waFG0EYd0noQM=
SIZE (lxqt/libdbusmenu-lxqt-0.4.0.tar.xz) = 40380
+1 -1
View File
@@ -11,7 +11,7 @@ WANTLIB += xcb-dri3 xcb-ewmh xcb-glx xcb-icccm xcb-image xcb-keysyms
WANTLIB += xcb-present xcb-randr xcb-record xcb-render xcb-render-util
WANTLIB += xcb-res xcb-screensaver xcb-shape xcb-shm xcb-sync
WANTLIB += xcb-util xcb-xf86dri xcb-xfixes xcb-xinerama xcb-xinput
WANTLIB += xcb-xkb xcb-xtest xcb-xv xcb-xvmc
WANTLIB += xcb-xkb xcb-xtest xcb-xv xcb-xvmc xkbcommon
LIB_DEPENDS = x11/qt6/qtbase \
x11/menu-cache \
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/libfm-qt-2.2.0.tar.xz) = TYqob8/PQk9/QcSpMejYBN0SvtyEKJMbW8lVNFxDE6k=
SIZE (lxqt/libfm-qt-2.2.0.tar.xz) = 423884
SHA256 (lxqt/libfm-qt-2.4.0.tar.xz) = cnZte0H9GqBsCn74vgFSBVBv91ljuXflMHmUVV3MAjs=
SIZE (lxqt/libfm-qt-2.4.0.tar.xz) = 439504
@@ -1,15 +0,0 @@
https://github.com/lxqt/libfm-qt/commit/3bcbae5831f5ce3d2f06dc370f0c2ad0026ae82a
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -35,6 +35,10 @@ set(QT_MINIMUM_VERSION "6.6.0")
find_package(Qt6Widgets "${QT_MINIMUM_VERSION}" REQUIRED)
find_package(Qt6LinguistTools "${QT_MINIMUM_VERSION}" REQUIRED)
+if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0")
+ find_package(Qt6GuiPrivate REQUIRED)
+endif()
+
find_package(lxqt2-build-tools "${LXQTBT_MINIMUM_VERSION}" REQUIRED)
find_package(GLIB "${GLIB_MINIMUM_VERSION}" REQUIRED COMPONENTS gio gio-unix gobject gthread)
find_package(MenuCache "${LIBMENUCACHE_MINIMUM_VERSION}" REQUIRED)
@@ -1,30 +0,0 @@
https://github.com/lxqt/libfm-qt/commit/3bcbae5831f5ce3d2f06dc370f0c2ad0026ae82a
Index: src/CMakeLists.txt
--- src/CMakeLists.txt.orig
+++ src/CMakeLists.txt
@@ -132,14 +132,17 @@ install(EXPORT
)
target_link_libraries(${LIBFM_QT_LIBRARY_NAME}
- Qt6::Widgets
- ${GLIB_LIBRARIES}
- ${GLIB_GIO_LIBRARIES}
- ${GLIB_GOBJECT_LIBRARIES}
- ${GLIB_GTHREAD_LIBRARIES}
- ${MENUCACHE_LIBRARIES}
- ${XCB_LIBRARIES}
- ${EXIF_LIBRARIES}
+ PRIVATE
+ Qt6::GuiPrivate
+ PUBLIC
+ Qt6::Widgets
+ ${GLIB_LIBRARIES}
+ ${GLIB_GIO_LIBRARIES}
+ ${GLIB_GOBJECT_LIBRARIES}
+ ${GLIB_GTHREAD_LIBRARIES}
+ ${MENUCACHE_LIBRARIES}
+ ${XCB_LIBRARIES}
+ ${EXIF_LIBRARIES}
)
# set libtool soname
+1
View File
@@ -160,6 +160,7 @@ share/libfm-qt6/translations/libfm-qt_ru.qm
share/libfm-qt6/translations/libfm-qt_si.qm
share/libfm-qt6/translations/libfm-qt_sk.qm
share/libfm-qt6/translations/libfm-qt_sl.qm
share/libfm-qt6/translations/libfm-qt_sv.qm
share/libfm-qt6/translations/libfm-qt_tr.qm
share/libfm-qt6/translations/libfm-qt_uk.qm
share/libfm-qt6/translations/libfm-qt_zh_CN.qm
+1 -1
View File
@@ -9,7 +9,7 @@ WANTLIB += Qt6Gui Qt6Svg Qt6Widgets Qt6Xdg Qt6XdgIconLoader Qt6Xml
WANTLIB += X11 Xss c gio-2.0 glib-2.0 gobject-2.0 m
LIB_DEPENDS = devel/kf6/kwindowsystem \
x11/lxqt/libqtxdg \
x11/lxqt/libqtxdg>=4.4.0 \
x11/qt6/qtsvg
BUILD_DEPENDS += x11/polkit-qt
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/liblxqt-2.2.0.tar.xz) = SomLG/BZ+3MQIBG8p5u5bTPEnJX21WE17xOo6R0KCcg=
SIZE (lxqt/liblxqt-2.2.0.tar.xz) = 87336
SHA256 (lxqt/liblxqt-2.4.0.tar.xz) = ZichVkTrNwcjU2J0VVdD21K67ZGdtv/DLrwr3zz47ko=
SIZE (lxqt/liblxqt-2.4.0.tar.xz) = 90676
+1
View File
@@ -105,6 +105,7 @@ share/examples/liblxqt/xdg/lxqt/translations/liblxqt/liblxqt_sk_SK.qm
share/examples/liblxqt/xdg/lxqt/translations/liblxqt/liblxqt_sl.qm
share/examples/liblxqt/xdg/lxqt/translations/liblxqt/liblxqt_sr@latin.qm
share/examples/liblxqt/xdg/lxqt/translations/liblxqt/liblxqt_sr_RS.qm
share/examples/liblxqt/xdg/lxqt/translations/liblxqt/liblxqt_sv.qm
share/examples/liblxqt/xdg/lxqt/translations/liblxqt/liblxqt_th_TH.qm
share/examples/liblxqt/xdg/lxqt/translations/liblxqt/liblxqt_tr.qm
share/examples/liblxqt/xdg/lxqt/translations/liblxqt/liblxqt_uk.qm
+2 -2
View File
@@ -1,6 +1,6 @@
COMMENT = qt implementation of freedesktop.org xdg specs
VERSION = 4.2.0
VERSION = 4.4.0
NAME = libqtxdg
@@ -8,7 +8,7 @@ SHARED_LIBS += Qt6Xdg 0.0 # 3.8
SHARED_LIBS += Qt6XdgIconLoader 0.0 # 3.8
WANTLIB += ${COMPILER_LIBCXX} GL Qt6Core Qt6DBus Qt6Gui Qt6Svg
WANTLIB += Qt6Widgets Qt6Xml gio-2.0 glib-2.0 gobject-2.0 m
WANTLIB += Qt6Widgets Qt6Xml gio-2.0 glib-2.0 gobject-2.0 m xkbcommon
LIB_DEPENDS = x11/qt6/qtsvg
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/libqtxdg-4.2.0.tar.xz) = pdQwIYVQ1m+oBt6858QY20Emgoaxe9q0a4zjpY8P6Co=
SIZE (lxqt/libqtxdg-4.2.0.tar.xz) = 72004
SHA256 (lxqt/libqtxdg-4.4.0.tar.xz) = NNJZSa57YnX7VNpGGH3YukF3FgA1NAWxXlO9yQueKHo=
SIZE (lxqt/libqtxdg-4.4.0.tar.xz) = 75152
@@ -1,15 +0,0 @@
https://github.com/lxqt/libqtxdg/commit/b01a024921acdfd5b0e97d5fda2933c726826e99
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -27,6 +27,10 @@ find_package(Qt6 ${QT_MINIMUM_VERSION} CONFIG REQUIRED
find_package(GLIB ${GLIB_MINIMUM_VERSION} REQUIRED COMPONENTS gobject gio gio-unix)
find_package(XTerm)
+if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0")
+ find_package(Qt6GuiPrivate ${QT_MINIMUM_VERSION} REQUIRED)
+endif()
+
include(GNUInstallDirs) # Standard directories for installation
include(CMakePackageConfigHelpers)
include(GenerateExportHeader)
@@ -1,13 +0,0 @@
https://github.com/lxqt/libqtxdg/commit/b01a024921acdfd5b0e97d5fda2933c726826e99
Index: src/qtxdg/CMakeLists.txt
--- src/qtxdg/CMakeLists.txt.orig
+++ src/qtxdg/CMakeLists.txt
@@ -78,6 +78,8 @@ add_library(${QTXDGX_LIBRARY_NAME} SHARED
)
target_link_libraries(${QTXDGX_LIBRARY_NAME}
+ PRIVATE
+ Qt6::GuiPrivate
PUBLIC
${QTX_LIBRARIES}
${QTXDGX_ICONLOADER_LIBRARY_NAME}
@@ -1,21 +1,20 @@
Index: src/qtxdg/xdgdirs.cpp
--- src/qtxdg/xdgdirs.cpp.orig
+++ src/qtxdg/xdgdirs.cpp
@@ -266,7 +266,7 @@ QStringList XdgDirs::dataDirs(const QString &postfix)
QStringList dirs = d.split(QLatin1Char(':'), Qt::SkipEmptyParts);
@@ -285,6 +285,7 @@ QStringList XdgDirs::dataDirs(const QString &postfix)
if (dirs.isEmpty()) {
- dirs.append(QString::fromLatin1("/usr/local/share"));
+ dirs.append(QString::fromLatin1("${LOCALBASE}/share"));
dirs.append(QString::fromLatin1("/usr/share"));
dirs.append("/usr/local/share"_L1);
+ dirs.append("${LOCALBASE}/share"_L1);
dirs.append("/usr/share"_L1);
} else {
QMutableListIterator<QString> it(dirs);
@@ -289,7 +289,7 @@ QStringList XdgDirs::configDirs(const QString &postfix
@@ -307,7 +308,7 @@ QStringList XdgDirs::configDirs(const QString &postfix
QStringList dirs;
const QString env = QFile::decodeName(qgetenv("XDG_CONFIG_DIRS"));
if (env.isEmpty())
- dirs.append(QString::fromLatin1("/etc/xdg"));
+ dirs.append(QString::fromLatin1("${SYSCONFDIR}/xdg"));
- dirs.append("/etc/xdg"_L1);
+ dirs.append("${SYSCONFDIR}/xdg"_L1);
else
dirs = env.split(QLatin1Char(':'), Qt::SkipEmptyParts);
dirs = env.split(u':', Qt::SkipEmptyParts);
@@ -1,13 +0,0 @@
https://github.com/lxqt/libqtxdg/commit/b01a024921acdfd5b0e97d5fda2933c726826e99
Index: src/xdgiconloader/CMakeLists.txt
--- src/xdgiconloader/CMakeLists.txt.orig
+++ src/xdgiconloader/CMakeLists.txt
@@ -50,6 +50,8 @@ target_include_directories(${QTXDGX_ICONLOADER_LIBRARY
)
target_link_libraries(${QTXDGX_ICONLOADER_LIBRARY_NAME}
+ PRIVATE
+ Qt6::GuiPrivate
PUBLIC
Qt6::Gui
Qt6::Svg
@@ -1,13 +0,0 @@
https://github.com/lxqt/libqtxdg/commit/b01a024921acdfd5b0e97d5fda2933c726826e99
Index: src/xdgiconloader/plugin/CMakeLists.txt
--- src/xdgiconloader/plugin/CMakeLists.txt.orig
+++ src/xdgiconloader/plugin/CMakeLists.txt
@@ -11,6 +11,8 @@ target_compile_definitions(${QTXDGX_ICONENGINEPLUGIN_L
"QT_NO_KEYWORDS"
)
target_link_libraries(${QTXDGX_ICONENGINEPLUGIN_LIBRARY_NAME}
+ PRIVATE
+ Qt6::GuiPrivate
PUBLIC
Qt6::Gui
"${QTXDGX_ICONLOADER_LIBRARY_NAME}"
@@ -1,12 +1,12 @@
Index: src/xdgiconloader/xdgiconloader.cpp
--- src/xdgiconloader/xdgiconloader.cpp.orig
+++ src/xdgiconloader/xdgiconloader.cpp
@@ -568,7 +568,7 @@ QThemeIconInfo XdgIconLoader::loadIcon(const QString &
@@ -572,7 +572,7 @@ QThemeIconInfo XdgIconLoader::loadIcon(const QString &
auto unthemedInfo = unthemedFallback(name, QIcon::themeSearchPaths());
if (unthemedInfo.entries.empty()) {
/* Freedesktop standard says to look in /usr/share/pixmaps last */
- const QStringList pixmapPath = (QStringList() << QString::fromLatin1("/usr/share/pixmaps"));
+ const QStringList pixmapPath = (QStringList() << QString::fromLatin1("${LOCALBASE}/share/pixmaps"));
- const QStringList pixmapPath = (QStringList() << "/usr/share/pixmaps"_L1);
+ const QStringList pixmapPath = (QStringList() << "${LOCALBASE}/share/pixmaps"_L1);
auto pixmapInfo = unthemedFallback(name, pixmapPath);
if (pixmapInfo.entries.empty()) {
return QThemeIconInfo();
@@ -1,46 +1,57 @@
Index: test/tst_xdgdirs.cpp
--- test/tst_xdgdirs.cpp.orig
+++ test/tst_xdgdirs.cpp
@@ -131,12 +131,12 @@ void tst_xdgdirs::testDataDirs()
@@ -186,17 +186,17 @@ void tst_xdgdirs::testDataDirs()
setDefaultLocations();
const QStringList dataDirs = XdgDirs::dataDirs();
QCOMPARE(dataDirs.count(), 2);
- QCOMPARE(dataDirs.at(0), QString::fromLatin1("/usr/local/share"));
+ QCOMPARE(dataDirs.at(0), QString::fromLatin1("${LOCALBASE}/share"));
QCOMPARE(dataDirs.at(1), QString::fromLatin1("/usr/share"));
- QCOMPARE(dataDirs.at(0), "/usr/local/share"_L1);
+ QCOMPARE(dataDirs.at(0), "${LOCALBASE}/share"_L1);
QCOMPARE(dataDirs.at(1), "/usr/share"_L1);
const QStringList dataDirsWithPostfix = XdgDirs::dataDirs(postfix);
QCOMPARE(dataDirsWithPostfix.count(), 2);
- QCOMPARE(dataDirsWithPostfix.at(0), QString::fromLatin1("/usr/local/share") + postfix);
+ QCOMPARE(dataDirsWithPostfix.at(0), QString::fromLatin1("${LOCALBASE}/share") + postfix);
QCOMPARE(dataDirsWithPostfix.at(1), QString::fromLatin1("/usr/share") + postfix);
- QCOMPARE(dataDirsWithPostfix.at(0), "/usr/local/share"_L1 + postfix);
+ QCOMPARE(dataDirsWithPostfix.at(0), "${LOCALBASE}/share"_L1 + postfix);
QCOMPARE(dataDirsWithPostfix.at(1), "/usr/share"_L1 + postfix);
const QStringList dataDirsWithNoSlashPostfix = XdgDirs::dataDirs(noSlashPostfix);
QCOMPARE(dataDirsWithNoSlashPostfix.count(), 2);
- QCOMPARE(dataDirsWithNoSlashPostfix.at(0), "/usr/local/share"_L1 + u'/' + noSlashPostfix);
+ QCOMPARE(dataDirsWithNoSlashPostfix.at(0), "${LOCALBASE}/share"_L1 + u'/' + noSlashPostfix);
QCOMPARE(dataDirsWithNoSlashPostfix.at(1), "/usr/share"_L1 + u'/' + noSlashPostfix);
setCustomLocations();
@@ -156,11 +156,11 @@ void tst_xdgdirs::testConfigDirs()
@@ -219,11 +219,11 @@ void tst_xdgdirs::testConfigDirs()
const QStringList configDirs = XdgDirs::configDirs();
QCOMPARE(configDirs.count(), 1);
- QCOMPARE(configDirs.at(0), QString::fromLatin1("/etc/xdg"));
+ QCOMPARE(configDirs.at(0), QString::fromLatin1("${SYSCONFDIR}/xdg"));
- QCOMPARE(configDirs.at(0), "/etc/xdg"_L1);
+ QCOMPARE(configDirs.at(0), "${SYSCONFDIR}/xdg"_L1);
const QStringList configDirsWithPostfix = XdgDirs::configDirs(postfix);
QCOMPARE(configDirsWithPostfix.count(), 1);
- QCOMPARE(configDirsWithPostfix.at(0), QString::fromLatin1("/etc/xdg") + postfix);
+ QCOMPARE(configDirsWithPostfix.at(0), QString::fromLatin1("${SYSCONFDIR}/xdg") + postfix);
- QCOMPARE(configDirsWithPostfix.at(0), "/etc/xdg"_L1 + postfix);
+ QCOMPARE(configDirsWithPostfix.at(0), "${SYSCONFDIR}/xdg"_L1 + postfix);
setCustomLocations();
const QStringList configDirsCustom = XdgDirs::configDirs();
@@ -206,11 +206,11 @@ void tst_xdgdirs::testAutostartDirs()
@@ -267,15 +267,15 @@ void tst_xdgdirs::testAutostartDirs()
setDefaultLocations();
const QStringList autostartDirs = XdgDirs::autostartDirs();
QCOMPARE(autostartDirs.count(), 1);
- QCOMPARE(autostartDirs.at(0), QString::fromLatin1("/etc/xdg/autostart"));
+ QCOMPARE(autostartDirs.at(0), QString::fromLatin1("${SYSCONFDIR}/xdg/autostart"));
- QCOMPARE(autostartDirs.at(0), "/etc/xdg/autostart"_L1);
+ QCOMPARE(autostartDirs.at(0), "${SYSCONFDIR}/xdg/autostart"_L1);
const QStringList autostartDirsWithPostfix = XdgDirs::autostartDirs(postfix);
QCOMPARE(autostartDirsWithPostfix.count(), 1);
- QCOMPARE(autostartDirsWithPostfix.at(0), QString::fromLatin1("/etc/xdg/autostart") + postfix);
+ QCOMPARE(autostartDirsWithPostfix.at(0), QString::fromLatin1("${SYSCONFDIR}/xdg/autostart") + postfix);
- QCOMPARE(autostartDirsWithPostfix.at(0), "/etc/xdg/autostart"_L1 + postfix);
+ QCOMPARE(autostartDirsWithPostfix.at(0), "${SYSCONFDIR}/xdg/autostart"_L1 + postfix);
const QStringList autostartDirsWithNoSlashPostfix = XdgDirs::autostartDirs(noSlashPostfix);
QCOMPARE(autostartDirsWithNoSlashPostfix.count(), 1);
- QCOMPARE(autostartDirsWithNoSlashPostfix.at(0), "/etc/xdg/autostart"_L1 + u'/' + noSlashPostfix);
+ QCOMPARE(autostartDirsWithNoSlashPostfix.at(0), "${SYSCONFDIR}/xdg/autostart"_L1 + u'/' + noSlashPostfix);
setCustomLocations();
const QStringList autostartDirsCustom = XdgDirs::autostartDirs();
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lximage-qt-2.2.0.tar.xz) = zC6/7zp+KQERTnHC4VqdGjgv4tiisUaLreZ/4LaPmeo=
SIZE (lxqt/lximage-qt-2.2.0.tar.xz) = 858248
SHA256 (lxqt/lximage-qt-2.4.0.tar.xz) = fKSQOfMkYBG4DXYDdgOsanr0hFdNjl4sxbt7hTQphjY=
SIZE (lxqt/lximage-qt-2.4.0.tar.xz) = 869496
+2
View File
@@ -33,9 +33,11 @@ share/lximage-qt/translations/lximage-qt_it.qm
share/lximage-qt/translations/lximage-qt_ja.qm
share/lximage-qt/translations/lximage-qt_ka.qm
share/lximage-qt/translations/lximage-qt_kab.qm
share/lximage-qt/translations/lximage-qt_kk.qm
share/lximage-qt/translations/lximage-qt_ko.qm
share/lximage-qt/translations/lximage-qt_lg.qm
share/lximage-qt/translations/lximage-qt_lt.qm
share/lximage-qt/translations/lximage-qt_mk.qm
share/lximage-qt/translations/lximage-qt_nb_NO.qm
share/lximage-qt/translations/lximage-qt_nl.qm
share/lximage-qt/translations/lximage-qt_oc.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-menu-data-2.2.0.tar.xz) = paAm/jqNJ5VRIz+jmbNxOaZoxwsHtT7IXCPmckmuiVs=
SIZE (lxqt/lxqt-menu-data-2.2.0.tar.xz) = 55208
SHA256 (lxqt/lxqt-menu-data-2.4.0.tar.xz) = NIfkdWLcGeYzWKUMgeUc0M8aAgOXlDyt2Ns12utIZsw=
SIZE (lxqt/lxqt-menu-data-2.4.0.tar.xz) = 55904
+1
View File
@@ -42,3 +42,4 @@ share/examples/lxqt-menu-data/menus/lxqt-applications.menu
@sample ${SYSCONFDIR}/xdg/menus/lxqt-applications.menu
share/examples/lxqt-menu-data/menus/lxqt-config.menu
@sample ${SYSCONFDIR}/xdg/menus/lxqt-config.menu
share/examples/lxqt-menu-data/menus/lxqt-panel-applications.menu
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-notificationd-2.2.0.tar.xz) = QiO/bOHC5fZwIDIMcPIhwTyUsXteM/0A/W+OKYOnecQ=
SIZE (lxqt/lxqt-notificationd-2.2.0.tar.xz) = 66464
SHA256 (lxqt/lxqt-notificationd-2.4.0.tar.xz) = Uloh/rYiyyVfELfr0otK9a+6naSDNWAzfxZ//l8dGdI=
SIZE (lxqt/lxqt-notificationd-2.4.0.tar.xz) = 70600
+2
View File
@@ -36,6 +36,7 @@ share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_id.q
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_it.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_ja.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_ka.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_kk.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_ko.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_lg.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_lt.qm
@@ -50,6 +51,7 @@ share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_pt_B
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_ru.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_si.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_sk_SK.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_sv.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_tr.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_uk.qm
share/lxqt/translations/lxqt-config-notificationd/lxqt-config-notificationd_zh_CN.qm
+1 -2
View File
@@ -1,7 +1,6 @@
COMMENT = configuration editor for openbox window manager
VERSION = 0.16.5
REVISION = 1
VERSION = 0.16.6
NAME = obconf-qt
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/obconf-qt-0.16.5.tar.xz) = A0iDaAkS9+ok29TCi47kzwlndKpYjjlDHTGdVqkkFgw=
SIZE (lxqt/obconf-qt-0.16.5.tar.xz) = 122908
SHA256 (lxqt/obconf-qt-0.16.6.tar.xz) = I8yNFvpjmHGiCHZEUnr93NuslVOmV2j3hH9ZjeKdBxU=
SIZE (lxqt/obconf-qt-0.16.6.tar.xz) = 128948
+5
View File
@@ -15,8 +15,10 @@ share/obconf-qt/translations/obconf-qt_cy.qm
share/obconf-qt/translations/obconf-qt_da.qm
share/obconf-qt/translations/obconf-qt_de.qm
share/obconf-qt/translations/obconf-qt_el.qm
share/obconf-qt/translations/obconf-qt_en_GB.qm
share/obconf-qt/translations/obconf-qt_es.qm
share/obconf-qt/translations/obconf-qt_et.qm
share/obconf-qt/translations/obconf-qt_eu.qm
share/obconf-qt/translations/obconf-qt_fi.qm
share/obconf-qt/translations/obconf-qt_fr.qm
share/obconf-qt/translations/obconf-qt_gl.qm
@@ -27,6 +29,8 @@ share/obconf-qt/translations/obconf-qt_id.qm
share/obconf-qt/translations/obconf-qt_is.qm
share/obconf-qt/translations/obconf-qt_it.qm
share/obconf-qt/translations/obconf-qt_ja.qm
share/obconf-qt/translations/obconf-qt_ka.qm
share/obconf-qt/translations/obconf-qt_kab.qm
share/obconf-qt/translations/obconf-qt_kk.qm
share/obconf-qt/translations/obconf-qt_ko.qm
share/obconf-qt/translations/obconf-qt_lg.qm
@@ -48,3 +52,4 @@ share/obconf-qt/translations/obconf-qt_uk.qm
share/obconf-qt/translations/obconf-qt_zh_CN.qm
@tag gtk-update-icon-cache %D/share/icons/hicolor
@tag update-desktop-database
share/obconf-qt/translations/obconf-qt_zh_TW.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-openssh-askpass-2.2.0.tar.xz) = uylmQnqUYrJgWfdqwFBMTTv1OaawLkU1fE+e6Z+bbzw=
SIZE (lxqt/lxqt-openssh-askpass-2.2.0.tar.xz) = 18084
SHA256 (lxqt/lxqt-openssh-askpass-2.4.0.tar.xz) = Gk1cnJRQzAjKzRZG/FXcnHjCl6sfuuSbgEffeGZbXFU=
SIZE (lxqt/lxqt-openssh-askpass-2.4.0.tar.xz) = 19208
+3
View File
@@ -18,6 +18,7 @@ share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_el.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_en_GB.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_es.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_et.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_eu.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_fi.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_fr.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_gl.qm
@@ -29,6 +30,7 @@ share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_it.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_ja.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_ka.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_kab.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_kk.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_ko.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_lg.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_lt.qm
@@ -38,6 +40,7 @@ share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_oc.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_pa.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_pl.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_pt.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_pt_BR.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_ru.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_si.qm
share/lxqt/translations/lxqt-openssh-askpass/lxqt-openssh-askpass_sk_SK.qm
-4
View File
@@ -1,8 +1,6 @@
COMMENT = desktop panel for LXQt
NAME = lxqt-panel
VERSION = 2.2.2
REVISION = 0
WANTLIB += ${COMPILER_LIBCXX} GL KF6Solid KF6WindowSystem LayerShellQtInterface
WANTLIB += Qt6Concurrent Qt6Core Qt6DBus Qt6Gui Qt6Svg Qt6Widgets
@@ -47,7 +45,5 @@ post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/${NAME}
mv ${WRKINST}${SYSCONFDIR}/xdg ${PREFIX}/share/examples/${NAME}/
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/${NAME}/xdg/lxqt/
mv ${PREFIX}/share/lxqt/panel.conf \
${PREFIX}/share/examples/${NAME}/xdg/lxqt/panel.conf
.include <bsd.port.mk>
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-panel-2.2.2.tar.xz) = XRUOek6IGHFbj07sf0uybJj3QM1W+XIZmzX8fIHaGWk=
SIZE (lxqt/lxqt-panel-2.2.2.tar.xz) = 724996
SHA256 (lxqt/lxqt-panel-2.4.0.tar.xz) = I7nNpuatR99h0ugT3i/O1SWX/VR94SDS6ujfXbRXNwI=
SIZE (lxqt/lxqt-panel-2.4.0.tar.xz) = 839856
@@ -1,16 +0,0 @@
https://github.com/lxqt/lxqt-panel/commit/fce8cd99a1de0e637e8539c4d8ac68832a40fa6d
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -42,6 +42,11 @@ find_package(lxqt-menu-data ${LXQT_MINIMUM_VERSION} RE
find_package(LayerShellQt REQUIRED)
+if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0")
+ find_package(Qt6GuiPrivate REQUIRED)
+ find_package(Qt6WaylandClientPrivate REQUIRED)
+endif()
+
# Patch Version
set(LXQT_PANEL_PATCH_VERSION 2)
set(LXQT_PANEL_VERSION ${LXQT_MAJOR_VERSION}.${LXQT_MINOR_VERSION}.${LXQT_PANEL_PATCH_VERSION})
@@ -1,7 +1,7 @@
Index: plugin-mainmenu/lxqtmainmenuconfiguration.cpp
--- plugin-mainmenu/lxqtmainmenuconfiguration.cpp.orig
+++ plugin-mainmenu/lxqtmainmenuconfiguration.cpp
@@ -188,7 +188,7 @@ void LXQtMainMenuConfiguration::chooseMenuFile()
@@ -193,7 +193,7 @@ void LXQtMainMenuConfiguration::chooseMenuFile()
{
QFileDialog *d = new QFileDialog(this,
tr("Choose menu file"),
+31
View File
@@ -8,6 +8,7 @@ include/lxqt/pluginsettings.h
lib/lxqt-panel/
lib/lxqt-panel/backend/
@so lib/lxqt-panel/backend/libwmbackend_kwin_wayland.so
@so lib/lxqt-panel/backend/libwmbackend_wayfire.so
@so lib/lxqt-panel/backend/libwmbackend_wlroots.so
@so lib/lxqt-panel/backend/libwmbackend_xcb.so
@so lib/lxqt-panel/libbacklight.so
@@ -116,6 +117,7 @@ share/lxqt/translations/lxqt-panel/colorpicker/
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_ar.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_bg.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_ca.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_cs.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_da.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_de.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_el.qm
@@ -125,9 +127,11 @@ share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_fi.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_fr.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_he.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_hr.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_hu.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_it.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_ka.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_kab.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_kk.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_ko.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_lg.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_lt.qm
@@ -135,6 +139,7 @@ share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_nl.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_oc.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_pl.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_pt.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_pt_BR.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_ru.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_sk.qm
share/lxqt/translations/lxqt-panel/colorpicker/colorpicker_sr.qm
@@ -169,6 +174,7 @@ share/lxqt/translations/lxqt-panel/cpuload/cpuload_id.qm
share/lxqt/translations/lxqt-panel/cpuload/cpuload_it.qm
share/lxqt/translations/lxqt-panel/cpuload/cpuload_ja.qm
share/lxqt/translations/lxqt-panel/cpuload/cpuload_ka.qm
share/lxqt/translations/lxqt-panel/cpuload/cpuload_kk.qm
share/lxqt/translations/lxqt-panel/cpuload/cpuload_ko.qm
share/lxqt/translations/lxqt-panel/cpuload/cpuload_lg.qm
share/lxqt/translations/lxqt-panel/cpuload/cpuload_lt.qm
@@ -211,6 +217,7 @@ share/lxqt/translations/lxqt-panel/customcommand/customcommand_hu.qm
share/lxqt/translations/lxqt-panel/customcommand/customcommand_it.qm
share/lxqt/translations/lxqt-panel/customcommand/customcommand_ja.qm
share/lxqt/translations/lxqt-panel/customcommand/customcommand_ka.qm
share/lxqt/translations/lxqt-panel/customcommand/customcommand_kk.qm
share/lxqt/translations/lxqt-panel/customcommand/customcommand_ko.qm
share/lxqt/translations/lxqt-panel/customcommand/customcommand_lg.qm
share/lxqt/translations/lxqt-panel/customcommand/customcommand_lt.qm
@@ -260,6 +267,7 @@ share/lxqt/translations/lxqt-panel/desktopswitch/desktopswitch_it.qm
share/lxqt/translations/lxqt-panel/desktopswitch/desktopswitch_ja.qm
share/lxqt/translations/lxqt-panel/desktopswitch/desktopswitch_ka.qm
share/lxqt/translations/lxqt-panel/desktopswitch/desktopswitch_kab.qm
share/lxqt/translations/lxqt-panel/desktopswitch/desktopswitch_kk.qm
share/lxqt/translations/lxqt-panel/desktopswitch/desktopswitch_ko.qm
share/lxqt/translations/lxqt-panel/desktopswitch/desktopswitch_lg.qm
share/lxqt/translations/lxqt-panel/desktopswitch/desktopswitch_lt.qm
@@ -311,6 +319,7 @@ share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_it.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_ja.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_ka.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_kab.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_kk.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_ko.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_lg.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_lt.qm
@@ -321,6 +330,7 @@ share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_oc.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_pa.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_pl.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_pt.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_pt_BR.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_ru.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_si.qm
share/lxqt/translations/lxqt-panel/directorymenu/directorymenu_sk_SK.qm
@@ -354,6 +364,7 @@ share/lxqt/translations/lxqt-panel/dom/dom_it.qm
share/lxqt/translations/lxqt-panel/dom/dom_ja.qm
share/lxqt/translations/lxqt-panel/dom/dom_ka.qm
share/lxqt/translations/lxqt-panel/dom/dom_kab.qm
share/lxqt/translations/lxqt-panel/dom/dom_kk.qm
share/lxqt/translations/lxqt-panel/dom/dom_ko.qm
share/lxqt/translations/lxqt-panel/dom/dom_lg.qm
share/lxqt/translations/lxqt-panel/dom/dom_lt.qm
@@ -374,6 +385,7 @@ share/lxqt/translations/lxqt-panel/dom/dom_sv.qm
share/lxqt/translations/lxqt-panel/dom/dom_tr.qm
share/lxqt/translations/lxqt-panel/dom/dom_uk.qm
share/lxqt/translations/lxqt-panel/dom/dom_zh_CN.qm
share/lxqt/translations/lxqt-panel/dom/dom_zh_TW.qm
share/lxqt/translations/lxqt-panel/fancymenu/
share/lxqt/translations/lxqt-panel/fancymenu/fancymenu_ar.qm
share/lxqt/translations/lxqt-panel/fancymenu/fancymenu_ast.qm
@@ -454,6 +466,7 @@ share/lxqt/translations/lxqt-panel/kbindicator/kbindicator_it.qm
share/lxqt/translations/lxqt-panel/kbindicator/kbindicator_ja.qm
share/lxqt/translations/lxqt-panel/kbindicator/kbindicator_ka.qm
share/lxqt/translations/lxqt-panel/kbindicator/kbindicator_kab.qm
share/lxqt/translations/lxqt-panel/kbindicator/kbindicator_kk.qm
share/lxqt/translations/lxqt-panel/kbindicator/kbindicator_ko.qm
share/lxqt/translations/lxqt-panel/kbindicator/kbindicator_lg.qm
share/lxqt/translations/lxqt-panel/kbindicator/kbindicator_lt.qm
@@ -504,6 +517,7 @@ share/lxqt/translations/lxqt-panel/lxqt-panel_it.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_ja.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_ka.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_kab.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_kk.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_ko.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_lg.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_lt.qm
@@ -528,6 +542,7 @@ share/lxqt/translations/lxqt-panel/lxqt-panel_sv.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_th_TH.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_tr.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_uk.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_vi.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_zh_CN.qm
share/lxqt/translations/lxqt-panel/lxqt-panel_zh_TW.qm
share/lxqt/translations/lxqt-panel/mainmenu/
@@ -617,6 +632,7 @@ share/lxqt/translations/lxqt-panel/mount/mount_it.qm
share/lxqt/translations/lxqt-panel/mount/mount_ja.qm
share/lxqt/translations/lxqt-panel/mount/mount_ka.qm
share/lxqt/translations/lxqt-panel/mount/mount_kab.qm
share/lxqt/translations/lxqt-panel/mount/mount_kk.qm
share/lxqt/translations/lxqt-panel/mount/mount_ko.qm
share/lxqt/translations/lxqt-panel/mount/mount_lg.qm
share/lxqt/translations/lxqt-panel/mount/mount_lt.qm
@@ -671,6 +687,7 @@ share/lxqt/translations/lxqt-panel/networkmonitor/networkmonitor_it.qm
share/lxqt/translations/lxqt-panel/networkmonitor/networkmonitor_ja.qm
share/lxqt/translations/lxqt-panel/networkmonitor/networkmonitor_ka.qm
share/lxqt/translations/lxqt-panel/networkmonitor/networkmonitor_kab.qm
share/lxqt/translations/lxqt-panel/networkmonitor/networkmonitor_kk.qm
share/lxqt/translations/lxqt-panel/networkmonitor/networkmonitor_ko.qm
share/lxqt/translations/lxqt-panel/networkmonitor/networkmonitor_lg.qm
share/lxqt/translations/lxqt-panel/networkmonitor/networkmonitor_lt.qm
@@ -698,6 +715,7 @@ share/lxqt/translations/lxqt-panel/qeyes/
share/lxqt/translations/lxqt-panel/qeyes/qeyes_ar.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_bg.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_ca.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_cs.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_da.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_de.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_el.qm
@@ -706,9 +724,11 @@ share/lxqt/translations/lxqt-panel/qeyes/qeyes_et.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_fi.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_fr.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_he.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_hu.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_it.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_ka.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_kab.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_kk.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_ko.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_lg.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_lt.qm
@@ -723,6 +743,7 @@ share/lxqt/translations/lxqt-panel/qeyes/qeyes_sr.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_sv.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_tr.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_zh_CN.qm
share/lxqt/translations/lxqt-panel/qeyes/qeyes_zh_TW.qm
share/lxqt/translations/lxqt-panel/quicklaunch/
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_ar.qm
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_arn.qm
@@ -752,6 +773,7 @@ share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_it.qm
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_ja.qm
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_ka.qm
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_kab.qm
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_kk.qm
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_ko.qm
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_lg.qm
share/lxqt/translations/lxqt-panel/quicklaunch/quicklaunch_lt.qm
@@ -807,6 +829,7 @@ share/lxqt/translations/lxqt-panel/showdesktop/showdesktop_it.qm
share/lxqt/translations/lxqt-panel/showdesktop/showdesktop_ja.qm
share/lxqt/translations/lxqt-panel/showdesktop/showdesktop_ka.qm
share/lxqt/translations/lxqt-panel/showdesktop/showdesktop_kab.qm
share/lxqt/translations/lxqt-panel/showdesktop/showdesktop_kk.qm
share/lxqt/translations/lxqt-panel/showdesktop/showdesktop_ko.qm
share/lxqt/translations/lxqt-panel/showdesktop/showdesktop_lg.qm
share/lxqt/translations/lxqt-panel/showdesktop/showdesktop_lt.qm
@@ -857,6 +880,7 @@ share/lxqt/translations/lxqt-panel/spacer/spacer_it.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_ja.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_ka.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_kab.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_kk.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_ko.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_lg.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_lt.qm
@@ -867,6 +891,7 @@ share/lxqt/translations/lxqt-panel/spacer/spacer_oc.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_pa.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_pl.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_pt.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_pt_BR.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_ru.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_si.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_sk.qm
@@ -875,6 +900,7 @@ share/lxqt/translations/lxqt-panel/spacer/spacer_sv.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_tr.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_uk.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_zh_CN.qm
share/lxqt/translations/lxqt-panel/spacer/spacer_zh_TW.qm
share/lxqt/translations/lxqt-panel/statusnotifier/
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_ar.qm
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_arn.qm
@@ -897,6 +923,7 @@ share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_hu.qm
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_it.qm
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_ja.qm
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_ka.qm
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_kk.qm
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_ko.qm
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_lg.qm
share/lxqt/translations/lxqt-panel/statusnotifier/statusnotifier_lt.qm
@@ -941,6 +968,7 @@ share/lxqt/translations/lxqt-panel/sysstat/sysstat_it.qm
share/lxqt/translations/lxqt-panel/sysstat/sysstat_ja.qm
share/lxqt/translations/lxqt-panel/sysstat/sysstat_ka.qm
share/lxqt/translations/lxqt-panel/sysstat/sysstat_kab.qm
share/lxqt/translations/lxqt-panel/sysstat/sysstat_kk.qm
share/lxqt/translations/lxqt-panel/sysstat/sysstat_ko.qm
share/lxqt/translations/lxqt-panel/sysstat/sysstat_lg.qm
share/lxqt/translations/lxqt-panel/sysstat/sysstat_lt.qm
@@ -989,6 +1017,7 @@ share/lxqt/translations/lxqt-panel/taskbar/taskbar_it.qm
share/lxqt/translations/lxqt-panel/taskbar/taskbar_ja.qm
share/lxqt/translations/lxqt-panel/taskbar/taskbar_ka.qm
share/lxqt/translations/lxqt-panel/taskbar/taskbar_kab.qm
share/lxqt/translations/lxqt-panel/taskbar/taskbar_kk.qm
share/lxqt/translations/lxqt-panel/taskbar/taskbar_ko.qm
share/lxqt/translations/lxqt-panel/taskbar/taskbar_lg.qm
share/lxqt/translations/lxqt-panel/taskbar/taskbar_lt.qm
@@ -1042,6 +1071,7 @@ share/lxqt/translations/lxqt-panel/volume/volume_it.qm
share/lxqt/translations/lxqt-panel/volume/volume_ja.qm
share/lxqt/translations/lxqt-panel/volume/volume_ka.qm
share/lxqt/translations/lxqt-panel/volume/volume_kab.qm
share/lxqt/translations/lxqt-panel/volume/volume_kk.qm
share/lxqt/translations/lxqt-panel/volume/volume_ko.qm
share/lxqt/translations/lxqt-panel/volume/volume_lg.qm
share/lxqt/translations/lxqt-panel/volume/volume_lt.qm
@@ -1089,6 +1119,7 @@ share/lxqt/translations/lxqt-panel/worldclock/worldclock_it.qm
share/lxqt/translations/lxqt-panel/worldclock/worldclock_ja.qm
share/lxqt/translations/lxqt-panel/worldclock/worldclock_ka.qm
share/lxqt/translations/lxqt-panel/worldclock/worldclock_kab.qm
share/lxqt/translations/lxqt-panel/worldclock/worldclock_kk.qm
share/lxqt/translations/lxqt-panel/worldclock/worldclock_ko.qm
share/lxqt/translations/lxqt-panel/worldclock/worldclock_lg.qm
share/lxqt/translations/lxqt-panel/worldclock/worldclock_lt.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/pavucontrol-qt-2.2.0.tar.xz) = 8dITQmrBAz0jqCOXMtx/X96zk7Bk8RyVguAbDIMQruk=
SIZE (lxqt/pavucontrol-qt-2.2.0.tar.xz) = 118532
SHA256 (lxqt/pavucontrol-qt-2.4.0.tar.xz) = f4E9MCnp8bZgIM89oUPQcZbdi84BqVvXVEiSh8pbY4A=
SIZE (lxqt/pavucontrol-qt-2.4.0.tar.xz) = 123576
+1
View File
@@ -31,6 +31,7 @@ share/pavucontrol-qt/translations/pavucontrol-qt_id.qm
share/pavucontrol-qt/translations/pavucontrol-qt_it.qm
share/pavucontrol-qt/translations/pavucontrol-qt_ja.qm
share/pavucontrol-qt/translations/pavucontrol-qt_ka.qm
share/pavucontrol-qt/translations/pavucontrol-qt_kk.qm
share/pavucontrol-qt/translations/pavucontrol-qt_kn.qm
share/pavucontrol-qt/translations/pavucontrol-qt_ko.qm
share/pavucontrol-qt/translations/pavucontrol-qt_lg.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/pcmanfm-qt-2.2.0.tar.xz) = pe7q+o0Cya2htGYMI4+V/eCPoTJ4yepeGR6jvfuhvo8=
SIZE (lxqt/pcmanfm-qt-2.2.0.tar.xz) = 416680
SHA256 (lxqt/pcmanfm-qt-2.4.0.tar.xz) = U/saz1qBgwBIfO/6vFt2gDT6Te6Va50bwAGbtFa0ja8=
SIZE (lxqt/pcmanfm-qt-2.4.0.tar.xz) = 439124
@@ -1,7 +1,7 @@
Index: pcmanfm/tabpage.cpp
--- pcmanfm/tabpage.cpp.orig
+++ pcmanfm/tabpage.cpp
@@ -565,7 +565,7 @@ void TabPage::onFolderError(const Fm::GErrorPtr& err,
@@ -567,7 +567,7 @@ void TabPage::onFolderError(const Fm::GErrorPtr& err,
}
void TabPage::onFolderFsInfo() {
+2
View File
@@ -29,7 +29,9 @@ share/pcmanfm-qt/translations/pcmanfm-qt_da.qm
share/pcmanfm-qt/translations/pcmanfm-qt_de.qm
share/pcmanfm-qt/translations/pcmanfm-qt_el.qm
share/pcmanfm-qt/translations/pcmanfm-qt_en_GB.qm
share/pcmanfm-qt/translations/pcmanfm-qt_eo.qm
share/pcmanfm-qt/translations/pcmanfm-qt_es.qm
share/pcmanfm-qt/translations/pcmanfm-qt_es_VE.qm
share/pcmanfm-qt/translations/pcmanfm-qt_et.qm
share/pcmanfm-qt/translations/pcmanfm-qt_eu.qm
share/pcmanfm-qt/translations/pcmanfm-qt_fi.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-policykit-2.2.0.tar.xz) = 2YctWPA/IIXjOdxMrYNIYAABmmj0Rk6xJZmmHq91mh4=
SIZE (lxqt/lxqt-policykit-2.2.0.tar.xz) = 40208
SHA256 (lxqt/lxqt-policykit-2.4.0.tar.xz) = 0VEWHOY5097gf0Hg/GI5UdoNYsQFsc7NaWDnbP3EOEY=
SIZE (lxqt/lxqt-policykit-2.4.0.tar.xz) = 41548
+3
View File
@@ -23,6 +23,7 @@ share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_el.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_en_GB.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_es.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_et.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_eu.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_fi.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_fr.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_gl.qm
@@ -34,6 +35,7 @@ share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_it.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_ja.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_ka.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_kab.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_kk.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_ko.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_lg.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_lt.qm
@@ -46,6 +48,7 @@ share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_pt.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_ro.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_ru.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_sk_SK.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_sv.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_tr.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_uk.qm
share/lxqt/translations/lxqt-policykit-agent/lxqt-policykit-agent_vi.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-powermanagement-2.2.0.tar.xz) = 0XC5mgljJg98mJBGka+4C4HnKJNCBnHiwFZBjj0Fm00=
SIZE (lxqt/lxqt-powermanagement-2.2.0.tar.xz) = 106188
SHA256 (lxqt/lxqt-powermanagement-2.4.0.tar.xz) = JNzH9mjpfIwPhYQRXTdhkEk9R/Nsc7q2BCgUx3IoA2A=
SIZE (lxqt/lxqt-powermanagement-2.4.0.tar.xz) = 114936
+3
View File
@@ -36,6 +36,7 @@ share/lxqt/translations/lxqt-config-powermanagement/lxqt-config-powermanagement_
share/lxqt/translations/lxqt-config-powermanagement/lxqt-config-powermanagement_it.qm
share/lxqt/translations/lxqt-config-powermanagement/lxqt-config-powermanagement_ja.qm
share/lxqt/translations/lxqt-config-powermanagement/lxqt-config-powermanagement_ka.qm
share/lxqt/translations/lxqt-config-powermanagement/lxqt-config-powermanagement_kk.qm
share/lxqt/translations/lxqt-config-powermanagement/lxqt-config-powermanagement_ko.qm
share/lxqt/translations/lxqt-config-powermanagement/lxqt-config-powermanagement_lg.qm
share/lxqt/translations/lxqt-config-powermanagement/lxqt-config-powermanagement_lt.qm
@@ -67,6 +68,7 @@ share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_el.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_en_GB.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_es.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_et.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_eu.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_fi.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_fr.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_gl.qm
@@ -78,6 +80,7 @@ share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_it.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_ja.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_ka.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_kab.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_kk.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_ko.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_lg.qm
share/lxqt/translations/lxqt-powermanagement/lxqt-powermanagement_lt.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/qterminal-2.2.0.tar.xz) = imHUOtQ7R5DBYaofn261acIp5LhLGDaFLZJZNzMZZkQ=
SIZE (lxqt/qterminal-2.2.0.tar.xz) = 241148
SHA256 (lxqt/qterminal-2.4.0.tar.xz) = rrbPX/fzHwuJ5g9swcg8TW++1XcXGW0uu6K8DcuENtQ=
SIZE (lxqt/qterminal-2.4.0.tar.xz) = 417816
+2
View File
@@ -51,8 +51,10 @@ share/qterminal/translations/qterminal_pt_BR.qm
share/qterminal/translations/qterminal_ru.qm
share/qterminal/translations/qterminal_si.qm
share/qterminal/translations/qterminal_sk_SK.qm
share/qterminal/translations/qterminal_sv.qm
share/qterminal/translations/qterminal_tr.qm
share/qterminal/translations/qterminal_uk.qm
share/qterminal/translations/qterminal_vi.qm
share/qterminal/translations/qterminal_zh_CN.qm
share/qterminal/translations/qterminal_zh_TW.qm
@tag update-desktop-database
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/qtermwidget-2.2.0.tar.xz) = uk/7unnPVa/3YkNWSTb5M3vu69+MSov6NlufyI8mHOk=
SIZE (lxqt/qtermwidget-2.2.0.tar.xz) = 195596
SHA256 (lxqt/qtermwidget-2.4.0.tar.xz) = zrfRmR7MDnW3Uba3eGxJYlmNNnxumgtV94/BKknyUwQ=
SIZE (lxqt/qtermwidget-2.4.0.tar.xz) = 202592
+2
View File
@@ -25,6 +25,7 @@ share/qtermwidget6/color-schemes/DarkPastels.colorscheme
share/qtermwidget6/color-schemes/Falcon.colorscheme
share/qtermwidget6/color-schemes/GreenOnBlack.colorscheme
share/qtermwidget6/color-schemes/Linux.colorscheme
share/qtermwidget6/color-schemes/Nord.colorscheme
share/qtermwidget6/color-schemes/Solarized.colorscheme
share/qtermwidget6/color-schemes/SolarizedLight.colorscheme
share/qtermwidget6/color-schemes/Tango.colorscheme
@@ -79,6 +80,7 @@ share/qtermwidget6/translations/qtermwidget_it.qm
share/qtermwidget6/translations/qtermwidget_ja.qm
share/qtermwidget6/translations/qtermwidget_ka.qm
share/qtermwidget6/translations/qtermwidget_kab.qm
share/qtermwidget6/translations/qtermwidget_kk.qm
share/qtermwidget6/translations/qtermwidget_ko.qm
share/qtermwidget6/translations/qtermwidget_lg.qm
share/qtermwidget6/translations/qtermwidget_lt.qm
+2 -2
View File
@@ -3,11 +3,11 @@ COMMENT = qt platform integration plugin for LXQt
NAME = lxqt-qtplugin
WANTLIB += ${COMPILER_LIBCXX} GL Qt6Core Qt6DBus Qt6Gui Qt6Svg
WANTLIB += Qt6Widgets Qt6XdgIconLoader dbusmenu-lxqt m
WANTLIB += Qt6Widgets Qt6XdgIconLoader dbusmenu-lxqt m xkbcommon
LIB_DEPENDS = x11/qt6/qtsvg \
x11/lxqt/libqtxdg \
x11/lxqt/libdbusmenu
x11/lxqt/libdbusmenu>=0.4.0
BUILD_DEPENDS += x11/lxqt/libfm-qt
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-qtplugin-2.2.0.tar.xz) = 4DoPA+CkvcBZ5y1MnF+OU4fXd4zYW51T/Hu4xEA4BfA=
SIZE (lxqt/lxqt-qtplugin-2.2.0.tar.xz) = 24228
SHA256 (lxqt/lxqt-qtplugin-2.4.0.tar.xz) = jDa1cmE8yw41056HwESsB+EVwt6Fu9tkb/5FM694ikU=
SIZE (lxqt/lxqt-qtplugin-2.4.0.tar.xz) = 25100
@@ -1,15 +0,0 @@
https://github.com/lxqt/lxqt-qtplugin/commit/90473945206dbf21816a00dfba27426a5b5a9e25
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -27,6 +27,10 @@ find_package(lxqt2-build-tools ${LXQTBT_MINIMUM_VERSIO
find_package(dbusmenu-lxqt ${DBUSMENU_MINIMUM_VERSION} REQUIRED)
find_package(fm-qt6 ${FMQT_MINIMUM_VERSION} REQUIRED)
+if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0")
+ find_package(Qt6GuiPrivate REQUIRED)
+endif()
+
get_target_property(LIB_FM_QT_CONFIGURATIONS fm-qt6 IMPORTED_CONFIGURATIONS)
if (LIB_FM_QT_CONFIGURATIONS)
# Extract the .soname from the first configuration found.
@@ -1,22 +0,0 @@
https://github.com/lxqt/lxqt-qtplugin/commit/90473945206dbf21816a00dfba27426a5b5a9e25
Index: src/CMakeLists.txt
--- src/CMakeLists.txt.orig
+++ src/CMakeLists.txt
@@ -33,10 +33,13 @@ target_compile_definitions(qtlxqt
)
target_link_libraries(qtlxqt
- Qt6::Widgets
- Qt6::DBus
- dbusmenu-lxqt
- Qt6XdgIconLoader
+ PRIVATE
+ Qt6::GuiPrivate
+ PUBLIC
+ Qt6::Widgets
+ Qt6::DBus
+ dbusmenu-lxqt
+ Qt6XdgIconLoader
)
lxqt_query_qt(_QT_PLUGINS_DIR QT_INSTALL_PLUGINS)
+1 -1
View File
@@ -1,6 +1,6 @@
COMMENT = libqtxdg user tools
VERSION = 4.2.0
VERSION = 4.4.0
NAME = qtxdg-tools
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/qtxdg-tools-4.2.0.tar.xz) = UDpuN3knCTQN3dZCgh7KE++NeJzSagaYPLfF4GuNY68=
SIZE (lxqt/qtxdg-tools-4.2.0.tar.xz) = 16852
SHA256 (lxqt/qtxdg-tools-4.4.0.tar.xz) = 8hukMI6sDv/UF9kQzEkW33tiAqru53e1G7Eg96vGxaw=
SIZE (lxqt/qtxdg-tools-4.4.0.tar.xz) = 16948
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-runner-2.2.0.tar.xz) = 4VyqtMm8TpWxRwlTEOxO2FVTqQbh1DgQZ0YLY6KG6JA=
SIZE (lxqt/lxqt-runner-2.2.0.tar.xz) = 231568
SHA256 (lxqt/lxqt-runner-2.4.0.tar.xz) = 0EQfGJIhYtte9qWpYXqiCwtDfS3cdtBUL7Msf9aPkCk=
SIZE (lxqt/lxqt-runner-2.4.0.tar.xz) = 235852
+1 -1
View File
@@ -1,7 +1,7 @@
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -143,7 +143,7 @@ target_compile_definitions(${PROJECT_NAME}
@@ -130,7 +130,7 @@ target_compile_definitions(${PROJECT_NAME}
target_link_libraries(${PROJECT_NAME}
${lxqt-runner_LIBRARIES}
KF6::WindowSystem
+2
View File
@@ -38,6 +38,7 @@ share/lxqt/translations/lxqt-runner/lxqt-runner_it.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_ja.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_ka.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_kab.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_kk.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_ko.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_lg.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_lt.qm
@@ -56,6 +57,7 @@ share/lxqt/translations/lxqt-runner/lxqt-runner_sl.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_sr@latin.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_sr_BA.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_sr_RS.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_sv.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_th_TH.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_tr.qm
share/lxqt/translations/lxqt-runner/lxqt-runner_uk.qm
+1 -4
View File
@@ -1,12 +1,9 @@
COMMENT = tool for fast making screenshots
VERSION = 3.0.0
REVISION = 0
VERSION = 3.2.0
NAME = screengrab
SHARED_LIBS += extedit 0.0 # 1.0
WANTLIB += ${COMPILER_LIBCXX} GL ICE KF6WindowSystem LayerShellQtInterface
WANTLIB += Qt6Core Qt6DBus Qt6Gui Qt6Network Qt6Svg Qt6WaylandClient
WANTLIB += Qt6Widgets Qt6Xdg Qt6XdgIconLoader Qt6Xml SM X11 X11-xcb
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/screengrab-3.0.0.tar.xz) = MK0EKGiFlesJymhBM8G7GwLEr/rjAnkcTS63mQ9szuc=
SIZE (lxqt/screengrab-3.0.0.tar.xz) = 376620
SHA256 (lxqt/screengrab-3.2.0.tar.xz) = 9D8nsmHDsi8Fx5ywExRguxRPrycgtZD8kGyJy802eL8=
SIZE (lxqt/screengrab-3.2.0.tar.xz) = 373192
@@ -1,16 +0,0 @@
https://github.com/lxqt/screengrab/commit/1621ef5df9461cdd1dcef3faee36e9419f1ca08c
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -28,6 +28,11 @@ find_package(LayerShellQt ${SHELLQT_MINIMUM_VERSION} R
find_package(KF6WindowSystem ${KF6_MINIMUM_VERSION} REQUIRED)
find_package(lxqt2-build-tools ${LXQTBT_MINIMUM_VERSION} REQUIRED)
+if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0")
+ find_package(Qt6GuiPrivate REQUIRED)
+ find_package(Qt6WaylandClientPrivate REQUIRED)
+endif()
+
# right now we declare it as required
find_package(X11 REQUIRED)
set(HAVE_X11 1)
+1 -9
View File
@@ -1,14 +1,5 @@
@bin bin/screengrab
share/applications/screengrab.desktop
share/doc/screengrab/
share/doc/screengrab/html/
share/doc/screengrab/html/default.css
share/doc/screengrab/html/en/
share/doc/screengrab/html/en/index.html
share/doc/screengrab/html/pt_BR/
share/doc/screengrab/html/pt_BR/index.html
share/doc/screengrab/html/ru/
share/doc/screengrab/html/ru/index.html
share/examples/screengrab/
@sample ${SYSCONFDIR}/xdg/screengrab/
share/examples/screengrab/screengrab.conf
@@ -41,6 +32,7 @@ share/screengrab/translations/screengrab_it.qm
share/screengrab/translations/screengrab_ja.qm
share/screengrab/translations/screengrab_ka.qm
share/screengrab/translations/screengrab_kab.qm
share/screengrab/translations/screengrab_kk.qm
share/screengrab/translations/screengrab_ko.qm
share/screengrab/translations/screengrab_lg.qm
share/screengrab/translations/screengrab_lt.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-session-2.2.0.tar.xz) = J7wmE7UWr1A1EfFfOCFu+WULyPZa5hVJkLdrGiDTiYo=
SIZE (lxqt/lxqt-session-2.2.0.tar.xz) = 217924
SHA256 (lxqt/lxqt-session-2.4.0.tar.xz) = 1383js4L/HGV8ZZOiPVZGXKcOwpVqFjXFV/6rMV7ukQ=
SIZE (lxqt/lxqt-session-2.4.0.tar.xz) = 224600
@@ -1,7 +1,7 @@
Index: lxqt-config-session/sessionconfigwindow.cpp
--- lxqt-config-session/sessionconfigwindow.cpp.orig
+++ lxqt-config-session/sessionconfigwindow.cpp
@@ -128,7 +128,7 @@ void SessionConfigWindow::updateCfgComboBox(QComboBox
@@ -135,7 +135,7 @@ void SessionConfigWindow::updateCfgComboBox(QComboBox
const QString &prompt
)
{
@@ -1,7 +1,7 @@
Index: lxqt-session/src/wmselectdialog.cpp
--- lxqt-session/src/wmselectdialog.cpp.orig
+++ lxqt-session/src/wmselectdialog.cpp
@@ -117,7 +117,7 @@ void WmSelectDialog::selectFileDialog(const QModelInde
@@ -116,7 +116,7 @@ void WmSelectDialog::selectFileDialog(const QModelInde
if (item->data(1, TYPE_ROLE) != SELECT_DLG_TYPE)
return;
+5
View File
@@ -55,6 +55,7 @@ share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-confi
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_it.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_ja.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_ka.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_kk.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_ko.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_lg.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_lt.qm
@@ -72,6 +73,7 @@ share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-confi
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_sl.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_sr@latin.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_sr_RS.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_sv.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_th_TH.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_tr.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-config-session/lxqt-config-session_uk.qm
@@ -91,6 +93,7 @@ share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_el.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_en_GB.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_es.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_et.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_eu.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_fi.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_fr.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_gl.qm
@@ -117,6 +120,7 @@ share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_ru.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_si.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_sk.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_sl.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_sv.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_tr.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_uk.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-leave/lxqt-leave_vi.qm
@@ -172,6 +176,7 @@ share/examples/lxqt-session/xdg/lxqt/translations/lxqt-session/lxqt-session_sl.q
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-session/lxqt-session_sr@latin.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-session/lxqt-session_sr_BA.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-session/lxqt-session_sr_RS.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-session/lxqt-session_sv.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-session/lxqt-session_th_TH.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-session/lxqt-session_tr.qm
share/examples/lxqt-session/xdg/lxqt/translations/lxqt-session/lxqt-session_uk.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-sudo-2.2.0.tar.xz) = jngRHA6GWXyLgAPbHmTN/dfnOP7C95bR1Si2uXpFz5E=
SIZE (lxqt/lxqt-sudo-2.2.0.tar.xz) = 36760
SHA256 (lxqt/lxqt-sudo-2.4.0.tar.xz) = dKqhZjsogUTxOY/ykzDORHFaUajXIQ8WciI8YFKFbqs=
SIZE (lxqt/lxqt-sudo-2.4.0.tar.xz) = 42768
+3
View File
@@ -24,6 +24,7 @@ share/lxqt/translations/lxqt-sudo/lxqt-sudo_el.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_en_GB.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_es.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_et.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_eu.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_fi.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_fr.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_gl.qm
@@ -35,6 +36,7 @@ share/lxqt/translations/lxqt-sudo/lxqt-sudo_it.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_ja.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_ka.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_kab.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_kk.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_ko.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_lg.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_lt.qm
@@ -49,6 +51,7 @@ share/lxqt/translations/lxqt-sudo/lxqt-sudo_ru.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_si.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_sk.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_sl.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_sv.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_tr.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_uk.qm
share/lxqt/translations/lxqt-sudo/lxqt-sudo_vi.qm
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (lxqt/lxqt-themes-2.2.0.tar.xz) = ksWo2K0IylUQoyzYL7ojFgalbJM472M6CpipewK69PI=
SIZE (lxqt/lxqt-themes-2.2.0.tar.xz) = 27203192
SHA256 (lxqt/lxqt-themes-2.4.0.tar.xz) = s5R14P2vW5R0cUHaKDGWlNRdRkaz2DxFkX9aHZr0Mvs=
SIZE (lxqt/lxqt-themes-2.4.0.tar.xz) = 27241588
+103 -36
View File
@@ -62,31 +62,68 @@ share/lxqt/themes/Arch-Colors/spacer-plugin/spacer-line.svg
share/lxqt/themes/Arch-Colors/unchecked.svg
share/lxqt/themes/Arch-Colors/wallpaper.cfg
share/lxqt/themes/Clearlooks/
share/lxqt/themes/Clearlooks/arrow-left-selected.svg
share/lxqt/themes/Clearlooks/arrow-left.svg
share/lxqt/themes/Clearlooks/arrow-right-selected.svg
share/lxqt/themes/Clearlooks/arrow-right.svg
share/lxqt/themes/Clearlooks/calendar-popup/
share/lxqt/themes/Clearlooks/calendar-popup/left-arrow.svg
share/lxqt/themes/Clearlooks/calendar-popup/right-arrow.svg
share/lxqt/themes/Clearlooks/checked-selected.svg
share/lxqt/themes/Clearlooks/checked.svg
share/lxqt/themes/Clearlooks/assets/
share/lxqt/themes/Clearlooks/assets/arrows/
share/lxqt/themes/Clearlooks/assets/arrows/arrow-left-selected.svg
share/lxqt/themes/Clearlooks/assets/arrows/arrow-left.svg
share/lxqt/themes/Clearlooks/assets/arrows/arrow-right-selected.svg
share/lxqt/themes/Clearlooks/assets/arrows/arrow-right.svg
share/lxqt/themes/Clearlooks/assets/boxes/
share/lxqt/themes/Clearlooks/assets/boxes/checked-selected.png
share/lxqt/themes/Clearlooks/assets/boxes/checked.png
share/lxqt/themes/Clearlooks/assets/boxes/unchecked-selected.png
share/lxqt/themes/Clearlooks/assets/boxes/unchecked.png
share/lxqt/themes/Clearlooks/assets/buttons/
share/lxqt/themes/Clearlooks/assets/buttons/arrow-down-active.png
share/lxqt/themes/Clearlooks/assets/buttons/arrow-down.png
share/lxqt/themes/Clearlooks/assets/buttons/arrow-up-active.png
share/lxqt/themes/Clearlooks/assets/buttons/arrow-up.png
share/lxqt/themes/Clearlooks/assets/buttons/spin-down-active.png
share/lxqt/themes/Clearlooks/assets/buttons/spin-down.png
share/lxqt/themes/Clearlooks/assets/buttons/spin-up-active.png
share/lxqt/themes/Clearlooks/assets/buttons/spin-up.png
share/lxqt/themes/Clearlooks/assets/icons/
share/lxqt/themes/Clearlooks/assets/icons/cancel.svg
share/lxqt/themes/Clearlooks/assets/icons/menu.svg
share/lxqt/themes/Clearlooks/assets/menus/
share/lxqt/themes/Clearlooks/assets/menus/bg.png
share/lxqt/themes/Clearlooks/assets/menus/mainmenu.svg
share/lxqt/themes/Clearlooks/assets/menus/menuitem.png
share/lxqt/themes/Clearlooks/assets/panel/
share/lxqt/themes/Clearlooks/assets/panel/dot-spacer.png
share/lxqt/themes/Clearlooks/assets/panel/line-spacer.png
share/lxqt/themes/Clearlooks/assets/scrollbars/
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-down-hover.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-down-pressed.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-down.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-left-hover.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-left-pressed.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-left.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-right-hover.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-right-pressed.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-right.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-up-hover.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-up-pressed.png
share/lxqt/themes/Clearlooks/assets/scrollbars/arrow-up.png
share/lxqt/themes/Clearlooks/assets/scrollbars/grip-h.png
share/lxqt/themes/Clearlooks/assets/scrollbars/grip-v.png
share/lxqt/themes/Clearlooks/assets/scrollbars/groove.png
share/lxqt/themes/Clearlooks/assets/scrollbars/handle-h-active.png
share/lxqt/themes/Clearlooks/assets/scrollbars/handle-h.png
share/lxqt/themes/Clearlooks/assets/scrollbars/handle-v-active.png
share/lxqt/themes/Clearlooks/assets/scrollbars/handle-v.png
share/lxqt/themes/Clearlooks/assets/scrollbars/scrollbar-h.png
share/lxqt/themes/Clearlooks/assets/scrollbars/scrollbar-v.png
share/lxqt/themes/Clearlooks/assets/scrollbars/slider-active.png
share/lxqt/themes/Clearlooks/assets/scrollbars/slider-v.png
share/lxqt/themes/Clearlooks/assets/scrollbars/slider.png
share/lxqt/themes/Clearlooks/assets/scrollbars/subpage.png
share/lxqt/themes/Clearlooks/lxqt-config.qss
share/lxqt/themes/Clearlooks/lxqt-notificationd/
share/lxqt/themes/Clearlooks/lxqt-leave.qss
share/lxqt/themes/Clearlooks/lxqt-notificationd.qss
share/lxqt/themes/Clearlooks/lxqt-notificationd/cancel.svg
share/lxqt/themes/Clearlooks/lxqt-panel.qss
share/lxqt/themes/Clearlooks/lxqt-runner/
share/lxqt/themes/Clearlooks/lxqt-runner.qss
share/lxqt/themes/Clearlooks/lxqt-runner/close.svg
share/lxqt/themes/Clearlooks/lxqt-runner/down-arrow.svg
share/lxqt/themes/Clearlooks/mainmenu.svg
share/lxqt/themes/Clearlooks/preview.png
share/lxqt/themes/Clearlooks/spacer-plugin/
share/lxqt/themes/Clearlooks/spacer-plugin/spacer-dots.svg
share/lxqt/themes/Clearlooks/spacer-plugin/spacer-line.svg
share/lxqt/themes/Clearlooks/unchecked-selected.svg
share/lxqt/themes/Clearlooks/unchecked.svg
share/lxqt/themes/Clearlooks/wallpaper.cfg
share/lxqt/themes/KDE-Plasma/
share/lxqt/themes/KDE-Plasma/checked.svg
@@ -111,27 +148,57 @@ share/lxqt/themes/KDE-Plasma/spacer-plugin/spacer-line.svg
share/lxqt/themes/KDE-Plasma/unchecked.svg
share/lxqt/themes/KDE-Plasma/wallpaper.cfg
share/lxqt/themes/Leech/
share/lxqt/themes/Leech/arrow-left.svg
share/lxqt/themes/Leech/arrow-right.svg
share/lxqt/themes/Leech/calendar-popup/
share/lxqt/themes/Leech/calendar-popup/left-arrow.svg
share/lxqt/themes/Leech/calendar-popup/right-arrow.svg
share/lxqt/themes/Leech/checked.svg
share/lxqt/themes/Leech/assets/
share/lxqt/themes/Leech/assets/arrows/
share/lxqt/themes/Leech/assets/arrows/arrow-left-selected.png
share/lxqt/themes/Leech/assets/arrows/arrow-left.png
share/lxqt/themes/Leech/assets/arrows/arrow-right-selected.png
share/lxqt/themes/Leech/assets/arrows/arrow-right.png
share/lxqt/themes/Leech/assets/boxes/
share/lxqt/themes/Leech/assets/boxes/checked.png
share/lxqt/themes/Leech/assets/boxes/unchecked.png
share/lxqt/themes/Leech/assets/buttons/
share/lxqt/themes/Leech/assets/buttons/arrow-down-pressed.png
share/lxqt/themes/Leech/assets/buttons/arrow-down.png
share/lxqt/themes/Leech/assets/buttons/arrow-up-pressed.png
share/lxqt/themes/Leech/assets/buttons/arrow-up.png
share/lxqt/themes/Leech/assets/buttons/spin-down-hover.png
share/lxqt/themes/Leech/assets/buttons/spin-down.png
share/lxqt/themes/Leech/assets/buttons/spin-up-hover.png
share/lxqt/themes/Leech/assets/buttons/spin-up.png
share/lxqt/themes/Leech/assets/icons/
share/lxqt/themes/Leech/assets/icons/close.png
share/lxqt/themes/Leech/assets/icons/close.svg
share/lxqt/themes/Leech/assets/icons/menu.svg
share/lxqt/themes/Leech/assets/menus/
share/lxqt/themes/Leech/assets/menus/bg.png
share/lxqt/themes/Leech/assets/menus/mainmenu.svg
share/lxqt/themes/Leech/assets/menus/menuitem.png
share/lxqt/themes/Leech/assets/panel/
share/lxqt/themes/Leech/assets/panel/dot-spacer.png
share/lxqt/themes/Leech/assets/panel/line-spacer.png
share/lxqt/themes/Leech/assets/panel/task-active.png
share/lxqt/themes/Leech/assets/panel/task-hover.png
share/lxqt/themes/Leech/assets/panel/task-onhover.png
share/lxqt/themes/Leech/assets/panel/task-urgent.png
share/lxqt/themes/Leech/assets/panel/task.png
share/lxqt/themes/Leech/assets/scrollbars/
share/lxqt/themes/Leech/assets/scrollbars/arrow-down.png
share/lxqt/themes/Leech/assets/scrollbars/arrow-left.png
share/lxqt/themes/Leech/assets/scrollbars/arrow-right.png
share/lxqt/themes/Leech/assets/scrollbars/arrow-up.png
share/lxqt/themes/Leech/assets/scrollbars/grip-h-active.png
share/lxqt/themes/Leech/assets/scrollbars/grip-h.png
share/lxqt/themes/Leech/assets/scrollbars/grip-v-active.png
share/lxqt/themes/Leech/assets/scrollbars/grip-v.png
share/lxqt/themes/Leech/assets/scrollbars/scrollbar-h.png
share/lxqt/themes/Leech/assets/scrollbars/scrollbar-v.png
share/lxqt/themes/Leech/lxqt-config.qss
share/lxqt/themes/Leech/lxqt-notificationd/
share/lxqt/themes/Leech/lxqt-leave.qss
share/lxqt/themes/Leech/lxqt-notificationd.qss
share/lxqt/themes/Leech/lxqt-notificationd/cancel.svg
share/lxqt/themes/Leech/lxqt-panel.qss
share/lxqt/themes/Leech/lxqt-runner/
share/lxqt/themes/Leech/lxqt-runner.qss
share/lxqt/themes/Leech/lxqt-runner/close.svg
share/lxqt/themes/Leech/lxqt-runner/down-arrow.svg
share/lxqt/themes/Leech/mainmenu.svg
share/lxqt/themes/Leech/preview.png
share/lxqt/themes/Leech/spacer-plugin/
share/lxqt/themes/Leech/spacer-plugin/spacer-dots.svg
share/lxqt/themes/Leech/spacer-plugin/spacer-line.svg
share/lxqt/themes/Leech/unchecked.svg
share/lxqt/themes/Leech/wallpaper.cfg
share/lxqt/themes/Valendas/
share/lxqt/themes/Valendas/arrow-left-selected.svg