[kwin] [Bug 483265] kwin_core crash when Java application creates popup

2024-06-11 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=483265

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #3 from Harald Sitter  ---
> 2. Click any button that results in a popup window

Please go into more detail on which button would cause this.

Also the relevant code changed a bit in 6.1, there's a good chance it is fixed
already.

-- 
You are receiving this mail because:
You are watching all bug changes.

[discuss.kde.org] [Bug 488127] "site feedback category" link is dead and probably obsolete

2024-06-10 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=488127

Harald Sitter  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 383861] Remember backtraces between reboots

2024-06-07 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=383861

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from Harald Sitter  ---
Effectively solved by coredumpctl + drkonqi integration of it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 482203] drkonqi-sentry-postman keeps uploading with full speed

2024-06-07 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=482203

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REOPENED|NEEDSINFO

--- Comment #5 from Harald Sitter  ---
Waiting on the info Malte asked for

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 488084] Updates are slow; consider incremental updates?

2024-06-07 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=488084

--- Comment #6 from Harald Sitter  ---
No. Just get the coffee in any case :)

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 488084] Updates are slow; consider incremental updates?

2024-06-06 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=488084

Harald Sitter  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |DOWNSTREAM
 Status|NEEDSINFO   |RESOLVED

--- Comment #4 from Harald Sitter  ---
Right, that isn't really in discover's control. We just tell dnf (through
packagekit) to make sure its cache is up to date. How it goes about doing that
is entirely up to dnf. You'll want to file a bug with Fedora instead.

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 488074] Two drkonqi windows appeared with errors for the first crash in Plasma 6.0.90 VMs

2024-06-05 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=488074

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #2 from Harald Sitter  ---
The STEPS TO REPRODUCE do not yield the described result for me. Can you check
again please?

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 488084] Updates are slow; consider incremental updates?

2024-06-05 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=488084

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||sit...@kde.org

--- Comment #1 from Harald Sitter  ---
Please fill in the template

OBSERVED RESULT


EXPECTED RESULT


SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 
KDE Frameworks Version: 
Qt Version: 

ADDITIONAL INFORMATION

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 487727] drkonqi causes 100% cpu load whenever I type in my password.

2024-06-05 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487727

--- Comment #15 from Harald Sitter  ---
Git commit f6f43a575f882e888270a2fe82d5b0fded586c1c by Harald Sitter.
Committed on 05/06/2024 at 13:27.
Pushed by sitter into branch 'Plasma/6.1'.

polkit: don't ignore fcntl errors

treat them as internal errors and warn about them

previously we'd ingore the errors and use an invalid fd, this would later
manifest
in infinite write loops on the invalid file descriptor (i.e. all writes fail
because the fd is garbage leading to an effective inifinite loop while trying
to write segments in coredumpexcavator.cpp)
(cherry picked from commit 245cc609efe36b100a29aadff60a0277bedc8de5)

M  +9-1src/coredump/polkit/main.cpp

https://invent.kde.org/plasma/drkonqi/-/commit/f6f43a575f882e888270a2fe82d5b0fded586c1c

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 487727] drkonqi causes 100% cpu load whenever I type in my password.

2024-06-05 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487727

Harald Sitter  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/drkonqi/-/commit/97390be |ma/drkonqi/-/commit/7e45b85
   |3fe3e5e615c74fbdb41e53eaa2c |29f0f4846965dad86988dbaf423
   |d26358  |94969a

--- Comment #14 from Harald Sitter  ---
Git commit 7e45b8529f0f4846965dad86988dbaf42394969a by Harald Sitter.
Committed on 05/06/2024 at 13:27.
Pushed by sitter into branch 'Plasma/6.1'.

polkit: correctly call fcntl

bit of a doozy this. fcntl requires a third argument as start position
for finding a free file descriptor. the previous incorrect call happened
to work in debug builds (presumably because the invalid memory would be
0x0) but failed in release builds (presumably because the invalid memory
would be some random large value).

explicitly set the target fd argument to at least 0 since we don't
really care what number the fd is so long as it is valid.
(cherry picked from commit 97390be3fe3e5e615c74fbdb41e53eaa2cd26358)

M  +1-1src/coredump/polkit/main.cpp

https://invent.kde.org/plasma/drkonqi/-/commit/7e45b8529f0f4846965dad86988dbaf42394969a

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 487727] drkonqi causes 100% cpu load whenever I type in my password.

2024-06-05 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487727

--- Comment #12 from Harald Sitter  ---
Git commit 245cc609efe36b100a29aadff60a0277bedc8de5 by Harald Sitter.
Committed on 05/06/2024 at 13:24.
Pushed by sitter into branch 'master'.

polkit: don't ignore fcntl errors

treat them as internal errors and warn about them

previously we'd ingore the errors and use an invalid fd, this would later
manifest
in infinite write loops on the invalid file descriptor (i.e. all writes fail
because the fd is garbage leading to an effective inifinite loop while trying
to write segments in coredumpexcavator.cpp)

M  +9-1src/coredump/polkit/main.cpp

https://invent.kde.org/plasma/drkonqi/-/commit/245cc609efe36b100a29aadff60a0277bedc8de5

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 487727] drkonqi causes 100% cpu load whenever I type in my password.

2024-06-05 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487727

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/plas
   ||ma/drkonqi/-/commit/97390be
   ||3fe3e5e615c74fbdb41e53eaa2c
   ||d26358
 Status|REPORTED|RESOLVED

--- Comment #11 from Harald Sitter  ---
Git commit 97390be3fe3e5e615c74fbdb41e53eaa2cd26358 by Harald Sitter.
Committed on 05/06/2024 at 13:24.
Pushed by sitter into branch 'master'.

polkit: correctly call fcntl

bit of a doozy this. fcntl requires a third argument as start position
for finding a free file descriptor. the previous incorrect call happened
to work in debug builds (presumably because the invalid memory would be
0x0) but failed in release builds (presumably because the invalid memory
would be some random large value).

