[krita] [Bug 486266] New: the screen flashes and freezes every time the mouse go over an icon

2024-04-28 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=486266

Bug ID: 486266
   Summary: the screen flashes and freezes every time the mouse go
over an icon
Classification: Applications
   Product: krita
   Version: 5.2.2
  Platform: Compiled Sources
OS: Microsoft Windows
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: Usability
  Assignee: krita-bugs-n...@kde.org
  Reporter: dcceramidav...@gmail.com
  Target Milestone: ---

***
If you're not sure this is actually a bug, instead post about it at
https://discuss.kde.org

If you're reporting a crash, attach a backtrace with debug symbols; see
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

SUMMARY
every time the mouse go over an icon the whole  screen flashes. everything
becomes white for a second.
if i move the mouse quikly the screen flashes a lot and if i continue for a
long time Krita freezes. it happened two times and this bug makes drawing very
difficult. i tried to ignore at first but even if i want to change brush,
change the level settings or every other action that implise an icon it blinks
and freezes. i don't know what is it, I tried to see if there was something
similar online, but I couldn't find anything.
STEPS TO REPRODUCE
1. move the mouse over an icon;
2. do it quikly;
3. that's it..;

OBSERVED RESULT
Krita freezes and blinks..it's very annoying and impossible to use for the
frustration.

EXPECTED RESULT
the result I expect is that it will be fixed

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

ADDITIONAL INFORMATION
none

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

[Falkon] [Bug 475131] New: History sidebar is too narrow

2023-10-02 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=475131

Bug ID: 475131
   Summary: History sidebar is too narrow
Classification: Applications
   Product: Falkon
   Version: 23.08.1
  Platform: Debian testing
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: now...@gmail.com
  Reporter: baldiniebald...@gmail.com
  Target Milestone: ---

Created attachment 162024
  --> https://bugs.kde.org/attachment.cgi?id=162024&action=edit
Default width of history sidebar

SOFTWARE/OS VERSIONS
Linux/Trinity Desktop Environment: 
Qt Version: $(dpkg -s libqt5core5a | grep Version) -> 5.15.8+dfsg-11

ADDITIONAL INFORMATION
Pressing ctrl-h on the Falkon GUI opens the history sidebar, which appears too
narrow as in attached screenshot.

The XML file `src/lib/sidebar/historysidebar.ui`, if related to this issue,
specifies a width of 150px, but on my screen it renders at about 80px.

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

[Falkon] [Bug 475131] History sidebar is too narrow

2023-10-02 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=475131

Davide  changed:

   What|Removed |Added

 CC||baldiniebald...@gmail.com

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

[Falkon] [Bug 475131] History sidebar is too narrow

2023-10-04 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=475131

--- Comment #1 from Davide  ---
Not a fix, but a workaround (works for me):

diff --git a/src/lib/sidebar/sidebar.cpp b/src/lib/sidebar/sidebar.cpp
index 0c023fe54..4f64359b2 100644
--- a/src/lib/sidebar/sidebar.cpp
+++ b/src/lib/sidebar/sidebar.cpp
@@ -63,14 +63,14 @@ void SideBar::setWidget(QWidget* widget)

 void SideBar::showBookmarks()
 {
-m_titleBar->setTitle(tr("Bookmarks"));
+m_titleBar->setTitle(tr("Bookmarks
   "));
 auto* bar = new BookmarksSidebar(m_window);
 setWidget(bar);
 }

 void SideBar::showHistory()
 {
-m_titleBar->setTitle(tr("History"));
+m_titleBar->setTitle(tr("History  
   "));
 auto* bar = new HistorySideBar(m_window);
 setWidget(bar);
 }

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

[Falkon] [Bug 475231] New: [Patch] Fix form detection for password manager

2023-10-04 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=475231

Bug ID: 475231
   Summary: [Patch] Fix form detection for password manager
Classification: Applications
   Product: Falkon
   Version: 23.08.1
  Platform: Other
OS: Other
Status: REPORTED
  Severity: task
  Priority: NOR
 Component: general
  Assignee: now...@gmail.com
  Reporter: baldiniebald...@gmail.com
  Target Milestone: ---

I fixed the form detection script in /src/lib/tools/scripts.cpp used to capture
the login credentials for the password manager. I tested this on many websites,
all work correctly.

This fixes two problems:

1) Some websites collect data from login forms without properly submit()ting
them, thus the 'submit' event handler currently in use does not trigger;

2) the current script collects the DOM forms by reading 'document.forms', but
this property often holds an empty set, and MutationObserver doesn't
subsequently detect further forms. This patch circumvents this issue.

# This patch file was generated by NetBeans IDE
# It uses platform neutral UTF-8 encoding and \n newlines.
--- a/src/lib/tools/scripts.cpp
+++ b/src/lib/tools/scripts.cpp
@@ -74,31 +74,37 @@
 QString Scripts::setupFormObserver()
 {
 QString source = QL1S("(function() {"
-  "function findUsername(inputs) {"
-  "var usernameNames = ['user', 'name', 'login'];"
-  "for (var i = 0; i < usernameNames.length; ++i)
{"
-  "for (var j = 0; j < inputs.length; ++j)"
-  "if (inputs[j].type == 'text' &&
inputs[j].value.length && inputs[j].name.indexOf(usernameNames[i]) != -1)"
-  "return inputs[j].value;"
+  "let eFormsOld  = [],"
+  "eFormsDone = [];"
+  ""
+  "function findUsername(inputs) {"
+  "let usernameNames = ['user', 'name',
'login'];"
+  ""
+  "for (let i = 0; i < usernameNames.length;
++i) {"
+  "for (let j = 0; j < inputs.length;
++j)"
+  "if (inputs[j].type == 'text' &&
inputs[j].value.length && inputs[j].name.indexOf(usernameNames[i]) != -1)"
+  "return inputs[j].value;"
+  "}"
+  ""
+  "for (let i = 0; i < inputs.length; ++i)"
+  "if (inputs[i].type == 'text' &&
inputs[i].value.length)"
+  "return inputs[i].value;"
+  ""
+  "for (let i = 0; i < inputs.length; ++i)"
+  "if (inputs[i].type == 'email' &&
inputs[i].value.length)"
+  "return inputs[i].value;"
+  ""
+  "return '';"
   "}"
-  "for (var i = 0; i < inputs.length; ++i)"
-  "if (inputs[i].type == 'text' &&
inputs[i].value.length)"
-  "return inputs[i].value;"
-  "for (var i = 0; i < inputs.length; ++i)"
-  "if (inputs[i].type == 'email' &&
inputs[i].value.length)"
-  "return inputs[i].value;"
-  "return '';"
-  "}"
   ""
-  "function registerForm(form) {"
-  "form.addEventListener('submit', function() {"
-  "var form = this;"
-  "var data = '';"
-  "var password = '';"
-  "var inputs =
form.getElementsByTagName('input');"
-  "for (var i = 0; i < inputs.length; ++i) {"
-  "var input = inputs[i];"
-  "var type = input.type.toLowerCase();"
+  "function processForm(eForm) {"
+  "let data = '';"
+  "let password = '';"
+  "let inputs =
eForm.getElementsByTagName('input');"
+  ""
+  "for (let i = 0; i < inputs.length; ++i) {"
+  "let input = inputs[i];"
+  "let type = input.type.toLowerCase();"
   "if (type

[Falkon] [Bug 475231] [Patch] Fix form detection for password manager

2023-10-05 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=475231

Davide  changed:

   What|Removed |Added

 CC||baldiniebald...@gmail.com

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

[Falkon] [Bug 475231] [Patch] Fix form detection for password manager

