Hello community, here is the log from the commit of package plasma5-desktop for openSUSE:Factory checked in at 2018-04-17 11:09:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plasma5-desktop (Old) and /work/SRC/openSUSE:Factory/.plasma5-desktop.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-desktop" Tue Apr 17 11:09:59 2018 rev:82 rq:594854 version:5.12.4 Changes: -------- --- /work/SRC/openSUSE:Factory/plasma5-desktop/plasma5-desktop.changes 2018-03-30 12:06:02.340735893 +0200 +++ /work/SRC/openSUSE:Factory/.plasma5-desktop.new/plasma5-desktop.changes 2018-04-17 11:10:00.783528388 +0200 @@ -1,0 +2,6 @@ +Mon Apr 9 09:20:03 UTC 2018 - [email protected] + +- Add Make-automounting-work-even-if-StorageAccess-is-ignored.patch + to fix Auto-mounting not working in some cases (kde#389479) + +------------------------------------------------------------------- New: ---- Make-automounting-work-even-if-StorageAccess-is-ignored.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plasma5-desktop.spec ++++++ --- /var/tmp/diff_new_pack.Z7x9qG/_old 2018-04-17 11:10:01.663487101 +0200 +++ /var/tmp/diff_new_pack.Z7x9qG/_new 2018-04-17 11:10:01.663487101 +0200 @@ -34,6 +34,7 @@ # PATCH-FIX-OPENSUSE Patch1: 0001-Use-themed-user-face-icon-in-kickoff.patch # PATCHES 100-200 and above are from upstream 5.12 branch +Patch100: Make-automounting-work-even-if-StorageAccess-is-ignored.patch # PATCHES 201-300 and above are from upstream master/5.13 branch Patch201: 0001-Place-toolbox-in-the-top-right-corner-of-the-screen.patch %if 0%{?suse_version} > 1325 ++++++ Make-automounting-work-even-if-StorageAccess-is-ignored.patch ++++++ >From 8dedbcdf4197eccd5e06c18a66a63d15615c8171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <[email protected]> Date: Sun, 8 Apr 2018 22:24:21 +0200 Subject: Make automounting work even if StorageAccess is ignored Summary: There is no reason to make mounting dependent on the StorageAccess.ignore flag, which just serves a a hint for visualization. This change sneaked in when porting to KF5, no justification given. BUG: 389479 Reviewers: ngraham, #plasma, broulik Reviewed By: ngraham Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D12050 --- solid-device-automounter/kded/DeviceAutomounter.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/solid-device-automounter/kded/DeviceAutomounter.cpp b/solid-device-automounter/kded/DeviceAutomounter.cpp index 7a20bd5..f1bc19d 100644 --- a/solid-device-automounter/kded/DeviceAutomounter.cpp +++ b/solid-device-automounter/kded/DeviceAutomounter.cpp @@ -67,9 +67,6 @@ void DeviceAutomounter::automountDevice(Solid::Device &dev, AutomounterSettings: { if (dev.is<Solid::StorageVolume>() && dev.is<Solid::StorageAccess>()) { Solid::StorageAccess *sa = dev.as<Solid::StorageAccess>(); - if (sa->isIgnored()) { - return; - } AutomounterSettings::setDeviceLastSeenMounted(dev.udi(), sa->isAccessible()); AutomounterSettings::saveDevice(dev); -- cgit v0.11.2