explicitly set the target fd argument to at least 0 since we don't
really care what number the fd is so long as it is valid.

M  +1-1src/coredump/polkit/main.cpp

https://invent.kde.org/plasma/drkonqi/-/commit/97390be3fe3e5e615c74fbdb41e53eaa2cd26358

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 487905] Launching Elisa pinned icon fails with notification error

2024-06-05 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487905

--- Comment #6 from Harald Sitter  ---
(In reply to Marc from comment #5)
> or the application-launcher works just fine. 

Now that is interesting.

Looks like the app launcher does not use dbus invocation to start the
application. At face value that seems like a bug

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 488039] System Settings crash when leaving Firewall tab

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=488039

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Harald Sitter  ---


*** This bug has been marked as a duplicate of bug 485101 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 485101] Systemsettings crashed after viewing Firewall settings then switching to other category

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=485101

Harald Sitter  changed:

   What|Removed |Added

 CC||48oa7i...@mozmail.com

--- Comment #9 from Harald Sitter  ---
*** Bug 488039 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 488041] Discover crash due to "No space left on device"

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=488041

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG
 CC||sit...@kde.org

--- Comment #2 from Harald Sitter  ---
I am very sorry to hear your computer has been rendered useless. Unfortunately
there's nothing we can do about it, clearly something is out of resources if
multiple pieces of software say so. Please take this to a (fedora) support
forum to get help.

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487930] Trying to open folder representing ‘rest of the files’ results in error

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487930

Harald Sitter  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/filelight/-/commit/7f |ities/filelight/-/commit/aa
   |55949244a369b0401089e8778fd |c344478ee60edbfc32c52871d2d
   |160fe44edba |81c55590541

--- Comment #3 from Harald Sitter  ---
Git commit aac344478ee60edbfc32c52871d2d81c55590541 by Harald Sitter.
Committed on 04/06/2024 at 19:58.
Pushed by sitter into branch 'release/24.05'.

disable the context menu on fake shapes

fake shapes represent multiple entities and because of that are not
really interactable


(cherry picked from commit 7f55949244a369b0401089e8778fd160fe44edba)

Co-authored-by: Harald Sitter 

M  +4-3src/qml/MapPage.qml

https://invent.kde.org/utilities/filelight/-/commit/aac344478ee60edbfc32c52871d2d81c55590541

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487930] Trying to open folder representing ‘rest of the files’ results in error

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487930

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/util
   ||ities/filelight/-/commit/7f
   ||55949244a369b0401089e8778fd
   ||160fe44edba

--- Comment #2 from Harald Sitter  ---
Git commit 7f55949244a369b0401089e8778fd160fe44edba by Harald Sitter.
Committed on 03/06/2024 at 09:17.
Pushed by sitter into branch 'master'.

disable the context menu on fake shapes

fake shapes represent multiple entities and because of that are not
really interactable

M  +4-3src/qml/MapPage.qml

https://invent.kde.org/utilities/filelight/-/commit/7f55949244a369b0401089e8778fd160fe44edba

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 487855] UserFilterRole keyword joining causes unexpected word constructs

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487855

Harald Sitter  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/systemsettings/-/commit/ |ma/systemsettings/-/commit/
   |905ae9bce14eb99671a6524e625 |5f576c3b6763889fd2ff795e3f7
   |485ba96621ef1   |65f0db68b0ab0

--- Comment #6 from Harald Sitter  ---
Git commit 5f576c3b6763889fd2ff795e3f765f0db68b0ab0 by Harald Sitter.
Committed on 04/06/2024 at 13:15.
Pushed by sitter into branch 'Plasma/6.1'.

join keywords lists using ZERO WIDTH SPACE instead of empty string

this prevents the filter rule from matching silly word constructs

for example kcm_access.json has `["bounce keys", "slow keys"]` as
keywords. when we join those without separator we get 'bounce keysslow
keys'. that still matches the original words but also the silly join
construct of e.g. 'ssl'. to prevent all unintended keyword unions (or
sequences thereof) simply insert a ZWSP as separator


(cherry picked from commit 905ae9bce14eb99671a6524e625485ba96621ef1)

Co-authored-by: Harald Sitter 

M  +6-1app/MenuModel.cpp

https://invent.kde.org/plasma/systemsettings/-/commit/5f576c3b6763889fd2ff795e3f765f0db68b0ab0

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 487855] UserFilterRole keyword joining causes unexpected word constructs

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487855

Harald Sitter  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/plas
   ||ma/systemsettings/-/commit/
   ||905ae9bce14eb99671a6524e625
   ||485ba96621ef1
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #5 from Harald Sitter  ---
Git commit 905ae9bce14eb99671a6524e625485ba96621ef1 by Harald Sitter.
Committed on 04/06/2024 at 13:14.
Pushed by sitter into branch 'master'.

join keywords lists using ZERO WIDTH SPACE instead of empty string

this prevents the filter rule from matching silly word constructs

for example kcm_access.json has `["bounce keys", "slow keys"]` as
keywords. when we join those without separator we get 'bounce keysslow
keys'. that still matches the original words but also the silly join
construct of e.g. 'ssl'. to prevent all unintended keyword unions (or
sequences thereof) simply insert a ZWSP as separator

M  +6-1app/MenuModel.cpp

https://invent.kde.org/plasma/systemsettings/-/commit/905ae9bce14eb99671a6524e625485ba96621ef1

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 488016] test

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=488016

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Resolution|--- |UNMAINTAINED
 Status|REPORTED|RESOLVED

--- Comment #1 from Harald Sitter  ---
Thank you for the bug report!