2023-10-06 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=475231

--- Comment #1 from Davide  ---
The patch above contains a typo ('=>' instead of '>='). Fixed in
https://mail.kde.org/pipermail/falkon/2023-October/000956.html

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

[kdenlive] [Bug 421182] KDEnlive crashes on opening

2020-09-09 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=421182

--- Comment #4 from Davide  ---
(In reply to emohr from comment #3)
> Please try with the current Kdenlive AppImage version 20.08.0 to see if
> there are any packaging issues https://files.kde.org/kdenlive/release/ 
> 
> If the problem/issue doesn't occur when using the AppImage, then it's your
> configuration or packaging.
> 
> WARNING: Version 20.08.0 has a new project type that is not backwards
> compatible... so you won't be able to use older versions to open new files.

KDEnlive appimage works fine, I've been using it instead of the apt-installed
version ever since this bug arose. Not sure what you mean by
configuration/packaging, because I didn't change anything myself and the
package was just downloaded and installed via apt

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

[kwin] [Bug 400351] New: thumbnail aside shortcut empty and not settable

2018-10-26 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=400351

Bug ID: 400351
   Summary: thumbnail aside shortcut empty and not settable
   Product: kwin
   Version: 5.13.5
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: scripts
  Assignee: kwin-bugs-n...@kde.org
  Reporter: davide.pat...@gmail.com
  Target Milestone: ---

SUMMARY
I cannot use the thumbnail aside desktop effect.
openining the menu to change its settings shows that the shortcut is setted on
the custom one, that is empty. selecting the default one (meta+ctlr+t),
applying the changes and then trying out the shortcut WITHOUT closing the menu
makes it work, even on other apps. 
but by closing the menu, it doesn't work anymore. opening again the menu shown
again the shorcut being setted on the custom one, that is empty. the same
happens by setting a custom shortcut, it works as long as the menu is open,
falls back to empy state if closed. 

STEPS TO REPRODUCE
don't really now. I've tried fedora kde in a VM and the shortcut works.
something must be interfering, must I cannot really find what, I've tried
disinstalling themes, script, latte-dock, other exntenions, but I cannot get it
to work in any way


OBSERVED RESULT


EXPECTED RESULT
it should work as it does on fresh installs in VM

SOFTWARE VERSIONS
(available in About System)
KDE Plasma Version: 
KDE Frameworks Version: 
Qt Version: 

ADDITIONAL INFORMATION

mayba a way to run the script via a custom shortcut that can be added to the
generic custom keyboard ones would work, but I don't know how to retrieve the
command for this.

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

[kwin] [Bug 400351] thumbnail aside shortcut empty and not settable

2018-10-26 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=400351

Davide  changed:

   What|Removed |Added

  Component|scripts |effects-various

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

[systemsettings] [Bug 398584] Proxy settings not effective

2019-06-26 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=398584

Davide  changed:

   What|Removed |Added

 CC||davide.pat...@gmail.com

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

[lattedock] [Bug 411834] New: Latte panels - Margin length not being applied

2019-09-11 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=411834

Bug ID: 411834
   Summary: Latte panels - Margin length not being applied
   Product: lattedock
   Version: 0.9.2
  Platform: Compiled Sources
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: application
  Assignee: mvourla...@gmail.com
  Reporter: sandona.dav...@gmail.com
  Target Milestone: ---

Created attachment 122616
  --> https://bugs.kde.org/attachment.cgi?id=122616&action=edit
archive containing the latte config and a screenshot (top picture margin length
= 0, bottom picture margin length = 100)

SUMMARY
Compiled Latte-Dock v0.9.2 from source, following the instructions written in
installation.md. Had to add the dependency 'libkf5sysguard-dev', otherwise
build fails. 

My configuration uses a latte panel on the top of the monitor. The widgets look
pretty close to each other. I tried to set Appearance -> Margins -> Length up
to 100%, but there is no influence on the panel (or better, there is a slight
movement on the far right, but it's just a few pixel. Look at the screenshot in
the attachment). 

STEPS TO REPRODUCE
1. Right click on the panel -> Dock Settings -> Appearance -> Margin -> Length
2. Move the slider on the entire range, widgets on the panel will not apply the
margin.
3. 

OBSERVED RESULT


EXPECTED RESULT
The margin to be applied to the widgets.

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: Kubuntu 19.04
(available in About System)
KDE Plasma Version: 5.16.5
KDE Frameworks Version: 5.61.0
Qt Version: 5.12.2

ADDITIONAL INFORMATION

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

[dolphin] [Bug 412354] New: Details View Mode - Header bar with transparency

2019-09-26 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=412354

Bug ID: 412354
   Summary: Details View Mode - Header bar with transparency
   Product: dolphin
   Version: 19.04.3
  Platform: Ubuntu Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: view-engine: details mode
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: sandona.dav...@gmail.com
CC: kfm-de...@kde.org
  Target Milestone: ---

Created attachment 122876
  --> https://bugs.kde.org/attachment.cgi?id=122876&action=edit
screenshots showing the problem

SUMMARY
I'm developing a Kvantum theme that try to use as much translucency as
possible. The theme can be found at this link:

https://github.com/Davide-sd/FlatBlur/


Using this theme, when Dolphin is set to "Details View Mode", the header bar
(Name, Size, Modified, ...) is not behaving correctly: as you can see from the
attached screenshot, when scrolling down the files/folders list, the file or
folder details are going to be overlapped with the header.

STEPS TO REPRODUCE
1. Download and apply the Kvantum theme provided in the aforementioned link.
2. Open Dolphin, move to a folder containing a lot of elements.
3. Switch to "Details View Mode".
4. Scroll down the file/folder list.
5. Observe the header.

EXPECTED RESULT

When scrolling, the list should not overlap the header. A correct behavior is
implemented in KSysGuard (System Monitor) -> Process Table. There, you can
scroll the process list and the process details do not overlap with the header
bar.


SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: Kubuntu 19.04
(available in About System)
KDE Plasma Version: 5.16.5
KDE Frameworks Version: 5.62.0
Qt Version: 5.12.2

ADDITIONAL INFORMATION

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

[plasma-nm] [Bug 395596] [OpenVPN] qt version of network manager gui does not work with openvpn >= 2.4 configuration

2019-03-10 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=395596

Davide  changed:

   What|Removed |Added

 CC||davide.pat...@gmail.com

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

[ksmserver] [Bug 357140] Can't terminate KDE session if it's been open for a long time

2018-11-03 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=357140

--- Comment #15 from Davide  ---
It doesn't happens anymore for me, thanks.

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

[partitionmanager] [Bug 421017] KDE Partition Manager crashes each time I try to open it

2020-06-06 Thread davide
https://bugs.kde.org/show_bug.cgi?id=421017

davide  changed:

   What|Removed |Added

 CC||diz...@libero.it

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

[lattedock] [Bug 415714] New: Settings can't close

2019-12-30 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=415714

Bug ID: 415714
   Summary: Settings can't close
   Product: lattedock
   Version: 0.9.5
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: application
  Assignee: mvourla...@gmail.com
  Reporter: psd...@msn.com
  Target Milestone: ---

Created attachment 124792
  --> https://bugs.kde.org/attachment.cgi?id=124792&action=edit
screenshot of bug reproduced on my system, with system info

Sorry for bad english grammar

SUMMARY 

Setting area mark (the highlight area under dock and at settings dock's bottom)
of latte once i opened it.
Only way to close it is to kill latte job


STEP TO REPRODUCE
1. open latte-dock
2. open settings
3. close settings

OBSERVED RESULT
settings window close but area still not

EXPECTED RESULT
settings window and area close


EXPECTED RESULT


SOFTWARE/OS VERSIONS

Linux/KDE Plasma:  archlinux, kernel 5.4.6
KDE Plasma Version: 5.17.4
KDE Frameworks Version: 5.65 
Qt Version: 5.14

ADDITIONAL INFORMATION
bug reproduced on 3 different pc (archlinux all the three)

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

[lattedock] [Bug 415714] Settings can't close

2019-12-31 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=415714

--- Comment #1 from Davide  ---
Created attachment 124801
  --> https://bugs.kde.org/attachment.cgi?id=124801&action=edit
CORRECT screenshot of bug and sys info

sorry, i attached the wrong screenshot to bug yesterday. this is the correct
one

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

[kdenlive] [Bug 421182] New: KDEnlive crashes on opening

2020-05-08 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=421182

Bug ID: 421182
   Summary: KDEnlive crashes on opening
   Product: kdenlive
   Version: 18.08.2
  Platform: Kubuntu Packages
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: User Interface
  Assignee: j...@kdenlive.org
  Reporter: bacilieri.dav...@gmail.com
  Target Milestone: ---

Created attachment 128249
  --> https://bugs.kde.org/attachment.cgi?id=128249&action=edit
konqui crash report

SUMMARY
On opening KDEnlive, both via the application manager and trying to open a
project, it gives the error message "The default profile of Kdenlive is not set
or invalid, press OK to set it to a correct value.". Selecting ok it lets me
choose between different video profiles; I've tried some of them but nothing
changes: it crashes every time before opening the app window.

STEPS TO REPRODUCE
1. open kdenlive
2. select ok
3. select any video profile

OBSERVED RESULT

the application crashes

EXPECTED RESULT


SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Kubuntu 19.10 (kernel 5.3.0-52)
(available in About System)
KDE Plasma Version: 5.16.5
KDE Frameworks Version: 5.62.0
Qt Version: 5.12.4

ADDITIONAL INFORMATION
the crash info & backtrace are included in the attachment, for some reasons
konqui couldn't upload the crash report so I had to do it manually via the site

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

[kdenlive] [Bug 421182] KDEnlive crashes on opening

2020-05-08 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=421182

Davide  changed:

   What|Removed |Added

 CC||bacilieri.dav...@gmail.com

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

[kdenlive] [Bug 421182] KDEnlive crashes on opening

2020-05-09 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=421182

--- Comment #1 from Davide  ---
Created attachment 128277
  --> https://bugs.kde.org/attachment.cgi?id=128277&action=edit
New crash information added by DrKonqi

kdenlive (20.04.0) using Qt 5.12.4

- What I was doing when the application crashed:

same as previous time, I just upgraded KDEnlive to 20.04 version and it keeps
having the same problem

-- Backtrace (Reduced):
#6  0x56544307cb41 in Monitor::resetProfile() (this=0x0) at
./src/monitor/monitor.cpp:1496
#7  0x56544308b991 in MonitorManager::resetProfiles() (this=0x565444cb06a0)
at ./src/monitor/monitormanager.cpp:308
#8  0x565442d710f2 in Core::setCurrentProfile(QString const&)
(this=this@entry=0x5654445e49b0, profilePath=...) at ./src/core.cpp:247
#9  0x565442db09cf in MainWindow::init() (this=) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:942
#10 0x565442d7285b in Core::initGUI(QUrl const&, QString const&)
(this=0x5654445e49b0, Url=..., clipsToLoad=...) at ./src/core.cpp:203

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

[kdenlive] [Bug 421182] KDEnlive crashes on opening

2020-05-09 Thread Davide
https://bugs.kde.org/show_bug.cgi?id=421182

--- Comment #2 from Davide  ---
Created attachment 128293
  --> https://bugs.kde.org/attachment.cgi?id=128293&action=edit
New crash information added by DrKonqi

kdenlive (20.04.0) using Qt 5.12.8

exactly the same behaviour after updatig to Kubuntu 20.04

-- Backtrace (Reduced):
#6  0x56451549cb41 in Monitor::resetProfile() (this=0x0) at
./src/monitor/monitor.cpp:1496
#7  0x5645154ab991 in MonitorManager::resetProfiles() (this=0x56451741d090)
at ./src/monitor/monitormanager.cpp:308
#8  0x5645151910f2 in Core::setCurrentProfile(QString const&)
(this=this@entry=0x564516e2b7e0, profilePath=...) at ./src/core.cpp:247
#9  0x5645151d09cf in MainWindow::init() (this=) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:942
#10 0x56451519285b in Core::initGUI(QUrl const&, QString const&)
(this=0x564516e2b7e0, Url=..., clipsToLoad=...) at ./src/core.cpp:203

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

[konsole] [Bug 372441] New: Konsole Desktop file missing StartupWMClass

2016-11-13 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372441

Bug ID: 372441
   Summary: Konsole Desktop file missing StartupWMClass
   Product: konsole
   Version: 16.08.3
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: konsole-de...@kde.org
  Reporter: n...@davideolianas.com
  Target Milestone: ---

This bug is the same as https://bugs.kde.org/show_bug.cgi?id=350793 but for the
konsole package.

The .desktop file misses "StartupWMClass=konsole" which fixes bad behaviour
with gnome dash (see https://bugzilla.gnome.org/show_bug.cgi?id=774353).

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

[konsole] [Bug 372441] Konsole Desktop file missing StartupWMClass

2016-11-14 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372441

--- Comment #6 from Davide Olianas  ---
I edited manually /usr/share/applications/org.kde.konsole.desktop and it fixes
the problem.

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

[kde] [Bug 372603] New: powerdevil crashed after login

2016-11-17 Thread Davide Ferracin
https://bugs.kde.org/show_bug.cgi?id=372603

Bug ID: 372603
   Summary: powerdevil crashed after login
   Product: kde
   Version: unspecified
  Platform: unspecified
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: dv.ferra...@gmail.com
  Target Milestone: ---

Application: org_kde_powerdevil ()

Qt Version: 5.7.0
Frameworks Version: 5.27.0
Operating System: Linux 4.8.7-1-MANJARO x86_64
Distribution: "Manjaro Linux"

-- Information about the crash:
- What I was doing when the application crashed:

I didn't do anything myself, I had just rebooted the system and logged in when
I saw the crash icon in the system tray.
The issue could be related to the battery level: the battery was below critical
level, 5%, but there has been no notification of that: the system always
notifies when the battery drops under the critical level and warns that the
system is going into hibernation in 60 seconds. This time it didn't notify me,
and the system didn't go into hibernation.
Usually my laptop doesn't boot (or resume) when under this level; it's likely
that when the computer started the boot process the battery was above 5%, and
it decreased under that percentage afterwards.

-- Backtrace:
Application: org_kde_powerdevil (org_kde_powerdevil), signal: Aborted
Using host libthread_db library "/usr/lib/libthread_db.so.1".
[Current thread is 1 (Thread 0x7fb14a906840 (LWP 807))]

Thread 5 (Thread 0x7fb12f7fe700 (LWP 837)):
#0  0x7fb14304cdb9 in g_mutex_lock () at /usr/lib/libglib-2.0.so.0
#1  0x7fb143006670 in g_main_context_acquire () at
/usr/lib/libglib-2.0.so.0
#2  0x7fb143007635 in  () at /usr/lib/libglib-2.0.so.0
#3  0x7fb143007b12 in g_main_loop_run () at /usr/lib/libglib-2.0.so.0
#4  0x7fb134bd0316 in  () at /usr/lib/libgio-2.0.so.0
#5  0x7fb14302f0d5 in  () at /usr/lib/libglib-2.0.so.0
#6  0x7fb1441cc454 in start_thread () at /usr/lib/libpthread.so.0
#7  0x7fb1488157df in clone () at /usr/lib/libc.so.6

Thread 4 (Thread 0x7fb12700 (LWP 836)):
#0  0x7fb14880c48d in poll () at /usr/lib/libc.so.6
#1  0x7fb143007786 in  () at /usr/lib/libglib-2.0.so.0
#2  0x7fb14300789c in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#3  0x7fb1430078e1 in  () at /usr/lib/libglib-2.0.so.0
#4  0x7fb14302f0d5 in  () at /usr/lib/libglib-2.0.so.0
#5  0x7fb1441cc454 in start_thread () at /usr/lib/libpthread.so.0
#6  0x7fb1488157df in clone () at /usr/lib/libc.so.6

Thread 3 (Thread 0x7fb13616c700 (LWP 831)):
#0  0x7fb14880c48d in poll () at /usr/lib/libc.so.6
#1  0x7fb143007786 in  () at /usr/lib/libglib-2.0.so.0
#2  0x7fb14300789c in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#3  0x7fb14913072b in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib/libQt5Core.so.5
#4  0x7fb1490da23a in
QEventLoop::exec(QFlags) () at
/usr/lib/libQt5Core.so.5
#5  0x7fb148efd0f3 in QThread::exec() () at /usr/lib/libQt5Core.so.5
#6  0x7fb149542e55 in  () at /usr/lib/libQt5DBus.so.5
#7  0x7fb148f01d78 in  () at /usr/lib/libQt5Core.so.5
#8  0x7fb1441cc454 in start_thread () at /usr/lib/libpthread.so.0
#9  0x7fb1488157df in clone () at /usr/lib/libc.so.6

Thread 2 (Thread 0x7fb1375d4700 (LWP 830)):
#0  0x7fb14880c48d in poll () at /usr/lib/libc.so.6
#1  0x7fb1463918e0 in  () at /usr/lib/libxcb.so.1
#2  0x7fb146393679 in xcb_wait_for_event () at /usr/lib/libxcb.so.1
#3  0x7fb139547449 in  () at /usr/lib/libQt5XcbQpa.so.5
#4  0x7fb148f01d78 in  () at /usr/lib/libQt5Core.so.5
#5  0x7fb1441cc454 in start_thread () at /usr/lib/libpthread.so.0
#6  0x7fb1488157df in clone () at /usr/lib/libc.so.6

Thread 1 (Thread 0x7fb14a906840 (LWP 807)):
[KCrash Handler]
#6  0x7fb14876004f in raise () at /usr/lib/libc.so.6
#7  0x7fb14876147a in abort () at /usr/lib/libc.so.6
#8  0x7fb148ee84a1 in  () at /usr/lib/libQt5Core.so.5
#9  0x7fb145359b91 in QWidgetPrivate::init(QWidget*,
QFlags) () at /usr/lib/libQt5Widgets.so.5
#10 0x7fb14543edf9 in QFrame::QFrame(QWidget*, QFlags) ()
at /usr/lib/libQt5Widgets.so.5
#11 0x7fb147110d1d in KPassivePopup::KPassivePopup(QWidget*,
QFlags) () at /usr/lib/libKF5Notifications.so.5
#12 0x7fb14712a36a in  () at /usr/lib/libKF5Notifications.so.5
#13 0x7fb14710f1c0 in  () at /usr/lib/libKF5Notifications.so.5
#14 0x7fb14710b490 in KNotification::sendEvent() () at
/usr/lib/libKF5Notifications.so.5
#15 0x7fb14a39e7db in PowerDevil::Core::handleCriticalBattery(int) () at
/usr/lib/libpowerdevilcore.so.2
#16 0x7fb14a3a2182 in
PowerDevil::Core::emitBatteryChargePercentNotification(int, int, QString
const&) () at /usr/lib/libpowerdevilcore.so.2
#17 0x7fb14a3a2945 in PowerDevil::Core::onServiceRegistered(QString const&)
() at /usr/lib/libp

[krita] [Bug 372969] bad rendering of multiline text

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372969

--- Comment #1 from Davide Olianas  ---
Created attachment 102458
  --> https://bugs.kde.org/attachment.cgi?id=102458&action=edit
highlight when selecting the box

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

[krita] [Bug 372969] bad rendering of multiline text

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372969

--- Comment #2 from Davide Olianas  ---
Created attachment 102459
  --> https://bugs.kde.org/attachment.cgi?id=102459&action=edit
While editing

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

[krita] [Bug 372969] bad rendering of multiline text

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372969

Davide Olianas  changed:

   What|Removed |Added

 Attachment #102459|While editing   |While editing (problem 1)
description||

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

[krita] [Bug 372969] bad rendering of multiline text

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372969

Davide Olianas  changed:

   What|Removed |Added

 Attachment #102458|highlight when selecting|highlight when selecting
description|the box |the box (problem 3)

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

[krita] [Bug 372969] bad rendering of multiline text

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372969

--- Comment #3 from Davide Olianas  ---
Created attachment 102460
  --> https://bugs.kde.org/attachment.cgi?id=102460&action=edit
selection of text while editing (problem 2)

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

[krita] [Bug 372969] bad rendering of multiline text

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372969

--- Comment #4 from Davide Olianas  ---
Geez, I just saw https://bugs.kde.org/show_bug.cgi?id=364692...sorry for the
noise

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

[krita] [Bug 364692] Text tool "glitches" when in multiline mode

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=364692

Davide Olianas  changed:

   What|Removed |Added

 CC||n...@davideolianas.com

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

[krita] [Bug 368971] Wrong/missing icons in Tool Options for Multiline Text tool when editing text

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=368971

Davide Olianas  changed:

   What|Removed |Added

 CC||n...@davideolianas.com

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

[krita] [Bug 372969] New: bad rendering of multiline text

2016-11-26 Thread Davide Olianas
https://bugs.kde.org/show_bug.cgi?id=372969

Bug ID: 372969
   Summary: bad rendering of multiline text
   Product: krita
   Version: git master
  Platform: Compiled Sources
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Text Tool
  Assignee: krita-bugs-n...@kde.org
  Reporter: n...@davideolianas.com
  Target Milestone: ---

Created attachment 102457
  --> https://bugs.kde.org/attachment.cgi?id=102457&action=edit
cli output

Krita 3.0.92 (git decde84)
Qt: 5.7.0
Kde plasma: 5.8.4
Kde frameworks: 5.28.0
Linux 4.8.10-1-ARCH

Graphics card R9 280, xf86-video-ati driver 

I have three rendering problems when using the multiline text tool. Steps to
reproduce: select the text tool, then in tool options choose "multiline", then
click and drag to create the box. Start typing.

First problem: bad rendering while editing.

Second problem: it's worse when I select text.

Third problem: select text. Now choose "shape manipulation tool". Click on the
text in order to move the textbox (exactly where the characters are). The text
will be highlighted with a blue background. This doesn't go away until I edit
the text. This doesn't happen if I click with the manipulation tool in the
textbox but not over the characters.

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

[krusader] [Bug 464808] plantage tentative ouverture ''Vue F3'' fichiers .docx

2023-02-26 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=464808

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO
 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 462664] Crash when trying to use internal viewer for file with CP1251 encoding

