Package: release.debian.org Severity: normal X-Debbugs-Cc: plasma-integrat...@packages.debian.org, Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Control: affects -1 + src:plasma-integration User: release.debian....@packages.debian.org Usertags: unblock
Dear Release Team, please unblock package plasma-integration. [ Reason ] It contains the following changes: * New upstream release (6.3.6). - Kdirselectdialog: correct initial focus. (kde#505046) [ Tests ] - Tested the focus fix successfully. [ Risks ] Only contains the latest upstream point release for the 6.3 Plasma branch. Further fixes can easily be backported or the change reverted. [ Checklist ] [x] all changes are documented in the d/changelog [x] I reviewed all changes and I approve them [x] attach debdiff against the package in testing Thanks ! unblock plasma-integration/6.3.6-1
diff -Nru plasma-integration-6.3.4/CMakeLists.txt plasma-integration-6.3.6/CMakeLists.txt --- plasma-integration-6.3.4/CMakeLists.txt 2025-04-02 05:37:49.000000000 +0200 +++ plasma-integration-6.3.6/CMakeLists.txt 2025-07-08 13:47:08.000000000 +0200 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) project(PlasmaIntegration) -set(PROJECT_VERSION "6.3.4") +set(PROJECT_VERSION "6.3.6") set(PROJECT_VERSION_MAJOR 6) set(QT5_MIN_VERSION "5.15.2") diff -Nru plasma-integration-6.3.4/debian/changelog plasma-integration-6.3.6/debian/changelog --- plasma-integration-6.3.4/debian/changelog 2025-04-03 01:01:57.000000000 +0200 +++ plasma-integration-6.3.6/debian/changelog 2025-07-21 08:16:06.000000000 +0200 @@ -1,3 +1,11 @@ +plasma-integration (6.3.6-1) unstable; urgency=medium + + [ Aurélien COUDERC ] + * New upstream release (6.3.6). + - Kdirselectdialog: correct initial focus. (kde#505046) + + -- Aurélien COUDERC <couc...@debian.org> Mon, 21 Jul 2025 08:16:06 +0200 + plasma-integration (6.3.4-1) unstable; urgency=medium [ Patrick Franz ] diff -Nru plasma-integration-6.3.4/qt5/src/platformtheme/kdirselectdialog.cpp plasma-integration-6.3.6/qt5/src/platformtheme/kdirselectdialog.cpp --- plasma-integration-6.3.4/qt5/src/platformtheme/kdirselectdialog.cpp 2025-04-02 05:37:49.000000000 +0200 +++ plasma-integration-6.3.6/qt5/src/platformtheme/kdirselectdialog.cpp 2025-07-08 13:47:08.000000000 +0200 @@ -413,6 +413,8 @@ mainLayout->addWidget(urlComboWrapper, 0); mainLayout->addWidget(d->m_buttons); + d->m_treeView->setFocus(); + connect(d->m_treeView, &KFileTreeView::currentUrlChanged, this, [this](const QUrl &url) { d->slotCurrentChanged(url); }); diff -Nru plasma-integration-6.3.4/qt6/src/platformtheme/kdirselectdialog.cpp plasma-integration-6.3.6/qt6/src/platformtheme/kdirselectdialog.cpp --- plasma-integration-6.3.4/qt6/src/platformtheme/kdirselectdialog.cpp 2025-04-02 05:37:49.000000000 +0200 +++ plasma-integration-6.3.6/qt6/src/platformtheme/kdirselectdialog.cpp 2025-07-08 13:47:08.000000000 +0200 @@ -413,6 +413,8 @@ mainLayout->addWidget(urlComboWrapper, 0); mainLayout->addWidget(d->m_buttons); + d->m_treeView->setFocus(); + connect(d->m_treeView, &KFileTreeView::currentUrlChanged, this, [this](const QUrl &url) { d->slotCurrentChanged(url); });