Debian advises users to not submit bugs upstream
(https://www.debian.org/Bugs/Reporting), and Plasma 5.27.5 is no longer
eligible for support or maintenance from KDE. It's possible that the issue
exists only in Debian at this point.

Could you report the bug to Debian using the report bug utility
(https://packages.debian.org/stable/utils/reportbug)? If necessary, the
maintainer of the package will forward the bug upstream.
Thanks for understanding!

Thanks again!

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 487881] no per-device trashcans with btrfs (inconsistent st_dev)

2024-06-04 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487881

Harald Sitter  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
Summary|No trash cans for each  |no per-device trashcans
   |device  |with btrfs (inconsistent
   ||st_dev)
 Resolution|WAITINGFORINFO  |UPSTREAM

--- Comment #5 from Harald Sitter  ---
Simply put: the st_dev from mountinfo is inconsistent with the st_dev from stat
despite the docs saying it should be consistent.

Here's the relevant information

mountinfo:
> 59 45 0:53 / /run/media/usuario/0b60e126-5a13-47c3-a4dc-60b4f8f4b067 
> rw,nosuid,nodev,relatime shared:301 - btrfs /dev/sdd1 
> rw,ssd,discard=async,space_cache=v2,subvolid=5,subvol=/
It says the st_dev should be 0:53

stat:
> Device: 0,54Inode: 260 Links: 1
It says the actual st_dev is 0:54

This looks entirely unexpected considering the docs explicitly say 
> (3)   major:minor: value of st_dev for files on filesystem
https://docs.kernel.org/filesystems/proc.html?highlight=mountinfo#proc-pid-mountinfo-information-about-mounts

As suspected this then trips up our device detection logic because we can't
tell which device (in mountinfo) relates to the file.

I think it's best if you file a bug with your distro kernel so this can be
taken upstream.

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 487727] drkonqi causes 100% cpu load whenever I type in my password.

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487727

--- Comment #5 from Harald Sitter  ---
If a timeout occurs I'd also be interested in how long it took. Also how many
CPU cores and RAM do you have, and is this with a HDD or an SSD?

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 487905] Launching Elisa pinned icon fails with notification error

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487905

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #4 from Harald Sitter  ---
I've looked at this on endeavour and I'm not convinced we are at fault here.
What appears to happen is that systemd (and presumably by extension
dbus-broker) thinks the dbus service for elisa is already running and then
doesn't start it. Except obviously it is isn't running anymore so the
activation health check times out on our end. Why systemd and the broker get
confused isn't obvious to me though.

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 487905] Launching Elisa pinned icon fails with notification error

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487905

Harald Sitter  changed:

   What|Removed |Added

 CC||zen...@proton.me

--- Comment #3 from Harald Sitter  ---
*** Bug 487971 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Elisa] [Bug 487971] Elisa works normally for me, but for whatever reason every time I launch it, I get a pop-up error.

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487971

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED
 CC||sit...@kde.org

--- Comment #1 from Harald Sitter  ---


*** This bug has been marked as a duplicate of bug 487905 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 487881] No trash cans for each device

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487881

Harald Sitter  changed:

   What|Removed |Added

 CC||kdelibs-b...@kde.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
   Assignee|unassigned-b...@kde.org |kio-bugs-n...@kde.org
  Component|general |Trash
Version|unspecified |6.2.0
Product|kde |frameworks-kio

--- Comment #3 from Harald Sitter  ---
Please get the output of `cat /proc/self/mountinfo`

then create a file on the drive and get the output of `stat "pathOfFile"` where
pathOfFile needs to be the actual path to your file /run/media/ABC/File.txt or
something.

I have a suspicion that your filesystem may be having trouble holding a stable
identifier (st_dev) so we don't manage to resolve that this is a mountpoint and
fall back to the $HOME location. If that is so I am not sure we can do much
about this, we are pretty much at the mercy of information coming out of the
kernel here.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kde] [Bug 487881] No trash cans for each device

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487881

Harald Sitter  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |---
 Status|NEEDSINFO   |REPORTED

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 487855] UserFilterRole keyword joining causes unexpected word constructs

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487855

Harald Sitter  changed:

   What|Removed |Added

Summary|Searching for "ssl" shows   |UserFilterRole keyword
   |Accessibility and   |joining causes unexpected
   |disabled/empty Wifi &   |word constructs
   |Networking  |
 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED

--- Comment #3 from Harald Sitter  ---
Neither of them match because of the SSL technology, they match because the
search term 'ssl' is appears in their keywords list.

The underlying data is a bit smudged though because case
MenuModel::UserFilterRole: joins the terms without separator, causing awkward
word constructs such as 'keysslow'

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 487964] help

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487964

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |UNMAINTAINED
 CC||sit...@kde.org
 Status|REPORTED|RESOLVED

--- Comment #1 from Harald Sitter  ---
I'm afraid Plasma is not supported on Kali Linux.
Running everything as root is explicitly unsupported and never recommended, and
will result in a million and a half other little weirdnesses like this.
If you would like support from KDE for issues you encounter, I would encourage
you to re-install your system with a more appropriate general-purpose Linux
distro, such as one of the ones you can see at https://kde.org/distributions.
If the issue still manifests after doing so, feel free to re-open this bug
report.
Thanks for understanding!

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487769] Discover reports no packages installed

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487769

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |DOWNSTREAM
 Status|REPORTED|RESOLVED
 CC||sit...@kde.org

--- Comment #1 from Harald Sitter  ---
Please get in touch with Kubuntu. "Unsupported sources" is not one of our
features and your version of discover is lagging behind.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dragonplayer] [Bug 487735] Exiting Dragon

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487735

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |UPSTREAM

--- Comment #2 from Harald Sitter  ---
Seems like the crash is in pipewire ->
https://gitlab.freedesktop.org/pipewire/pipewire/-/issues

-- 
You are receiving this mail because:
You are watching all bug changes.

[Breeze] [Bug 468361] In VLC- and SMPlayer-based apps, "Drag windows from empty areas" feature of Breeze makes the cursor or window teleport to another location

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=468361

Harald Sitter  changed:

   What|Removed |Added

 CC||report@hotmail.com

--- Comment #5 from Harald Sitter  ---
*** Bug 487846 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kde] [Bug 487846] Cursor teleports while dragging on bottom area of VLC player

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487846

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||sit...@kde.org
 Resolution|--- |DUPLICATE

--- Comment #4 from Harald Sitter  ---