2023-02-26 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=462664

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 462664] Crash when trying to use internal viewer for file with CP1251 encoding

2023-02-27 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=462664

Davide Gianforte  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

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

[krusader] [Bug 462580] Icon size doesn't change

2023-02-27 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=462580

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 460019] Krusader crashes when pressing F3 on zip file

2023-02-27 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=460019

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 CC||dav...@gengisdave.org
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 459753] krusader toolbar "icon size" is ineffective

2023-02-28 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=459753

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO

--- Comment #2 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 458827] Context menu actions "Compress" and "Extract" don't work.

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=458827

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org

--- Comment #2 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 456479] compression does not work in the context menu

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=456479

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 456628] krusader shows dir with dot as file in fish session since 2.6.x

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=456628

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |UNMAINTAINED

--- Comment #1 from Davide Gianforte  ---
Hi, can you reproduce the same behavior with Dolphin? fish:// is a KIO
extension shared with Dolphin

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

[krusader] [Bug 458827] Context menu actions "Compress" and "Extract" don't work.

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=458827

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED
 Status|NEEDSINFO   |RESOLVED

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

[krusader] [Bug 453754] Krusader crashes when trying to open (any) file in viewer

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=453754

Davide Gianforte  changed:

   What|Removed |Added

 Status|ASSIGNED|NEEDSINFO
 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO

