Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dolphin for openSUSE:Factory checked in at 2024-08-26 22:03:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dolphin (Old) and /work/SRC/openSUSE:Factory/.dolphin.new.2698 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dolphin" Mon Aug 26 22:03:43 2024 rev:123 rq:1195325 version:24.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/dolphin/dolphin.changes 2024-07-05 19:50:48.549558136 +0200 +++ /work/SRC/openSUSE:Factory/.dolphin.new.2698/dolphin.changes 2024-08-26 22:03:57.586301793 +0200 @@ -1,0 +2,15 @@ +Mon Aug 19 07:13:13 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Update to 24.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/24.08.0/ +- Too many changes since 24.05.2, only listing bugfixes: + * KStandardItemListWidget: select by number of unicode chars (kde#466814) + * Offer installing Filelight if no disk usage analyzer was found (kde#477739) + * Add "Move to New Folderâ¦" action (kde#484555) + * Avoid implicitly selecting items (kde#424723) + * Check if namejob is already being run before opening new createDirectory dialog (kde#481401) + * DolphinView: Update selection on newly created item(s) Adjust paste to url to new KF6 signals (kde#476670) + +------------------------------------------------------------------- Old: ---- dolphin-24.05.2.tar.xz dolphin-24.05.2.tar.xz.sig New: ---- dolphin-24.08.0.tar.xz dolphin-24.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dolphin.spec ++++++ --- /var/tmp/diff_new_pack.KcvNme/_old 2024-08-26 22:03:58.102323353 +0200 +++ /var/tmp/diff_new_pack.KcvNme/_new 2024-08-26 22:03:58.106323520 +0200 @@ -16,13 +16,13 @@ # -%define kf6_version 6.0.0 +%define kf6_version 6.3.0 %define plasma6_version 5.27.80 %define qt6_version 6.6.0 %bcond_without released Name: dolphin -Version: 24.05.2 +Version: 24.08.0 Release: 0 Summary: KDE File Manager License: GPL-2.0-or-later @@ -171,8 +171,10 @@ %{_kf6_libdir}/libdolphinprivate.so.* %dir %{_kf6_plugindir}/dolphin %dir %{_kf6_plugindir}/dolphin/kcms +%dir %{_kf6_plugindir}/kf6/kfileitemaction/ %{_kf6_plugindir}/dolphin/kcms/kcm_dolphin*.so %{_kf6_plugindir}/kf6/parts/dolphinpart.so +%{_kf6_plugindir}/kf6/kfileitemaction/movetonewfolderitemaction.so %dir %{_kf6_sharedir}/dolphin %{_kf6_sharedir}/dolphin/dolphinpartactions.desktop ++++++ 0001-Revert-Disallow-executing-Dolphin-as-root-on-Linux.patch ++++++ --- /var/tmp/diff_new_pack.KcvNme/_old 2024-08-26 22:03:58.126324356 +0200 +++ /var/tmp/diff_new_pack.KcvNme/_new 2024-08-26 22:03:58.130324523 +0200 @@ -10,34 +10,29 @@ src/main.cpp | 11 ------------- 1 file changed, 11 deletions(-) -Index: dolphin-19.11.70git.20230406T015410~70b160f89/src/main.cpp +Index: dolphin-24.01.80git.20240701T140601~e2f316578/src/main.cpp =================================================================== ---- dolphin-19.11.70git.20230406T015410~70b160f89.orig/src/main.cpp 2023-04-06 03:54:10.000000000 +0200 -+++ dolphin-19.11.70git.20230406T015410~70b160f89/src/main.cpp 2023-04-07 01:06:53.444363054 +0200 -@@ -50,24 +50,7 @@ +--- dolphin-24.01.80git.20240701T140601~e2f316578.orig/src/main.cpp 2024-07-01 16:06:01.000000000 +0200 ++++ dolphin-24.01.80git.20240701T140601~e2f316578/src/main.cpp 2024-07-01 22:12:17.154311426 +0200 +@@ -59,20 +59,6 @@ int main(int argc, char **argv) { -#ifndef Q_OS_WIN - // Prohibit using sudo or kdesu (but allow using the root user directly) -- if (getuid() == 0) { -- if (!qEnvironmentVariableIsEmpty("SUDO_USER")) { -- std::cout << "Running Dolphin with sudo is not supported as it can cause bugs and expose you to security vulnerabilities. Instead, install the " -- "`kio-admin` package from your distro and use it to manage root-owned locations by right-clicking on them and selecting \"Open as " -- "Administrator\"." -- << std::endl; -- return EXIT_FAILURE; -- } else if (!qEnvironmentVariableIsEmpty("KDESU_USER")) { -- std::cout << "Running Dolphin with kdesu is not supported as it can cause bugs and expose you to security vulnerabilities. Instead, install the " -- "`kio-admin` package from your distro and use it to manage root-owned locations by right-clicking on them and selecting \"Open as " -- "Administrator\"." -- << std::endl; -- return EXIT_FAILURE; -- } +- if (getuid() == 0 && (!qEnvironmentVariableIsEmpty("SUDO_USER") || !qEnvironmentVariableIsEmpty("KDESU_USER"))) { +- QCoreApplication app(argc, argv); // Needed for the xi18ndc() call below. +- std::cout << qPrintable( +- xi18ndc(dolphinTranslationDomain, +- "@info:shell %1 is a terminal command", +- "Running <application>Dolphin</application> with <command>sudo</command> is discouraged. Please run <icode>%1</icode> instead.", +- QStringLiteral("dolphin --sudo"))) +- << std::endl; +- // We could perform a privilege de-escalation here and continue as normal. It is a bit safer though to simply let the user restart without sudo. +- return EXIT_FAILURE; - } -#endif -+ /** - * enable high dpi support + * trigger initialisation of proper icon theme ++++++ dolphin-24.05.2.tar.xz -> dolphin-24.08.0.tar.xz ++++++ ++++ 274703 lines of diff (skipped) ++++++ dolphin-go_up.diff ++++++ --- /var/tmp/diff_new_pack.KcvNme/_old 2024-08-26 22:03:59.326374495 +0200 +++ /var/tmp/diff_new_pack.KcvNme/_new 2024-08-26 22:03:59.330374663 +0200 @@ -1,8 +1,8 @@ -Index: dolphin-19.11.70git.20230101T031501~0c1157f3/src/dolphinui.rc +Index: dolphin-24.01.80git.20240701T140601~e2f316578/src/dolphinui.rc =================================================================== ---- dolphin-19.11.70git.20230101T031501~0c1157f3.orig/src/dolphinui.rc -+++ dolphin-19.11.70git.20230101T031501~0c1157f3/src/dolphinui.rc -@@ -105,6 +105,7 @@ +--- dolphin-24.01.80git.20240701T140601~e2f316578.orig/src/dolphinui.rc 2024-07-01 16:06:01.000000000 +0200 ++++ dolphin-24.01.80git.20240701T140601~e2f316578/src/dolphinui.rc 2024-07-01 22:10:57.370953727 +0200 +@@ -107,6 +107,7 @@ <text context="@title:menu">Main Toolbar</text> <Action name="go_back" /> <Action name="go_forward" />