*** This bug has been marked as a duplicate of bug 468361 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487794] Cannot perform anny updates due to on broken package

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487794

Harald Sitter  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 CC||sit...@kde.org
 Resolution|--- |NOT A BUG

--- Comment #2 from Harald Sitter  ---
That's apt behavior, nothing to do with discover. Please contact the PPA
maintainer about the bug.

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 487905] Launching Elisa pinned icon fails with notification error

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487905

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Harald Sitter  ---
Is this with a kdesrc-build (or similar)?

-- 
You are receiving this mail because:
You are watching all bug changes.

[kde] [Bug 487881] No trash cans for each device

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487881

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||sit...@kde.org

--- Comment #1 from Harald Sitter  ---
Please provide more comprehensive STEPS TO REPRODUCE. Thanks.

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 487855] Searching for "ssl" shows Accessibility and disabled/empty Wifi & Networking

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487855

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Harald Sitter  ---
It'd be grand if you could fill in the bug reporting template.

What do you expect to happen and why do you expect it to happen?

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwalletmanager] [Bug 487848] Cannot find kwalletmanager in https://apps.kde.org/

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487848

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |MOVED
 CC||sit...@kde.org

--- Comment #1 from Harald Sitter  ---
Also suffers from https://invent.kde.org/websites/apps-kde-org/-/issues/35

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kwallet] [Bug 487926] VLC fails to open video in smb folder if password is saved in KWallet

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487926

Harald Sitter  changed:

   What|Removed |Added

Version|24.05.0 |6.2.0
 CC||kdelibs-b...@kde.org
Product|kio-extras  |frameworks-kwallet
   Assignee|plasma-b...@kde.org |va...@kde.org
  Component|Samba   |general

--- Comment #1 from Harald Sitter  ---
kio-smb is not involved when VLC says "MRL 'smb:/..." that's purely VLC's own
smb implementation. Moving to kwallet as the defect is probably either there or
VLC.

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 487727] drkonqi causes 100% cpu load whenever I type in my password.

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487727

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #3 from Harald Sitter  ---
Ah! Yeah, that'd be normal. The password is for the polkit-helper and the
polkit-helper decompresses data, so it'd be using a cpu core. The cpu load
should eventually stop when tracing is complete - may be multiple minutes.

The concerning bit is probably that the drkonqi UI doesn't come up.

Any useful output in journalctl when this happens?

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 487936] kde-plasma/plasma-workspace 5.27.11.1: ksmserver fails to save and later restore a session

2024-06-03 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487936

Harald Sitter  changed:

   What|Removed |Added

   Assignee|unassigned-b...@kde.org |plasma-b...@kde.org
  Component|general |Session Management
Version|unspecified |5.27.11
   Target Milestone|--- |1.0
Product|kde |plasmashell
 CC||natalie_clar...@yahoo.de,
   ||sit...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[drkonqi] [Bug 487727] drkonqi causes 100% cpu load whenever I type in my password.

2024-05-29 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487727

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org

--- Comment #1 from Harald Sitter  ---
You get a password prompt on startup of drkonqi?

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487339] Filelight Tooltip Incorrect Offset when Displayed to the Right of the Mouse Cursor

2024-05-29 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487339

Harald Sitter  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/filelight/-/commit/47 |ities/filelight/-/commit/06
   |eaad0469e2262d10499bde22c6e |2b80adb44f0d1c9dc41dcd3e23a
   |63992f55f06 |9ccb4a60994

--- Comment #8 from Harald Sitter  ---
Git commit 062b80adb44f0d1c9dc41dcd3e23a9ccb4a60994 by Harald Sitter.
Committed on 29/05/2024 at 07:43.
Pushed by sitter into branch 'release/24.05'.

manually position tooltip so it's correct

Qt tries to reposition when there isn't enough space and gloriously
fails. Instead adjust the coordinates such that Qt has no reason to
reposition.

since this adds a lot of code we now have a shared shapetooltip item
that is used by the centershape and the segmentshape. also correctly set
shapeitem as parent for our tooltip (the coordindates are relative to it
because our mouseyarea is on top of shapeitem)


(cherry picked from commit 47eaad0469e2262d10499bde22c6e63992f55f06)

M  +4-6src/qml/CenterShape.qml
M  +4-6src/qml/SegmentShape.qml
A  +24   -0src/qml/ShapeToolTip.qml [License: GPL(3+eV) GPL(v3.0)
GPL(v2.0)]
M  +1-0src/qml/qml.qrc

https://invent.kde.org/utilities/filelight/-/commit/062b80adb44f0d1c9dc41dcd3e23a9ccb4a60994

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 486166] Discover gives up too easily when downloading (aborted due to timeout)

2024-05-29 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486166

--- Comment #7 from Harald Sitter  ---
Does the flatpak CLI tool also have this problem?

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487339] Filelight Tooltip Incorrect Offset when Displayed to the Right of the Mouse Cursor

2024-05-29 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487339

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/util
   ||ities/filelight/-/commit/47
   ||eaad0469e2262d10499bde22c6e
   ||63992f55f06

--- Comment #7 from Harald Sitter  ---
Git commit 47eaad0469e2262d10499bde22c6e63992f55f06 by Harald Sitter.
Committed on 29/05/2024 at 07:36.
Pushed by sitter into branch 'master'.

manually position tooltip so it's correct

Qt tries to reposition when there isn't enough space and gloriously
fails. Instead adjust the coordinates such that Qt has no reason to
reposition.

since this adds a lot of code we now have a shared shapetooltip item
that is used by the centershape and the segmentshape. also correctly set
shapeitem as parent for our tooltip (the coordindates are relative to it
because our mouseyarea is on top of shapeitem)

M  +4-6src/qml/CenterShape.qml
M  +4-6src/qml/SegmentShape.qml
A  +24   -0src/qml/ShapeToolTip.qml [License: GPL(3+eV) GPL(v3.0)
GPL(v2.0)]
M  +1-0src/qml/qml.qrc