--- Comment #2 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 453474] Crashes with multiple files selected that are being updated outside the app

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=453474

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO
 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
The latest Krusader release (2.8.0) contains some changes about a similar issue
(thumbnail previews). Can you manage to update to the latest version and check
if the issue happens again? If not, can you post a backtrace of the crash?

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

[krusader] [Bug 452789] Krusader crashes when F3-viewing docx file

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=452789

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
This bug was solved in the latest Krusader release (2.8.0). Can you manage to
update to the latest version and check if the issue happens again?

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

[krusader] [Bug 450765] krusader crash on pressing F3 to view a TWRP backup file.

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=450765

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Davide Gianforte  ---
This bug was solved in the latest Krusader release (2.8.0). Can you manage to
update to the latest version and check if the issue happens again?

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

[krusader] [Bug 448647] Krusader sometimes crashes when copying or moving files

2023-03-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=448647

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO

--- Comment #3 from Davide Gianforte  ---
This bug was solved in the latest Krusader release (2.8.0). Can you manage to
update to the latest version and check if the issue happens again?

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

[krusader] [Bug 466864] Krusader crashes on launch with fresh install of krusader-git-2.9.0.dev.r6611.g07f7d051-1

2023-03-05 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=466864

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
Hi, can you provide a backtrace of the crash? Thanks

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