https://invent.kde.org/utilities/filelight/-/commit/47eaad0469e2262d10499bde22c6e63992f55f06

-- 
You are receiving this mail because:
You are watching all bug changes.

[kio-extras] [Bug 487633] Kio6 segfaults if trying to access an Samsung Galaxy S 8 via MTP in TWRP Recovery Manager

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487633

Harald Sitter  changed:

   What|Removed |Added

 CC||elvis.angelac...@kde.org
Product|dolphin |kio-extras
  Component|general |MTP
   Assignee|dolphin-bugs-n...@kde.org   |unassigned-b...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 487633] Kio6 segfaults if trying to access an Samsung Galaxy S 8 via MTP in TWRP Recovery Manager

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487633

Harald Sitter  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |---
 Status|NEEDSINFO   |REPORTED

--- Comment #5 from Harald Sitter  ---
Looks a bit like a possible bug in libmtp. Probably worth inspecting our code
for possible problems though. Relevant snippet:

#0  __strlen_avx2 () at ../sysdeps/x86_64/multiarch/strlen-avx2.S:76
#1  0x7cd3080cb326 in ptp_unpack_PTPTIME (str=0x6654c7a9 ) at
/usr/src/debug/libmtp/libmtp-1.1.21/src/ptp-pack.c:720
ptpdate = { }
tmp = {, , , , }
ptpdatelen = 
tm = {tm_sec = , tm_min = , tm_hour =
, tm_mday = , tm_mon = , tm_year =
, tm_wday = , tm_yday = , tm_isdst
= , tm_gmtoff = , tm_zone = }
ptpdate = { }
tmp = {, , , , }
ptpdatelen = 
tm = {tm_sec = , tm_min = , tm_hour =
, tm_mday = , tm_mon = , tm_year =
, tm_wday = , tm_yday = , tm_isdst
= , tm_gmtoff = , tm_zone = }
#2  ptp_object_want (params=0x5b54d8a63e90, handle=1, want=5, retob=) at /usr/src/debug/libmtp/libmtp-1.1.21/src/ptp.c:9095
i = 5
prop = 0x5b54d8a02ef8
nrofprops = 
props = 0x5b54d8a02e80
--Type  for more, q to quit, c to continue without paging--
ret = 8193
ob = 
read64bit = 
#3  0x7cd3080b8ec4 in LIBMTP_Get_Filemetadata (device=0x5b54d89c90e0,
fileid=) at
/usr/src/debug/libmtp/libmtp-1.1.21/src/libmtp.c:4469
params = 0x5b54d8a63e90
ret = 
ob = 0x5b54d8a69af0
#4  0x7cd3081b65cc in MTPLister::run (this=0x7cd30400eaa0) at
/usr/src/debug/kio-extras/kio-extras-24.05.0/mtp/kiod_module/mtplister.cpp:29
file = std::unique_ptr = {get() = }
#5  0x7cd3081bb916 in ListerAdaptor::run (this=0x5b54d8a0b460) at
/usr/src/debug/kio-extras/build/mtp/kiod_module/listeradaptor.cpp:45

-- 
You are receiving this mail because:
You are watching all bug changes.

[KScreen] [Bug 487673] Switch display by hotkey (Meta+P) not working

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487673

--- Comment #3 from Harald Sitter  ---
Not terribly informative.

How about `journalctl --lines=50 --no-pager ` just after you triggered the
shortcut

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 487633] Kio6 segfaults if trying to access an Samsung Galaxy S 8 via MTP in TWRP Recovery Manager

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487633

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Harald Sitter  ---
Please provide a backtrace as per
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports

-- 
You are receiving this mail because:
You are watching all bug changes.

[KScreen] [Bug 487673] Switch display by hotkey (Meta+P) not working

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487673

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 CC||sit...@kde.org
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Harald Sitter  ---
What's the output of `journalctl -b 0 | grep -i kscreen` when this happens

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 487655] crash when opening sound KCM for a second time

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487655

Harald Sitter  changed:

   What|Removed |Added

 CC||m...@ratijas.tk,
   ||sit...@kde.org
  Component|generic-crash   |kcm_pulseaudio

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmymoney] [Bug 487676] KMy Money: Change to FinTS Standard?

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487676

Harald Sitter  changed:

   What|Removed |Added

Product|kde |kmymoney
  Component|general |general
   Assignee|unassigned-b...@kde.org |kmymoney-de...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487641] KDE Neon: Discover: Snap: Discover not finding or returning snap packages

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487641

Harald Sitter  changed:

   What|Removed |Added

  Component|discover|Snap Backend
 CC||sit...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 486166] Discover gives up too easily when downloading (aborted due to timeout)

2024-05-28 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486166

--- Comment #5 from Harald Sitter  ---
Does it happen with

- the flatpak version
- the packagekit version
- both

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487532] Fails to build with flatpak 1.14.6

2024-05-27 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487532

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #1 from Harald Sitter  ---


*** This bug has been marked as a duplicate of bug 487404 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487404] Discover build failure due to commit 370a22daaded23f4a754fb5168cb582ed34a9d14

2024-05-27 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487404

Harald Sitter  changed:

   What|Removed |Added

 CC||fab...@ritter-vogt.de

--- Comment #2 from Harald Sitter  ---
*** Bug 487532 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 485744] Filelight refusing to scan anything after pressing "Go to overview"

2024-05-27 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=485744

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #3 from Harald Sitter  ---
Something broke in the pagestack handling in the qt6 port.

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487608] Filelight crashes when scanning an empty folder

2024-05-27 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487608

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DOWNSTREAM
 CC||sit...@kde.org

--- Comment #1 from Harald Sitter  ---
Thank you for your bug report!
Debian advises users to not submit bugs upstream
(https://www.debian.org/Bugs/Reporting), as this version of the KDE software is
out of support from KDE, and so it's possible that the bug exists only in
Debian at this point.
Could you report the bug to Debian using the report bug utility
(https://packages.debian.org/stable/utils/reportbug)? If necessary, the
maintainer of the package will forward the bug upstream.
Thanks for understanding!

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487339] Filelight Tooltip Incorrect Offset when Displayed to the Right of the Mouse Cursor

2024-05-27 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487339

Harald Sitter  changed:

   What|Removed |Added

 CC||m.chelo...@bluewin.ch

--- Comment #5 from Harald Sitter  ---
*** Bug 487470 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487470] Cursor near bottom or right edge of window has tooltips appear on the opposite side of the window

2024-05-27 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487470

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Harald Sitter  ---


*** This bug has been marked as a duplicate of bug 487339 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487339] Filelight Tooltip Incorrect Offset when Displayed to the Right of the Mouse Cursor

2024-05-27 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487339

Harald Sitter  changed:

   What|Removed |Added

 Status|NEEDSINFO   |CONFIRMED
 Ever confirmed|0   |1
 Resolution|WAITINGFORINFO  |---

--- Comment #4 from Harald Sitter  ---
Thanks!

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487150] Blue dot in lower right part of updates icon persists after software update and reboot. Discover indicates system up to date and icon (and sometimes a banner) alerts that updat

2024-05-23 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487150

--- Comment #9 from Harald Sitter  ---
Your system is in a broken state because of the wine stuff. Not sure what to do
about it though, technically we should be telling you about this in the UI
somehow but I am not sure which component fails to propagate the error.

What happens when you run `pkcon update`

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 487339] Filelight Tooltip Incorrect Offset when Displayed to the Right of the Mouse Cursor

2024-05-23 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487339

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 CC||sit...@kde.org
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Harald Sitter  ---
Which version of filelight is this?

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487453] Discover doesn't see/use the new /etc/apt/ubuntu.sources file, or any .sources files in /etc/apt/sources.list.d and doesn't present the Software Sources access button

2024-05-23 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487453

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||sit...@kde.org
 Resolution|--- |UPSTREAM

--- Comment #1 from Harald Sitter  ---
Sources list parsing happens inside packagekit. Please file a bug with
packagekit at https://github.com/PackageKit/PackageKit/issues

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 486549] filelight: doesn't correctly process OneDrive cloud files

2024-05-23 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486549

Harald Sitter  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/filelight/-/commit/06 |ities/filelight/-/commit/5d
   |990b8205d8ad3b270a4fed3c130 |345574db3f5a142ef00fcfd575b
   |d837a1ecac7 |93ce89353d3

--- Comment #5 from Harald Sitter  ---
Git commit 5d345574db3f5a142ef00fcfd575b93ce89353d3 by Harald Sitter.
Committed on 23/05/2024 at 13:12.
Pushed by sitter into branch 'release/24.05'.

windows: treat unpinned files as compressed

an unpinned file is not present on disk and so we don't actually care
about its theoretical size, but rather its actual on-disk size.

this in particular covers onedrive files that haven't been pulled onto
disk


(cherry picked from commit 06990b8205d8ad3b270a4fed3c130d837a1ecac7)

M  +1-1src/windowsWalker.cpp

https://invent.kde.org/utilities/filelight/-/commit/5d345574db3f5a142ef00fcfd575b93ce89353d3

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 486549] filelight: doesn't correctly process OneDrive cloud files

2024-05-23 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486549

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/util
   ||ities/filelight/-/commit/06
   ||990b8205d8ad3b270a4fed3c130
   ||d837a1ecac7

--- Comment #4 from Harald Sitter  ---
Git commit 06990b8205d8ad3b270a4fed3c130d837a1ecac7 by Harald Sitter.
Committed on 23/05/2024 at 13:09.
Pushed by sitter into branch 'master'.

windows: treat unpinned files as compressed

an unpinned file is not present on disk and so we don't actually care
about its theoretical size, but rather its actual on-disk size.

this in particular covers onedrive files that haven't been pulled onto
disk

M  +1-1src/windowsWalker.cpp

https://invent.kde.org/utilities/filelight/-/commit/06990b8205d8ad3b270a4fed3c130d837a1ecac7

-- 
You are receiving this mail because:
You are watching all bug changes.

[dragonplayer] [Bug 487362] Dragon Player crashes on every movie

2024-05-22 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487362

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |DOWNSTREAM
 Status|REPORTED|RESOLVED

--- Comment #1 from Harald Sitter  ---
Please file the bug with fedora. The phonon gstreamer backend is not maintained
by us. Thanks!

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487150] Blue dot in lower right part of updates icon persists after software update and reboot. Discover indicates system up to date and icon (and sometimes a banner) alerts that updat

2024-05-22 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487150

--- Comment #4 from Harald Sitter  ---
What happens when you run `apt dist-upgrade`

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487333] Discover doesnt update

2024-05-22 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487333

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Harald Sitter  ---
what's the output of 

flatpak repair
flatpak update

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487150] Blue dot in lower right part of updates icon persists after software update and reboot. Discover indicates system up to date and icon (and sometimes a banner) alerts that updat

2024-05-21 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487150

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Harald Sitter  ---
It's possible that the wine issue is somehow causing packages to hold back. 

What does `apt list --upgradable` report when the situation happens?

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487196] snap app souce cannot display correctly for snap

2024-05-21 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487196

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
  Component|discover|Snap Backend

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487165] didcover crashing when fetching updates steam deck oled

2024-05-17 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487165

--- Comment #3 from Harald Sitter  ---
>From the provided trace I can't really say as unfortunately it misses some
context. Have you maybe installed some theming data? (global themes, icon
themes, styles etc) If so uninstalling them might resolve the issue.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487165] didcover crashing when fetching updates steam deck oled

2024-05-17 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487165

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||sit...@kde.org
 Resolution|--- |FIXED

--- Comment #1 from Harald Sitter  ---
I am pretty sure that is fixed in 6.x since we aren't getting crash reports
about this anymore. If you still see it in 6.x (whenever that lands for
steamos) feel free to open the report again and we can take a closer look at
what's going on there.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 485886] Flatpak branch end of life, Discover won't let me upgrade