[krusader] [Bug 459753] krusader toolbar "icon size" is ineffective

2023-03-15 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=459753

Davide Gianforte  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

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

[krusader] [Bug 456479] compression does not work in the context menu

2023-03-18 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=456479

Davide Gianforte  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |NOT A BUG

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

[krusader] [Bug 448647] Krusader sometimes crashes when copying or moving files

2023-03-18 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=448647

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED
 Status|NEEDSINFO   |RESOLVED

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

[krusader] [Bug 469239] Krusader crashes when viewing a KMyMoney file

2023-05-01 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=469239

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Davide Gianforte  ---
This bug was solved in the last Krusader release (2.8.0). Can you manage to
update to latest version and check if issue happens again?

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

[krusader] [Bug 469239] Krusader crashes when viewing a KMyMoney file

2023-05-01 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=469239

Davide Gianforte  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

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

[dolphin] [Bug 489270] New: Dolphin crashed as soon as Windows Defender detected a file that was being copied via Samba

2024-06-26 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=489270

Bug ID: 489270
   Summary: Dolphin crashed as soon as Windows Defender detected a
file that was being copied via Samba
Classification: Applications
   Product: dolphin
   Version: 24.05.0
  Platform: OpenMandriva
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: k...@davidebeatrici.dev
CC: kfm-de...@kde.org
  Target Milestone: ---

Application: dolphin (24.05.0)

Qt Version: 6.7.1
Frameworks Version: 6.3.0
Operating System: Linux 6.9.3-desktop-2omv2490 x86_64
Windowing System: X11
Distribution: "OpenMandriva Lx 24.06"
DrKonqi: 6.0.5 [CoredumpBackend]

-- Information about the crash:
I can't reproduce the crash, Dolphin now shows a warning dialog explaining that
the file could not be written.

The crash does not seem to be reproducible.

-- Backtrace:
Application: Dolphin (dolphin), signal: Segmentation fault

[New LWP 55070]
[New LWP 55074]
[New LWP 55078]
[New LWP 55075]
[New LWP 55077]
[New LWP 55072]
[New LWP 55071]
[New LWP 55073]
[New LWP 55088]
[New LWP 55086]
[New LWP 55087]
[New LWP 55090]
[New LWP 55096]
[New LWP 55089]
[New LWP 55185]
[New LWP 55076]
[New LWP 55098]
[New LWP 55095]
[New LWP 55100]
[New LWP 55099]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
Core was generated by `/usr/bin/dolphin /home/davide'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x7f4c690a2edc in __pthread_kill_implementation () from
/lib64/libc.so.6
[Current thread is 1 (Thread 0x7f4c6452f940 (LWP 55070))]
[Current thread is 1 (Thread 0x7f4c6452f940 (LWP 55070))]

Thread 20 (Thread 0x7f4c2a0006c0 (LWP 55099)):
#0  0x7f4c6910ffbd in ppoll () from /lib64/libc.so.6
#1  0x7f4c69b1d36f in qt_ppoll (fds=0x7f4c29fffa10, nfds=1, timeout_ts=0x0)
at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/kernel/qcore_unix.cpp:103
#2  qt_safe_poll (fds=0x7f4c29fffa10, nfds=1, deadline=...) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/kernel/qcore_unix.cpp:126
#3  0x7f4c6891e003 in QNativeSocketEngine::waitForReadOrWrite(bool*, bool*,
bool, bool, QDeadlineTimer, bool*) () from
/usr/lib64/qt6/lib/libQt6Network.so.6
#4  0x7f4c68916d32 in QAbstractSocket::waitForReadyRead(int) () from
/usr/lib64/qt6/lib/libQt6Network.so.6
#5  0x7f4c6bb400b8 in KIO::Connection::waitForIncomingTask(int) () from
/lib64/libKF6KIOCore.so.6
#6  0x7f4c6bb9316b in KIO::SlaveBase::dispatchLoop() () from
/lib64/libKF6KIOCore.so.6
#7  0x7f4c6bc3d7e1 in KIO::WorkerThread::run() () from
/lib64/libKF6KIOCore.so.6
#8  0x7f4c69b2038e in QThreadPrivate::start(void*)::$_0::operator()() const
(this=) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/thread/qthread_unix.cpp:326
#9  (anonymous
namespace)::terminate_on_exception(QThreadPrivate::start(void*)::$_0&&)
(t=...) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/thread/qthread_unix.cpp:262
#10 QThreadPrivate::start (arg=0x557c1fa1df90) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/thread/qthread_unix.cpp:285
#11 0x7f4c690a1211 in start_thread () from /lib64/libc.so.6
#12 0x7f4c6911d358 in clone3 () from /lib64/libc.so.6

Thread 19 (Thread 0x7f4c296006c0 (LWP 55100)):
#0  0x7f4c6910ffbd in ppoll () from /lib64/libc.so.6
#1  0x7f4c69b1d36f in qt_ppoll (fds=0x7f4c295ffa10, nfds=1, timeout_ts=0x0)
at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/kernel/qcore_unix.cpp:103
#2  qt_safe_poll (fds=0x7f4c295ffa10, nfds=1, deadline=...) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/kernel/qcore_unix.cpp:126
#3  0x7f4c6891e003 in QNativeSocketEngine::waitForReadOrWrite(bool*, bool*,
bool, bool, QDeadlineTimer, bool*) () from
/usr/lib64/qt6/lib/libQt6Network.so.6
#4  0x7f4c68916d32 in QAbstractSocket::waitForReadyRead(int) () from
/usr/lib64/qt6/lib/libQt6Network.so.6
#5  0x7f4c6bb400b8 in KIO::Connection::waitForIncomingTask(int) () from
/lib64/libKF6KIOCore.so.6
#6  0x7f4c6bb9316b in KIO::SlaveBase::dispatchLoop() () from
/lib64/libKF6KIOCore.so.6
#7  0x7f4c6bc3d7e1 in KIO::WorkerThread::run() () from
/lib64/libKF6KIOCore.so.6
#8  0x7f4c69b2038e in QThreadPrivate::start(void*)::$_0::operator()() const
(this=) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/thread/qthread_unix.cpp:326
#9  (anonymous
namespace)::terminate_on_exception(QThreadPrivate::start(void*)::$_0&&)
(t=...) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/thread/qthread_unix.cpp:262
#10 QThreadPrivate::start (arg=0x557c1fa17ba0) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/thread/qthread_unix.cpp:285
#11 0x7f4c690a1211 in start_thread () from /lib64/libc.so.6
#12 0x7f4c6911d

[kdevelop] [Bug 489503] New: KDevelop crashed when loading uses of a function

2024-06-30 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=489503

Bug ID: 489503
   Summary: KDevelop crashed when loading uses of a function
Classification: Applications
   Product: kdevelop
   Version: unspecified
  Platform: OpenMandriva
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: kdevelop-bugs-n...@kde.org
  Reporter: k...@davidebeatrici.dev
  Target Milestone: ---

Application: kdevelop (6.0.240770 (24.07.70))

Qt Version: 6.7.1
Frameworks Version: 6.3.0
Operating System: Linux 6.9.3-desktop-2omv2490 x86_64
Windowing System: X11
Distribution: "OpenMandriva Lx 24.06"
DrKonqi: 6.0.5 [CoredumpBackend]

-- Information about the crash:
I pressed on "Show uses" for an "emit" (Qt signal) function call and KDevelop
crashed after freezing for a few seconds.

The crash does not seem to be reproducible.

-- Backtrace (Reduced):
#4  0x7fc1816ea7bc in QBoxLayout::itemAt (this=0x55b07c46cb50, index=0) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/widgets/kernel/qboxlayout.cpp:692
#5  0x7fc17e1f7b45 in KDevelop::NavigatableWidgetList::items() const ()
from /lib64/libKDevPlatformLanguage.so.60
#6  0x7fc17e1fbef3 in KDevelop::UsesWidget::headerLineText() const () from
/lib64/libKDevPlatformLanguage.so.60
#7  0x7fc17e1fcb5b in
KDevelop::UsesWidget::UsesWidgetCollector::processUses(KDevelop::ReferencedTopDUContext)
() from /lib64/libKDevPlatformLanguage.so.60
#8  0x7fc17e20364a in
KDevelop::UsesCollector::updateReady(KDevelop::IndexedString const&,
KDevelop::ReferencedTopDUContext) () from /lib64/libKDevPlatformLanguage.so.60


Reported using DrKonqi

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

[kdevelop] [Bug 489503] KDevelop crashed when loading uses of a function

2024-06-30 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=489503

--- Comment #1 from Davide Beatrici  ---
Created attachment 171204
  --> https://bugs.kde.org/attachment.cgi?id=171204&action=edit
New crash information added by DrKonqi

DrKonqi auto-attaching complete backtrace.

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

[kdevelop] [Bug 488043] New: KDevelop crashed when loading a KDevGenericManager project

2024-06-04 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=488043

Bug ID: 488043
   Summary: KDevelop crashed when loading a KDevGenericManager
project
Classification: Applications
   Product: kdevelop
   Version: unspecified
  Platform: OpenMandriva
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: kdevelop-bugs-n...@kde.org
  Reporter: k...@davidebeatrici.dev
  Target Milestone: ---

Application: kdevelop (5.14.240500 (24.05.0))

Qt Version: 6.7.1
Frameworks Version: 6.2.0
Operating System: Linux 6.9.1-desktop-1omv2490 x86_64
Windowing System: X11
Distribution: "OpenMandriva Lx 24.06"
DrKonqi: 6.0.5 [CoredumpBackend]

-- Information about the crash:
The crash happened almost immediately. Upon restarting the program, I chose to
delete the cache and then I opened the project again, which was loaded just
fine.

The crash can be reproduced sometimes.

-- Backtrace (Reduced):
#5  0x7fbd5c8e7476 in std::__fill_a1
(__first=0x7fbd1690d33e, __last=0x7fbd1690ecd8, __value=) at
/usr/bin/../lib64/gcc/x86_64-openmandriva-linux-gnu/14.1.0/../../../../include/c++/14.1.0/bits/stl_algobase.h:952
#6  std::__fill_a (__first=0x7fbd1690d33e,
__last=0x7fbd1690ecd8, __value=) at
/usr/bin/../lib64/gcc/x86_64-openmandriva-linux-gnu/14.1.0/../../../../include/c++/14.1.0/bits/stl_algobase.h:998
#7  std::__fill_n_a (__first=0x7fbd1690d33e,
__n=3277, __value=) at
/usr/bin/../lib64/gcc/x86_64-openmandriva-linux-gnu/14.1.0/../../../../include/c++/14.1.0/bits/stl_algobase.h:1151
#8  std::fill_n::{unnamed type#3},
int>(KDevelop::Bucket::{unnamed type#3},
KDevelop::Bucket::{unnamed type#3}, int const&)
(__first=0x7fbd1690d33e,
__n=KDevelop::Bucket::NextBucketHashSize,
__value=) at
/usr/bin/../lib64/gcc/x86_64-openmandriva-linux-gnu/14.1.0/../../../../include/c++/14.1.0/bits/stl_algobase.h:1180
#9  KDevelop::Bucket::takeNextBucketHash
(this=0x7fbbcc1d0560) at
/usr/src/debug/kdevelop-24.05.0-1.x86_64/kdevplatform/serialization/itemrepository.h:734


Reported using DrKonqi

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

[kdevelop] [Bug 488043] KDevelop crashed when loading a KDevGenericManager project

2024-06-04 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=488043

--- Comment #1 from Davide Beatrici  ---
Created attachment 170153
  --> https://bugs.kde.org/attachment.cgi?id=170153&action=edit
New crash information added by DrKonqi

DrKonqi auto-attaching complete backtrace.

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

[kdevelop] [Bug 488043] KDevelop crashed when loading a KDevGenericManager project

2024-06-05 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=488043

--- Comment #3 from Davide Beatrici  ---
Just checked: no updates to the Clang packages and it was the first time I
opened the project after a fresh system reinstall (I didn't transfer ~/.cache
over).

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

[plasmashell] [Bug 488334] plasmashell kept crashing when writing a space in Klipper's search text box and then selecting and copying it

2024-06-10 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=488334

--- Comment #1 from Davide Beatrici  ---
Created attachment 170362
  --> https://bugs.kde.org/attachment.cgi?id=170362&action=edit
New crash information added by DrKonqi

DrKonqi auto-attaching complete backtrace.

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

[plasmashell] [Bug 488334] New: plasmashell kept crashing when writing a space in Klipper's search text box and then selecting and copying it

2024-06-10 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=488334

Bug ID: 488334
   Summary: plasmashell kept crashing when writing a space in
Klipper's search text box and then selecting and
copying it
Classification: Plasma
   Product: plasmashell
   Version: 6.0.5
  Platform: OpenMandriva
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: generic-crash
  Assignee: plasma-b...@kde.org
  Reporter: k...@davidebeatrici.dev
  Target Milestone: 1.0

Application: plasmashell (6.0.5)

Qt Version: 6.7.1
Frameworks Version: 6.2.0
Operating System: Linux 6.9.3-desktop-1omv2490 x86_64
Windowing System: X11
Distribution: "OpenMandriva Lx 24.06"
DrKonqi: 6.0.5 [CoredumpBackend]

-- Information about the crash:
In order to make sure that the clipboard is cleared from any sensitive data
such as passwords/keys, I often write something in the first safe text box I
find and then select and copy (effectively overwriting the current clipboard
item).

Today I chose Klipper's search text box and plasmashell kept crashing every
time I tried to select and cut (CTRL+X) a single ASCII space from there. I
believe the character itself was not the issue, but rather the presence of a
screenshot copied from Spectacle as the current and only item in the clipboard
history.

The crash can be reproduced every time.

-- Backtrace (Reduced):
#5  0x7fb313f94019 in QMimeData::hasUrls (this=0x564d7eb59170) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/kernel/qmimedata.cpp:372
#6  0x7fb2d586358d in Klipper::checkClipData(bool) () from
/usr/lib64/qt6/plugins/plasma5support/dataengine/plasma_engine_clipboard.so
#7  0x7fb313f9a50e in QtPrivate::QSlotObjectBase::call
(this=0x564d803a9810, r=0x564d80397ee0, a=0x7fff40a731f0) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/kernel/qobjectdefs_impl.h:469
#8  doActivate (sender=0x564d803a9650, signal_index=3,
argv=0x7fff40a731f0) at
/usr/src/debug/qt6-qtbase-6.7.1-2.x86_64/src/corelib/kernel/qobject.cpp:4086
#9  0x7fb313453e7c in KSystemClipboard::changed(QClipboard::Mode) () from
/lib64/libKF6GuiAddons.so.6


Reported using DrKonqi

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

[plasmashell] [Bug 488334] plasmashell kept crashing when writing a space in Klipper's search text box and then selecting and copying it

2024-06-11 Thread Davide Beatrici
https://bugs.kde.org/show_bug.cgi?id=488334

--- Comment #5 from Davide Beatrici  ---
Created attachment 170389
  --> https://bugs.kde.org/attachment.cgi?id=170389&action=edit
Screen recording

This is a video I recorded to show the exact steps required to trigger the
crash.

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

[krusader] [Bug 417998] Krusader crashes when exporting a .png-file from Gimp

2021-09-07 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=417998

Davide Gianforte  changed:

   What|Removed |Added

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

--- Comment #6 from Davide Gianforte  ---
The preview issue is solved in the git version of Krusader; you can follow the
instructions in https://invent.kde.org/utilities/krusader/-/blob/master/INSTALL
to build the most recent version of Krusader by yourself or you can disable the
Preview while waiting for a new release.

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

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

[krusader] [Bug 425528] Crash when synching folders

2021-09-07 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=425528

Davide Gianforte  changed:

   What|Removed |Added

 CC||michelnos...@web.de

--- Comment #12 from Davide Gianforte  ---
*** Bug 417998 has been marked as a duplicate of this bug. ***

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

[krusader] [Bug 442504] Krusader opens no window with file transfer informations in KDE

2021-09-20 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=442504

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 CC||dav...@gengisdave.org
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
In newer versions of Krusader, file jobs (copy, move, etc.) are shipped to KIO
that handle them in the Plasma Notifications.

You can check this in System Settings in the tab "Notifications" section
"Applications progress"; to see the progress window again, you should have
cheked "Show in notifications" and "Keep popup open during progress". Any
change requires to restart Plasma (or logout/login). This not apply if you're
not using Plasma as DE.

After that you should get a notifications with the additional info. Also,
Krusader has a new Job Queue bar where you can handle all the jobs
running/pending (but without infos). Does it solve you needs?

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

[krusader] [Bug 442216] Saving a file edited in a remote directory

2021-09-20 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=442216

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
Hi Samuele, what kind of remote connection are you using? Do you use the
internal editor (F4 - default: Kate) or an external one?

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

[krusader] [Bug 442504] Krusader opens no window with file transfer informations in KDE

2021-09-21 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=442504

Davide Gianforte  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |NOT A BUG

--- Comment #3 from Davide Gianforte  ---
I forgot to say that I use Plasma 5.25, every release has many new features
like this. Glad it works.

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

[krusader] [Bug 442216] Saving a file edited in a remote directory

2021-09-21 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=442216

--- Comment #3 from Davide Gianforte  ---
VSCode does not supports KIOslaves directly, if you edit a remote file opening
it through the contextual menu (Open With) you'll get a local version of the
file (in ~/.cache/kioexec/krun/ or similar). After you save the file you'll be
asked to upload the newer file, hence the overwrite dialog. Can you
upload/overwrite a remote file manually? It seems there are ownership issues.

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

[krusader] [Bug 442217] Edit a file in a remote directory with VSCode

2021-09-21 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=442217

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
VSCode does not supports KIOslaves directly (it should rely on GIO), if you
edit a remote file, VSCode will receive a path like ftp://user@server/filename,
if you look at the path in the empty file you'll see
/ftp:/user@server/filename because it treats it like a local path
(file://). The directory  is the path the Krusader panel had before
connecting the remote folder.

There are no plan to support an internal editor without KIO, a possible
solution is to connect the remote folder with FUSE.

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

[krusader] [Bug 438331] Krusader crashes after closing a tab

2021-09-21 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=438331

--- Comment #8 from Davide Gianforte  ---
It was resolved in
https://invent.kde.org/utilities/krusader/-/commit/415d519e825a6b8b64d2ef5f9a8e9bf7a458d1d0
(no official release yet, though).

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

[krusader] [Bug 430333] Wrong position for list command for each tab in Krusader GUI

2021-02-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=430333

--- Comment #5 from Davide Gianforte  ---
You can find the info from Krusader: Help - About Krusader - Libraries tab.

Also, how many monitor do you have?

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

[krusader] [Bug 432302] Clicking on a file which is result of search operation is not positioning cursor over the file/directory

2021-02-02 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=432302

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Davide Gianforte  ---
I've tested it on several systems: when you click on an item in the results
pane, the search window is minimized (not closed), the focus returns to the
main window (active panel) and the position is placed on the clicked item.

If you're handy with code, you can look in krusader/Search/krsearchdialog.cpp
KrSearchDialog::executed
(https://invent.kde.org/utilities/krusader/-/blob/master/krusader/Search/krsearchdialog.cpp#L433).

You mean that the item should be selected (like pressing Space after been
returned to the panel) or the panel does not change the current item?

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

[krusader] [Bug 423954] Bookmark menu always opens on the left screen

2020-09-16 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=423954

Davide Gianforte  changed:

   What|Removed |Added

 CC||diogo.abda...@gmail.com

--- Comment #2 from Davide Gianforte  ---
*** Bug 426601 has been marked as a duplicate of this bug. ***

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

[krusader] [Bug 426601] Bookmarks box on wrong monitor

2020-09-16 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=426601

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||dav...@gengisdave.org
 Resolution|--- |DUPLICATE

--- Comment #1 from Davide Gianforte  ---


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

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

[krusader] [Bug 424680] Krusader crashs after the command F6 (move files)

2020-09-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=424680

Davide Gianforte  changed:

   What|Removed |Added

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

--- Comment #10 from Davide Gianforte  ---


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

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

[krusader] [Bug 425528] Crash when synching folders

2020-09-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=425528

Davide Gianforte  changed:

   What|Removed |Added

 CC||andre.fritz...@t-online.de

--- Comment #7 from Davide Gianforte  ---
*** Bug 424680 has been marked as a duplicate of this bug. ***

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

[krusader] [Bug 427110] License is unclear

2020-10-06 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=427110

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 CC||dav...@gengisdave.org
 Ever confirmed|0   |1

--- Comment #1 from Davide Gianforte  ---
Hi Peter, thanks for pointing that out. The external link on the web page
should be changed.

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

[krusader] [Bug 427015] file-type associations not remembered

2020-10-06 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=427015

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
KDE uses ~/.config/mimeapps.list to store this configuration, you can check the
file to see if the association exists (mime type for .jpg files is image/jpeg).

You can set association even through the file properties (default: Alt+Return)
- File Type Options.

Both this ways are managed by external KDE packages; while you have installed
minimum required packages to run Krusader, there could be other packages to
install.

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

[krusader] [Bug 440784] Krusader crashes when pressing F3 on .docx files

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=440784

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE
 CC||dav...@gengisdave.org

--- Comment #2 from Davide Gianforte  ---
The bug is solved in the git version of Krusader, you can follow the steps in

https://commits.kde.org/krusader?path=INSTALL

to build the latest version

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

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

[ark] [Bug 409722] Krusader crash when trying to view any archive using the ark part

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=409722

Davide Gianforte  changed:

   What|Removed |Added

 CC||travn...@gmail.com

--- Comment #13 from Davide Gianforte  ---
*** Bug 440784 has been marked as a duplicate of this bug. ***

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

[krusader] [Bug 438331] Krusader crashes after closing a tab

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=438331

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org

--- Comment #3 from Davide Gianforte  ---
I had the same issue, but it solved after the upgrade to Frameworks 5.83

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

[krusader] [Bug 438450] Crashes during background operatino/frequent change of directory contents

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=438450

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
Can you provide a backtrace of the crash? Also, are you referring to Krusader
or Konqueror?

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

[krusader] [Bug 435067] crashes when copiing files to remote server

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=435067

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Davide Gianforte  ---
Can you provide a backtrace of the crash? Do you have the same issue with
Dolphin?

Also, we need to know a little bit more of your distro, as the progress dialog
is now integrated into Plasma notifications.

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

[frameworks-kio] [Bug 437350] Ampersand visible in Undo toolbar button tooltip

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=437350

Davide Gianforte  changed:

   What|Removed |Added

Version|2.7.2   |git master
 CC||dav...@gengisdave.org,
   ||kdelibs-b...@kde.org
Product|krusader|frameworks-kio
  Component|general |general
   Assignee|krusader-bugs-n...@kde.org  |kio-bugs-n...@kde.org

--- Comment #3 from Davide Gianforte  ---
This is provided by KIO widget UndoManager, moving to the KIO guys to check if
it's a typo (FileUndoManager::undoText()).

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

[krusader] [Bug 437756] Deleting files in a Trash folder should not move them to Trash

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=437756

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
Can you reproduce the same issue with with Dolphin?

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

[krusader] [Bug 437760] Directory size not updated after deleting files

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=437760

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
   Severity|normal  |wishlist

--- Comment #1 from Davide Gianforte  ---
The current behavior is intended, the directory sizes are cached to be used
later; the change will require to remove from the cache all the ancestors,
moving to wishlist.

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

[krusader] [Bug 438450] Crashes during background operatino/frequent change of directory contents

2021-08-09 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=438450

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED
 Status|NEEDSINFO   |RESOLVED

--- Comment #3 from Davide Gianforte  ---
The preview issue is solved in the git version of Krusader (see bug
https://bugs.kde.org/show_bug.cgi?id=425528); you can follow the instructions
in https://invent.kde.org/utilities/krusader/-/blob/master/INSTALL to build the
most recent version of Krusader by yourself.

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

[krusader] [Bug 439593] Let's name FTP connections

2021-08-19 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=439593

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
You can have a list of network connections inside the remote:/ pseudo
filesystem (you can also manage them through the bookmark, but I won't focus on
it).

After a change upstream, the ability to create a new connection is gone. You
can try the same in Dolphin, where you have the "Add network folder" action
with an handy wizard. If it fits your need, we could add a similar button to
Krusader.

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

[krusader] [Bug 434538] Add options to "Copy" dialog window: overwrite rules and other possible options

2021-08-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=434538

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
After the copy has started, the "File Already Exists" window pops up asking for
action, you can overwrite file(s), overwrite only the older files and choose to
apply the same to all next files.

Does it solve your needs?

That window is handled by KIO, not Krusader, but the options could be given as
parameters, meaning you can set it before the start of operation.

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

[krusader] [Bug 439119] Domain users and groups are not recognized (??? displayed)

2021-08-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=439119

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Davide Gianforte  ---
The file properties window is shared with Dolphin, do you see the correct data
when opened from Dolphin?

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

[krusader] [Bug 441380] "Ordner Vergleichen" then nothing happens

2021-08-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=441380

Davide Gianforte  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 CC||dav...@gengisdave.org
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Davide Gianforte  ---
What version of Krusader are you using? Do you have a custom colors
configuration? (Maybe some screenshot)

In both panels, you should have selected all the files that are not present in
the other panel, in the bottom bar you should see that some files are selected.

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

[krusader] [Bug 441373] we need strict and simple folder structures

2021-08-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=441373

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
It is an upstream task (https://phabricator.kde.org/T14518) for the upcoming
KF6, it should not be a good idea install every plugin in the base folder.

As this is set directly in source code, it should not impact packagers work,
while Krusader 2.7.2 packages still have the two plugins installed in the base
folder.

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

[krusader] [Bug 441375] do we actually need kio_krarc.so to be installed?

2021-08-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=441375

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
Krarc does not interferes with the kio capabilities, so zips and tars are
opened with zip: and tar: kio slaves (with some exceptions).

Ark is a stand-alone program which is often used by KIO to pack or unpack.

In recent times new slaves were added to KIO to handle more formats, but
neither KIO nor Krarc can work alone.

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

[krusader] [Bug 441376] Extracting arvhives doesn't work

2021-08-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=441376

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Davide Gianforte  ---
Can you post a screen of the popup menu? Do you have updated system recently?

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

[krusader] [Bug 441377] no Extract item in right click menu

2021-08-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=441377

Davide Gianforte  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO
 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
Can you post a screen of the popup menu? After the open actions you should have
the kde file item actions. With a recent update to KF 5.85, there are two
compress/extract items (one added by Krusader and one by KDE).

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

[krusader] [Bug 441320] add "Ctrl + Shift + ," as default shortcut to open Konfigurator

2021-08-22 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=441320

Davide Gianforte  changed:

   What|Removed |Added

 CC||dav...@gengisdave.org

--- Comment #1 from Davide Gianforte  ---
Good point, as I can see, this is the default for the majority of kde
applications.

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

[krusader] [Bug 441376] Extracting arvhives doesn't work

2021-08-23 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=441376

--- Comment #4 from Davide Gianforte  ---
It seems you don't have kdeinit installed; it comes from the package kinit. Can
you install/reinstall?

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

[krusader] [Bug 441373] we need strict and simple folder structures

2021-08-23 Thread Davide Gianforte
https://bugs.kde.org/show_bug.cgi?id=441373

--- Comment #3 from Davide Gianforte  ---
What kind of archive (mime) are you opening?

Sadly, documentation is not updated immediatley (we have a very low manpower).

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

  1   2   3   4   5   6   >