2024-05-17 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=485886

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/plas
   ||ma/discover/-/commit/370a22
   ||daaded23f4a754fb5168cb582ed
   ||34a9d14

--- Comment #5 from Harald Sitter  ---
Git commit 370a22daaded23f4a754fb5168cb582ed34a9d14 by Harald Sitter.
Committed on 17/05/2024 at 14:22.
Pushed by sitter into branch 'master'.

flatpak: handle end_of_lifed_with_rebase

when end_of_lifed_with_rebase is called we need to render a decision on
whether to move to the replacement for the EOL flatpak or not. we do
this in two ways

1) runtime/ is always auto-transitioned because we consider this
implementation details that dont need surfacing to the user
2) everything else (i.e. app/) surfaces a proceed request via the
existing job interface

since we are dealing with a transaction thread the implementation uses a
bog standard waitcondition to implement the blocking aspect of this
(i.e. the callback doesn't return until the user made a proceed decision
causing the wait condition to get awoken)

M  +8-0libdiscover/backends/FlatpakBackend/FlatpakJobTransaction.cpp
M  +1-0libdiscover/backends/FlatpakBackend/FlatpakJobTransaction.h
M  +61   -7libdiscover/backends/FlatpakBackend/FlatpakTransactionThread.cpp
M  +9-0libdiscover/backends/FlatpakBackend/FlatpakTransactionThread.h

https://invent.kde.org/plasma/discover/-/commit/370a22daaded23f4a754fb5168cb582ed34a9d14

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 469159] Authentication prompt is shown at the *end* of a major distro upgrade in Discover, not at the beginning

2024-05-17 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=469159

--- Comment #5 from Harald Sitter  ---
Ha! Using an old ISO - genious! I've installed 39 and started an upgrade and
indeed it first downloads without auth.

The behavior is consistent with pkcon though, that too downloads without
authentication. Like I said, we don't do the auth request, packagekit does.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487070] in the Ukrainian localization discord crashes

2024-05-16 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487070

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Harald Sitter  ---


*** This bug has been marked as a duplicate of bug 481303 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 481303] Discover asserts in Category::sortCategories

2024-05-16 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=481303

Harald Sitter  changed:

   What|Removed |Added

 CC||rybshc...@gmail.com

--- Comment #10 from Harald Sitter  ---
*** Bug 487070 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 486057] discover crashed when i try to install vscode from a flatpakref file

2024-05-16 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486057

Harald Sitter  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |---
 Ever confirmed|0   |1
 Status|NEEDSINFO   |CONFIRMED

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 487027] kde does not do auto updates despite download automatically enabled

2024-05-15 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=487027

Harald Sitter  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 CC||sit...@kde.org
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Harald Sitter  ---
Please attach your file ~/.config/PlasmaDiscoverUpdates

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 469159] Authentication prompt is shown at the *end* of a major distro upgrade in Discover, not at the beginning

2024-05-15 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=469159

--- Comment #3 from Harald Sitter  ---
I don't think so.

Maybe running `G_MESSAGES_DEBUG=all /usr/lib/packagekitd -v --backend dummy
--disable-timer`  as root, but I think the dummy backend only has very few
packages.

If it happens the actual advanced data of the auth dialog would be interesting
too.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 433463] Discover should de-duplicate apps whose AppStream IDs differ only by the presence or absence of the ".desktop" suffix

2024-05-15 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=433463

--- Comment #9 from Harald Sitter  ---
Also, why would we implement this on a discover level rather than on a
libappstream level?

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 433463] Discover should de-duplicate apps whose AppStream IDs differ only by the presence or absence of the ".desktop" suffix

2024-05-15 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=433463

--- Comment #8 from Harald Sitter  ---
Which one is the one that should be shown?

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 450973] Failed Offline Update error

2024-05-14 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=450973

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 CC||sit...@kde.org
 Status|REOPENED|RESOLVED

--- Comment #10 from Harald Sitter  ---
The creation is done by packagekit not discover.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 433463] org.godotengine.Godot.desktop is not de-duplicated with org.godotengine.Godot

2024-05-14 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=433463

Harald Sitter  changed:

   What|Removed |Added

 Status|CONFIRMED   |NEEDSINFO
 Resolution|--- |WAITINGFORINFO
 CC||sit...@kde.org

--- Comment #3 from Harald Sitter  ---
I suppose this resolved itself meanwhile?

If not appstreamcli dumps of the two would be useful. It's my understanding
that they should be deduplicated if one correctly provides the other, otherwise
that'd be an issue with godot's metadata itself.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 479276] Rating submission sometimes does not work

2024-05-14 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=479276

--- Comment #4 from Harald Sitter  ---
Git commit 8af8af751fe4506f46e73ddebc6001c00bd9ffb1 by Harald Sitter.
Committed on 14/05/2024 at 07:09.
Pushed by sitter into branch 'master'.

odrs: increase verbosity on error a bit

in the hopes of getting better context on what exactly is going wrong

M  +2-1libdiscover/appstream/OdrsReviewsBackend.cpp

https://invent.kde.org/plasma/discover/-/commit/8af8af751fe4506f46e73ddebc6001c00bd9ffb1

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 481092] Discover doesn't list/show packagekit applications

2024-05-13 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=481092

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||sit...@kde.org

--- Comment #2 from Harald Sitter  ---
What does `appstreamcli search steam` show?

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 485933] Unpredictable plasmashell crash on booting

2024-05-13 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=485933

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Harald Sitter  ---
Looks like this should be fixed by
https://invent.kde.org/plasma/plasma-workspace/-/commit/6c963b45d8fe657a90c4aeba6b324c08ed7397f5

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 486937] discover flatpak update, crashes plasmashell after the update

2024-05-13 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486937

Harald Sitter  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|BACKTRACE   |DUPLICATE

--- Comment #3 from Harald Sitter  ---
Almost. When using the interactive debugger you generally need to run
'backtrace' in the prompt that appears so the actual trace gets printed.
Thankfully it already provides enough context for me to tell where the problem
is :)

*** This bug has been marked as a duplicate of bug 485933 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 485933] Unpredictable plasmashell crash on booting

2024-05-13 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=485933

Harald Sitter  changed:

   What|Removed |Added

 CC||pollu...@proton.me

--- Comment #2 from Harald Sitter  ---
*** Bug 486937 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 486937] discover flatpak update, crashes plasmashell after the update

2024-05-12 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486937

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |BACKTRACE
  Component|discover|Application Launcher
   ||(Kickoff)
Product|Discover|plasmashell
 CC||mikel5...@gmail.com,
   ||noaha...@gmail.com,
   ||sit...@kde.org
 Status|REPORTED|NEEDSINFO
   Target Milestone|--- |1.0

--- Comment #1 from Harald Sitter  ---
Please read through
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
and generate a backtrace with symbols.

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 402690] Duplicate entries in Location sidebar for encrypted volumes

2024-05-10 Thread Harald
https://bugs.kde.org/show_bug.cgi?id=402690

Harald  changed:

   What|Removed |Added

 CC||har...@bjornstad.priv.no

--- Comment #4 from Harald  ---
I'm seing this for the first time in Fedora 40 KDE spin.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 481303] Discover asserts in Category::sortCategories

2024-05-09 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=481303

Harald Sitter  changed:

   What|Removed |Added

 CC||gunan...@qq.com

--- Comment #9 from Harald Sitter  ---
*** Bug 486797 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 486797] "Discover" crashes and cannot be started in Chinese system locale.

2024-05-09 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486797

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #1 from Harald Sitter  ---


*** This bug has been marked as a duplicate of bug 481303 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 486330] Wrong KNewStuff URI

2024-05-08 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486330

Harald Sitter  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/discover/-/commit/bbb161 |ma/discover/-/commit/5f8c3f
   |07045633a5950e298fd807ce3d6 |52174541825b23c75e374ab2b86
   |8dd9322 |cb538cd

--- Comment #7 from Harald Sitter  ---
Git commit 5f8c3f52174541825b23c75e374ab2b86cb538cd by Harald Sitter.
Committed on 08/05/2024 at 16:30.
Pushed by sitter into branch 'Plasma/6.0'.

kns: drop provider part of the url

supposedly in 6.7 the parsing changed a bit and now certain providerIds
parse as path rather than host. the host component extraction was super
questionable anyway because it means you can't get to the providerId
from the url, rendering the provider part entirely pointless.

fortunately the provider part wasn't used anyway so we can simplify the
url and not include the provider at all


(cherry picked from commit bbb16107045633a5950e298fd807ce3d68dd9322)

M  +3-4libdiscover/backends/KNSBackend/KNSBackend.cpp
M  +1-1libdiscover/backends/KNSBackend/KNSResource.cpp

https://invent.kde.org/plasma/discover/-/commit/5f8c3f52174541825b23c75e374ab2b86cb538cd

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 486330] Wrong KNewStuff URI

2024-05-08 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486330

Harald Sitter  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/plas
   ||ma/discover/-/commit/bbb161
   ||07045633a5950e298fd807ce3d6
   ||8dd9322

--- Comment #6 from Harald Sitter  ---
Git commit bbb16107045633a5950e298fd807ce3d68dd9322 by Harald Sitter.
Committed on 08/05/2024 at 16:24.
Pushed by sitter into branch 'master'.

kns: drop provider part of the url

supposedly in 6.7 the parsing changed a bit and now certain providerIds
parse as path rather than host. the host component extraction was super
questionable anyway because it means you can't get to the providerId
from the url, rendering the provider part entirely pointless.

fortunately the provider part wasn't used anyway so we can simplify the
url and not include the provider at all

M  +3-4libdiscover/backends/KNSBackend/KNSBackend.cpp
M  +1-1libdiscover/backends/KNSBackend/KNSResource.cpp

https://invent.kde.org/plasma/discover/-/commit/bbb16107045633a5950e298fd807ce3d68dd9322

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 486037] Application without metadata defaults to license information as proprietary

2024-05-08 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=486037

Harald Sitter  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/discover/-/commit/5246ef |ma/discover/-/commit/c531b7
   |454c5be0b16e3df7e232e4d3b39 |eb8c38ae3761256e0a4f4e16091
   |84435d0 |3984cbc

--- Comment #9 from Harald Sitter  ---
Git commit c531b7eb8c38ae3761256e0a4f4e160913984cbc by Harald Sitter.
Committed on 08/05/2024 at 14:41.
Pushed by sitter into branch 'Plasma/6.0'.

packagekit: return empty license array when unknown

this was previously made non-empty so it looks like a valid license set.
since then we've grown the ability to actually show unknown licenses as
unknown in the UI, but that requires the license array to actually be
empty. so, make it empty again (:


(cherry picked from commit 5246ef454c5be0b16e3df7e232e4d3b3984435d0)

M  +1-1libdiscover/backends/PackageKitBackend/PackageKitResource.cpp

https://invent.kde.org/plasma/discover/-/commit/c531b7eb8c38ae3761256e0a4f4e160913984cbc

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 484650] Reboot notification does not disappear when running "pkcon update" manually

2024-05-08 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=484650

--- Comment #10 from Harald Sitter  ---
Well, it's a one way road. The only ever switches into reboot mode, it has no
concept of reverting back to not needing reboot.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 449316] Discover crashes at startup in GNOME

2024-05-08 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=449316

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #6 from Harald Sitter  ---
Anyone still seeing this with 6.x? There were a number of cache fixes in Qt
that may have fixed this problem.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Discover] [Bug 466442] Searching terms like "video", "audio", "game", "torrent", etc crashes discover in AggregatedResultsStream::emitResults()

2024-05-08 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=466442

Harald Sitter  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED

--- Comment #14 from Harald Sitter  ---
No worries. Glad it's fixed :)

-- 
You are receiving this mail because:
You are watching all bug changes.

  1   2   3   4   5   6   7   8   9   10   >