[okular] [Bug 461996] displayed aspect ratio changes when switching monitors?

2023-03-08 Thread Laurent
https://bugs.kde.org/show_bug.cgi?id=461996

Laurent  changed:

   What|Removed |Added

 CC||kde94a0183f4466752@lpsink.f
   ||astmail.com

--- Comment #11 from Laurent  ---
I can confirm. Unfortunately, this seems to be a Qt issue.

Okular gets the DPI here, for the x and y axes separately:
https://invent.kde.org/graphics/okular/-/blob/master/core/utils.cpp#L52

X11 has the correct DPI, but Qt recomputes it as pixel_size / physical_size.
This is baked on several levels, both in platform-independent code:
https://code.qt.io/cgit/qt/qtbase.git/tree/src/gui/kernel/qscreen.cpp?id=71c3aab7baae9220b37178711a49746f66975d63#n211
and in the low-level XCB code:
https://code.qt.io/cgit/qt/qtbase.git/tree/src/plugins/platforms/xcb/qxcbscreen.cpp?id=71c3aab7baae9220b37178711a49746f66975d63#n104

It seems that physical_size does not come from the X11 display (as returned by
xdpyinfo). This would have been fine because X11 fakes a reasonable physical
size based on the monitors attached. Instead it comes from the monitor geometry
either through xrandr or the EDID information.

This is a problem because it fails to account for the possibility of black bars
on the top and bottom of the monitor when its aspect ratio does not match the
resolution. Indeed Eric sets "xrandr --output eDP-1 --mode 3840x2160", which is
16:9, while also saying the monitor is 16:10.

I was not able to pinpoint the bug the Qt code. Hopefully someone else can. But
I did check that QApplication::desktop()->widthMM() and
QApplication::desktop()->heightMM() indeed return the physical monitor
dimension regardless of black bars (which is perhaps not a bug in itself).

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

[okular] [Bug 461996] displayed aspect ratio changes when switching monitors?

2023-03-08 Thread Laurent
https://bugs.kde.org/show_bug.cgi?id=461996

--- Comment #12 from Laurent  ---
Note that there is already a workaround in the code for dealing with Qt
returning bad DPI values:

https://invent.kde.org/graphics/okular/-/blob/master/core/utils.cpp#L54

> if (qAbs(res.width() - res.height()) / qMin(res.height(), res.width()) < 
> 0.15) 

The code checks if the pixels are nonsquare by less than 15%. If not, it falls
back on a default of 72 DPI. If my computations are correct, lowering the
threshold to 10% would fix the problem for Eric.

The fallback could also be to force square pixels by discarding one axis,
instead of discarding all DPI information. Proposed patch:

diff --git a/core/utils.cpp b/core/utils.cpp
index 9f5f47244..fec40da94 100644
--- a/core/utils.cpp
+++ b/core/utils.cpp
@@ -51,10 +51,11 @@ QSizeF Utils::realDpi(const QWindow *windowOnScreen)
 if (screen) {
 const QSizeF res(screen->physicalDotsPerInchX(),
screen->physicalDotsPerInchY());
 if (res.width() > 0 && res.height() > 0) {
-if (qAbs(res.width() - res.height()) / qMin(res.height(),
res.width()) < 0.15) {
+if (qAbs(res.width() - res.height()) / qMin(res.height(),
res.width()) < 0.10) {
 return res;
 } else {
 qCDebug(OkularCoreDebug) << "QScreen calculation returned a
non square dpi." << res << ". Falling back";
+return QSizeF(res.width(), res.width());
 }
 }
 }

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

[frameworks-kio] [Bug 76380] Trashing files on other partitions and disks that are mounted without UID=USERID, GID=USERGROUPID, FMASK=177, DMASK=077 copies them to the Trash directory on /

2023-08-03 Thread Laurent
https://bugs.kde.org/show_bug.cgi?id=76380

Laurent  changed:

   What|Removed |Added

 Resolution|FIXED   |---
Version|5.42.0  |5.108.0
   Platform|Gentoo Packages |openSUSE
 CC||lcatin...@gmx.fr
 Status|RESOLVED|REOPENED

--- Comment #86 from Laurent  ---
> have pretty much the exact same problem with an arch btrfs system on latest
> everything

So do I. Exact same problem on a BTRFS system, move to trash from USB exFAT
disk is very slow because compression is set on /, but moving to trash on an
USB drive should stay on the removable media, not use the main partition. 

I don't know if the problem is due to Dolphin or kde framework. Using another
file manager (ie Dolphin) results in an immediate trashing. 

Whatever, this bug cannot be considered as resolved or ther's been a regression
:(

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

[frameworks-kio] [Bug 357041] Allow emptying per-disk trashes

2023-08-03 Thread Laurent
https://bugs.kde.org/show_bug.cgi?id=357041
Bug 357041 depends on bug 76380, which changed state.

Bug 76380 Summary: Trashing files on other partitions and disks that are 
mounted without UID=USERID, GID=USERGROUPID, FMASK=177, DMASK=077 copies them 
to the Trash directory on /
https://bugs.kde.org/show_bug.cgi?id=76380

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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

[frameworks-kio] [Bug 76380] Trashing files on other partitions and disks that are mounted without UID=USERID, GID=USERGROUPID, FMASK=177, DMASK=077 copies them to the Trash directory on /

2023-08-03 Thread Laurent
https://bugs.kde.org/show_bug.cgi?id=76380

--- Comment #87 from Laurent  ---
(In reply to Laurent from comment #86)

> I don't know if the problem is due to Dolphin or kde framework. Using
> another file manager (ie Dolphin) results in an immediate trashing. 
> 

Definitely not dolphin, but KDE framework : got the same result with krusader
file manager.

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

[plasmashell] [Bug 413754] New: Gitkraken launch crashed PlasmaShell

2019-11-02 Thread laurent
https://bugs.kde.org/show_bug.cgi?id=413754

Bug ID: 413754
   Summary: Gitkraken launch crashed PlasmaShell
   Product: plasmashell
   Version: 5.17.2
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: k...@davidedmundson.co.uk
  Reporter: laur...@ongaro.fr
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Application: plasmashell (5.17.2)

Qt Version: 5.13.1
Frameworks Version: 5.63.0
Operating System: Linux 5.3.7-arch1-2-ARCH x86_64
Distribution: Arch Linux

-- Information about the crash:
I was launching the latest gitkraken app.
The application freezed at start and kde crashed. 
I killed the freezed application (with CTRL+ALT+ESC + mouse clic).
I restarted Gitkraken and it worked well this time

This event occured twice on about 10 kikraken launches since yesterday

The crash can be reproduced sometimes.

-- Backtrace:
Application: Plasma (plasmashell), signal: Segmentation fault
Using host libthread_db library "/usr/lib/libthread_db.so.1".
[Current thread is 1 (Thread 0x7efec5d91c80 (LWP 2721))]

Thread 17 (Thread 0x7efe7964c700 (LWP 34939)):
#0  0x7efeca65a9ef in poll () at /usr/lib/libc.so.6
#1  0x7efea9577c14 in  () at /usr/lib/libpulse.so.0
#2  0x7efea9585059 in pa_mainloop_poll () at /usr/lib/libpulse.so.0
#3  0x7efea958f301 in pa_mainloop_iterate () at /usr/lib/libpulse.so.0
#4  0x7efea958f3b1 in pa_mainloop_run () at /usr/lib/libpulse.so.0
#5  0x7efea957f61e in  () at /usr/lib/libpulse.so.0
#6  0x7efea92f7d1c in  () at /usr/lib/pulseaudio/libpulsecommon-13.0.so
#7  0x7efec9ecc4cf in start_thread () at /usr/lib/libpthread.so.0
#8  0x7efeca6652d3 in clone () at /usr/lib/libc.so.6

Thread 16 (Thread 0x7efe79ffb700 (LWP 27706)):
#0  0x7efeca65a9ef in poll () at /usr/lib/libc.so.6
#1  0x7efea9577c14 in  () at /usr/lib/libpulse.so.0
#2  0x7efea9585059 in pa_mainloop_poll () at /usr/lib/libpulse.so.0
#3  0x7efea958f301 in pa_mainloop_iterate () at /usr/lib/libpulse.so.0
#4  0x7efea958f3b1 in pa_mainloop_run () at /usr/lib/libpulse.so.0
#5  0x7efea957f61e in  () at /usr/lib/libpulse.so.0
#6  0x7efea92f7d1c in  () at /usr/lib/pulseaudio/libpulsecommon-13.0.so
#7  0x7efec9ecc4cf in start_thread () at /usr/lib/libpthread.so.0
#8  0x7efeca6652d3 in clone () at /usr/lib/libc.so.6

Thread 15 (Thread 0x7efe7a7fc700 (LWP 19043)):
#0  0x7efec9ed2c45 in pthread_cond_wait@@GLIBC_2.3.2 () at
/usr/lib/libpthread.so.0
#1  0x7efeca9e1660 in QWaitCondition::wait(QMutex*, QDeadlineTimer) () at
/usr/lib/libQt5Core.so.5
#2  0x7efeca9e1752 in QWaitCondition::wait(QMutex*, unsigned long) () at
/usr/lib/libQt5Core.so.5
#3  0x7efe9aef6309 in
ThreadWeaver::Weaver::takeFirstAvailableJobOrSuspendOrWait(ThreadWeaver::Thread*,
bool, bool, bool) () at /usr/lib/libKF5ThreadWeaver.so.5
#4  0x7efe9aef9dcb in  () at /usr/lib/libKF5ThreadWeaver.so.5
#5  0x7efe9aef54fe in
ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at
/usr/lib/libKF5ThreadWeaver.so.5
#6  0x7efe9aef7f0c in ThreadWeaver::Thread::run() () at
/usr/lib/libKF5ThreadWeaver.so.5
#7  0x7efeca9db5b0 in  () at /usr/lib/libQt5Core.so.5
#8  0x7efec9ecc4cf in start_thread () at /usr/lib/libpthread.so.0
#9  0x7efeca6652d3 in clone () at /usr/lib/libc.so.6

Thread 14 (Thread 0x7efe7affd700 (LWP 19042)):
#0  0x7efec9ed2c45 in pthread_cond_wait@@GLIBC_2.3.2 () at
/usr/lib/libpthread.so.0
#1  0x7efeca9e1660 in QWaitCondition::wait(QMutex*, QDeadlineTimer) () at
/usr/lib/libQt5Core.so.5
#2  0x7efeca9e1752 in QWaitCondition::wait(QMutex*, unsigned long) () at
/usr/lib/libQt5Core.so.5
#3  0x7efe9aef6309 in
ThreadWeaver::Weaver::takeFirstAvailableJobOrSuspendOrWait(ThreadWeaver::Thread*,
bool, bool, bool) () at /usr/lib/libKF5ThreadWeaver.so.5
#4  0x7efe9aef9dcb in  () at /usr/lib/libKF5ThreadWeaver.so.5
#5  0x7efe9aef54fe in
ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at
/usr/lib/libKF5ThreadWeaver.so.5
#6  0x7efe9aef9e21 in  () at /usr/lib/libKF5ThreadWeaver.so.5
#7  0x7efe9aef54fe in
ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at
/usr/lib/libKF5ThreadWeaver.so.5
#8  0x7efe9aef7f0c in ThreadWeaver::Thread::run() () at
/usr/lib/libKF5ThreadWeaver.so.5
#9  0x7efeca9db5b0 in  () at /usr/lib/libQt5Core.so.5
#10 0x7efec9ecc4cf in start_thread () at /usr/lib/libpthread.so.0
#11 0x7efeca6652d3 in clone () at /usr/lib/libc.so.6

Thread 13 (Thread 0x7efe7b7fe700 (LWP 19041)):
#0  0x7efec9ed2c45 in pthread_cond_wait@@GLIBC_2.3.2 () at
/usr/lib/libpthread.so.0
#1  0x7efeca9e1660 in QWaitCondition::wait(QMutex*, QDeadlineTimer) () at
/usr/lib/libQt5Core.so.5
#2  0x7efeca9e1752 in QWaitCondition::wait(QMutex*, unsigned long) () at
/usr/lib/li

[Discover] [Bug 402464] New: Discover

2018-12-22 Thread Laurent
https://bugs.kde.org/show_bug.cgi?id=402464

Bug ID: 402464
   Summary: Discover
   Product: Discover
   Version: 5.14.4
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: discover
  Assignee: aleix...@kde.org
  Reporter: laurent.morisset...@orange.fr
  Target Milestone: ---

Application: plasma-discover (5.14.4)

Qt Version: 5.12.0
Frameworks Version: 5.53.0
Operating System: Linux 4.19.10-arch1-1-ARCH x86_64
Distribution: "Arch Linux"

-- Information about the crash:
- What I was doing when the application crashed: Crash when launching the
Discover app.
Application: Discover (plasma-discover), signal: Segmentation fault
Using host libthread_db library "/usr/lib/libthread_db.so.1".
[Current thread is 1 (Thread 0x7fa96bb76f80 (LWP 6996))]

Thread 22 (Thread 0x7fa913427700 (LWP 7044)):
#0  0x7fa9706a2e9f in recvmsg () at /usr/lib/libc.so.6
#1  0x7fa9706bfa7e in __check_pf () at /usr/lib/libc.so.6
#2  0x7fa97068c8f7 in getaddrinfo () at /usr/lib/libc.so.6
#3  0x7fa94d3edb11 in  () at /usr/lib/libgio-2.0.so.0
#4  0x7fa94d3ede36 in  () at /usr/lib/libgio-2.0.so.0
#5  0x7fa96ee5a4a6 in  () at /usr/lib/libglib-2.0.so.0
#6  0x7fa96ee6367b in  () at /usr/lib/libglib-2.0.so.0
#7  0x7fa96f94ea9d in start_thread () at /usr/lib/libpthread.so.0
#8  0x7fa9706a1b23 in clone () at /usr/lib/libc.so.6

Thread 21 (Thread 0x7fa912425700 (LWP 7043)):
#0  0x7fa97069c4ed in syscall () at /usr/lib/libc.so.6
#1  0x7fa96ee37151 in g_cond_wait_until () at /usr/lib/libglib-2.0.so.0
#2  0x7fa96eeb52c3 in  () at /usr/lib/libglib-2.0.so.0
#3  0x7fa96eeb54c3 in g_async_queue_timeout_pop () at
/usr/lib/libglib-2.0.so.0
#4  0x7fa96ee5a54a in  () at /usr/lib/libglib-2.0.so.0
#5  0x7fa96ee6367b in  () at /usr/lib/libglib-2.0.so.0
#6  0x7fa96f94ea9d in start_thread () at /usr/lib/libpthread.so.0
#7  0x7fa9706a1b23 in clone () at /usr/lib/libc.so.6

Thread 20 (Thread 0x7fa9452c9700 (LWP 7042)):
#0  0x7fa9706af12b in __lll_lock_wait_private () at /usr/lib/libc.so.6
#1  0x7fa9706bfeb0 in __free_in6ai () at /usr/lib/libc.so.6
#2  0x7fa97068c56c in getaddrinfo () at /usr/lib/libc.so.6
#3  0x7fa94d3edb11 in  () at /usr/lib/libgio-2.0.so.0
#4  0x7fa94d3ede36 in  () at /usr/lib/libgio-2.0.so.0
#5  0x7fa96ee5a4a6 in  () at /usr/lib/libglib-2.0.so.0
#6  0x7fa96ee6367b in  () at /usr/lib/libglib-2.0.so.0
#7  0x7fa96f94ea9d in start_thread () at /usr/lib/libpthread.so.0
#8  0x7fa9706a1b23 in clone () at /usr/lib/libc.so.6

Thread 19 (Thread 0x7fa96a75b700 (LWP 7041)):
#0  0x7fa9706af12b in __lll_lock_wait_private () at /usr/lib/libc.so.6
#1  0x7fa9706bfeb0 in __free_in6ai () at /usr/lib/libc.so.6
#2  0x7fa97068c56c in getaddrinfo () at /usr/lib/libc.so.6
#3  0x7fa94d3edb11 in  () at /usr/lib/libgio-2.0.so.0
#4  0x7fa94d3ede36 in  () at /usr/lib/libgio-2.0.so.0
#5  0x7fa96ee5a4a6 in  () at /usr/lib/libglib-2.0.so.0
#6  0x7fa96ee6367b in  () at /usr/lib/libglib-2.0.so.0
#7  0x7fa96f94ea9d in start_thread () at /usr/lib/libpthread.so.0
#8  0x7fa9706a1b23 in clone () at /usr/lib/libc.so.6

Thread 18 (Thread 0x7fa913c28700 (LWP 7040)):
#0  0x7fa970696c21 in poll () at /usr/lib/libc.so.6
#1  0x7fa96ee88540 in  () at /usr/lib/libglib-2.0.so.0
#2  0x7fa96ee8862e in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#3  0x7fa94ceb0f5f in  () at /usr/lib/libostree-1.so.1
#4  0x7fa96ee6367b in  () at /usr/lib/libglib-2.0.so.0
#5  0x7fa96f94ea9d in start_thread () at /usr/lib/libpthread.so.0
#6  0x7fa9706a1b23 in clone () at /usr/lib/libc.so.6

Thread 17 (Thread 0x7fa92a2c8700 (LWP 7039)):
#0  0x7fa970696c21 in poll () at /usr/lib/libc.so.6
#1  0x7fa96ee88540 in  () at /usr/lib/libglib-2.0.so.0
#2  0x7fa96ee8862e in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#3  0x7fa94ceb0f5f in  () at /usr/lib/libostree-1.so.1
#4  0x7fa96ee6367b in  () at /usr/lib/libglib-2.0.so.0
#5  0x7fa96f94ea9d in start_thread () at /usr/lib/libpthread.so.0
#6  0x7fa9706a1b23 in clone () at /usr/lib/libc.so.6

Thread 16 (Thread 0x7fa92aac9700 (LWP 7038)):
#0  0x7fa970696c21 in poll () at /usr/lib/libc.so.6
#1  0x7fa96ee88540 in  () at /usr/lib/libglib-2.0.so.0
#2  0x7fa96ee8862e in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#3  0x7fa94ceb0f5f in  () at /usr/lib/libostree-1.so.1
#4  0x7fa96ee6367b in  () at /usr/lib/libglib-2.0.so.0
#5  0x7fa96f94ea9d in start_thread () at /usr/lib/libpthread.so.0
#6  0x7fa9706a1b23 in clone () at /usr/lib/libc.so.6

Thread 15 (Thread 0x7fa928ac5700 (LWP 7036)):
#0  0x7fa970696c21 in poll () at /usr/lib/libc.so.6
#1  0x7fa96ee88540 in  () at /usr/lib/libglib-2.0.so.0
#2  0x7fa96ee8862e in g_main_context_it

[kdeconnect] [Bug 336043] SFTP: Should be able to browse external SD cards via SFTP too

2018-10-01 Thread Laurent
https://bugs.kde.org/show_bug.cgi?id=336043

Laurent  changed:

   What|Removed |Added

 CC|m2k.netw...@gmail.com   |

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

[plasmashell] [Bug 374927] New: Disappearance of the taskbar and graphics components

2017-01-11 Thread Laurent
https://bugs.kde.org/show_bug.cgi?id=374927

Bug ID: 374927
   Summary: Disappearance of the taskbar and graphics components
   Product: plasmashell
   Version: 5.8.3
  Platform: Compiled Sources
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: k...@davidedmundson.co.uk
  Reporter: laurentmark...@gmail.com
CC: bhus...@gmail.com, plasma-b...@kde.org
  Target Milestone: 1.0

Application: plasmashell (5.8.3)
 (Compiled from sources)
Qt Version: 5.6.1
Frameworks Version: 5.26.0
Operating System: Linux 4.4.36-8-default x86_64
Distribution: "openSUSE Leap 42.2"

-- Information about the crash:
- What I was doing when the application crashed:
I moved the mouse on the launcher application, unrolled the "development" menu
then a "development" sub-menu and place the mouse on one of the sub-menu items,
and then I move the mouse on the menu " Recent Applications ". That's when
"KDE" crashed.

The crash can be reproduced every time.

-- Backtrace:
Application: Plasma (plasmashell), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f84bf2e9900 (LWP 2392))]

Thread 8 (Thread 0x7f84062bd700 (LWP 2666)):
#0  0x7f84b51257d4 in g_mutex_unlock () at /usr/lib64/libglib-2.0.so.0
#1  0x7f84b50e3950 in g_main_context_prepare () at
/usr/lib64/libglib-2.0.so.0
#2  0x7f84b50e4230 in  () at /usr/lib64/libglib-2.0.so.0
#3  0x7f84b50e442c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#4  0x7f84b932332b in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib64/libQt5Core.so.5
#5  0x7f84b92d0fdb in
QEventLoop::exec(QFlags) () at
/usr/lib64/libQt5Core.so.5
#6  0x7f84b910bf1a in QThread::exec() () at /usr/lib64/libQt5Core.so.5
#7  0x7f84076e58f7 in KCupsConnection::run() () at
/usr/lib64/libkcupslib.so
#8  0x7f84b91109e9 in  () at /usr/lib64/libQt5Core.so.5
#9  0x7f84b8225734 in start_thread () at /lib64/libpthread.so.0
#10 0x7f84b8a24d3d in clone () at /lib64/libc.so.6

Thread 7 (Thread 0x7f84165bf700 (LWP 2551)):
#0  0x7f84b50e16c0 in  () at /usr/lib64/libglib-2.0.so.0
#1  0x7f84b50e38fb in g_main_context_prepare () at
/usr/lib64/libglib-2.0.so.0
#2  0x7f84b50e4230 in  () at /usr/lib64/libglib-2.0.so.0
#3  0x7f84b50e442c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#4  0x7f84b932332b in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib64/libQt5Core.so.5
#5  0x7f84b92d0fdb in
QEventLoop::exec(QFlags) () at
/usr/lib64/libQt5Core.so.5
#6  0x7f84b910bf1a in QThread::exec() () at /usr/lib64/libQt5Core.so.5
#7  0x7f84bcf9a632 in  () at /usr/lib64/libQt5Quick.so.5
#8  0x7f84b91109e9 in  () at /usr/lib64/libQt5Core.so.5
#9  0x7f84b8225734 in start_thread () at /lib64/libpthread.so.0
#10 0x7f84b8a24d3d in clone () at /lib64/libc.so.6

Thread 6 (Thread 0x7f84a19e4700 (LWP 2529)):
#0  0x7f84b822a0af in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f84be9d393b in  () at /usr/lib64/libQt5Script.so.5
#2  0x7f84be9d3969 in  () at /usr/lib64/libQt5Script.so.5
#3  0x7f84b8225734 in start_thread () at /lib64/libpthread.so.0
#4  0x7f84b8a24d3d in clone () at /lib64/libc.so.6

Thread 5 (Thread 0x7f84a3731700 (LWP 2482)):
#0  0x7f84b8a1851d in read () at /lib64/libc.so.6
#1  0x7f84b5124670 in  () at /usr/lib64/libglib-2.0.so.0
#2  0x7f84b50e3e49 in g_main_context_check () at
/usr/lib64/libglib-2.0.so.0
#3  0x7f84b50e42a8 in  () at /usr/lib64/libglib-2.0.so.0
#4  0x7f84b50e442c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#5  0x7f84b932332b in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib64/libQt5Core.so.5
#6  0x7f84b92d0fdb in
QEventLoop::exec(QFlags) () at
/usr/lib64/libQt5Core.so.5
#7  0x7f84b910bf1a in QThread::exec() () at /usr/lib64/libQt5Core.so.5
#8  0x7f84bc4179b8 in  () at /usr/lib64/libQt5Qml.so.5
#9  0x7f84b91109e9 in  () at /usr/lib64/libQt5Core.so.5
#10 0x7f84b8225734 in start_thread () at /lib64/libpthread.so.0
#11 0x7f84b8a24d3d in clone () at /lib64/libc.so.6

Thread 4 (Thread 0x7f84a51b2700 (LWP 2478)):
#0  0x7f84b51257b9 in g_mutex_lock () at /usr/lib64/libglib-2.0.so.0
#1  0x7f84b50e3390 in g_main_context_acquire () at
/usr/lib64/libglib-2.0.so.0
#2  0x7f84b50e41d5 in  () at /usr/lib64/libglib-2.0.so.0
#3  0x7f84b50e442c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#4  0x7f84b932332b in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib64/libQt5Core.so.5
#5  0x7f84b92d0fdb in
QEventLoop::exec(QFlags) () at
/usr/lib64/libQt5Core.so.5
#6  0x7f84b910bf1a in QThread::exec() () at /usr/lib64/libQt5Core.so.5
#7  0x7f84bc4179b8 in  () at /usr/lib64/libQt5Qml.so.5
#8  0x

[kmail2] [Bug 371676] Button to show all recipients doesn't work

2016-10-25 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371676

Laurent Montel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
 CC||mon...@kde.org
   Version Fixed In||5.3.2

--- Comment #1 from Laurent Montel  ---
I think that you have kmail version with security fix which breaks it.
I fixed it in 5.3.2

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

[kmail2] [Bug 371676] Button to show all recipients doesn't work

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371676

Laurent Montel  changed:

   What|Removed |Added

   Version Fixed In|5.3.2   |5.4.0
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Laurent Montel  ---
Ok so it's fixed in 5.4.0.

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

[kmail2] [Bug 371664] Changes to (at least) the trash folder associated with imap account don't take effect until after restarting kmail

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371664

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Which kmail version ?

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

[kmail2] [Bug 371656] HTML mail styles spill into message header

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371656

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
where is the screenshot ?:)

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

[kmail2] [Bug 371697] kmail 16.08.2 save sieve script after edit lead to crash

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371697

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
I don't see crash in libksieve or other
it seems to crash in knotification

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

[kmail2] [Bug 370555] messageviewer does not theme the scrollbar

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=370555

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
It(s the scrollbar from QtWebEngineView not sure that we can fix it.

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

[knotes] [Bug 371703] Not saving "Sender ID" and "Port" in "Network preferences"

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371703

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
I confirm it.
I will fix it soon.

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

[knotes] [Bug 371703] Not saving "Sender ID" and "Port" in "Network preferences"

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371703

Laurent Montel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
  Latest Commit||http://commits.kde.org/knot
   ||es/edfee6f3a58b05ff4cbe7e87
   ||d8d673c6ba4b789c
   Version Fixed In||5.3.3

--- Comment #2 from Laurent Montel  ---
Git commit edfee6f3a58b05ff4cbe7e87d8d673c6ba4b789c by Montel Laurent.
Committed on 27/10/2016 at 06:54.
Pushed by mlaurent into branch 'master'.

Fix Bug 371703 - Not saving "Sender ID" and "Port" in "Network preferences"

FIXED-IN: 5.3.3

M  +6-5noteshared/src/config/notenetworkconfig.cpp

http://commits.kde.org/knotes/edfee6f3a58b05ff4cbe7e87d8d673c6ba4b789c

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

[knotes] [Bug 371703] Not saving "Sender ID" and "Port" in "Network preferences"

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371703

--- Comment #3 from Laurent Montel  ---
Git commit cbfcd564d0500a109140c98c4b430fb81018c759 by Montel Laurent.
Committed on 27/10/2016 at 06:55.
Pushed by mlaurent into branch 'Applications/16.08'.

Backport fix Bug 371703 - Not saving "Sender ID" and "Port" in "Network
preferences"

M  +6-5knotes/noteshared/src/config/notenetworkconfig.cpp

http://commits.kde.org/kdepim/cbfcd564d0500a109140c98c4b430fb81018c759

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

[knotes] [Bug 368856] Knotes makes notice scedules without command, libkdepim cannot be installed

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=368856

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org
 Resolution|--- |UPSTREAM
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Laurent Montel  ---
It's not a knotes problem it's a distro problem.
Please report it to opensuse please.
Regards

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

[knotes] [Bug 359499] ShowInTaskbar=false no longer applied

2016-10-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=359499

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
I confirm that ShowInTaskbar doesn't work.
I will look at it soon.

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

[kmail2] [Bug 368498] Kmail does not open links with target="_blank"

2016-10-27 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=368498

Laurent Montel  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/mess
   ||agelib/70173a8245c6f0401619
   ||f5be9cc4770451feeb21
 Resolution|UPSTREAM|FIXED
   Version Fixed In||5.4.0

--- Comment #2 from Laurent Montel  ---
Git commit 70173a8245c6f0401619f5be9cc4770451feeb21 by Montel Laurent.
Committed on 27/10/2016 at 19:02.
Pushed by mlaurent into branch 'master'.

Fix Bug 368498 - Kmail does not open links with target="_blank"

FIXED-IN: 5.4.0

M  +1-1webengineviewer/src/CMakeLists.txt
A  +47   -0webengineviewer/src/webenginenavigationrequestinterceptor.cpp   
 [License: LGPL (v2+)]
A  +43   -0webengineviewer/src/webenginenavigationrequestinterceptor.h
[License: LGPL (v2+)]
M  +22   -2webengineviewer/src/webengineview.cpp

http://commits.kde.org/messagelib/70173a8245c6f0401619f5be9cc4770451feeb21

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

[kmail2] [Bug 368498] Kmail does not open links with target="_blank"

2016-10-27 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=368498

Laurent Montel  changed:

   What|Removed |Added

  Latest Commit|http://commits.kde.org/mess |http://commits.kde.org/mess
   |agelib/70173a8245c6f0401619 |agelib/1109b48ef544914353c8
   |f5be9cc4770451feeb21|7e1eb47cf08bafceeabc

--- Comment #3 from Laurent Montel  ---
Git commit 1109b48ef544914353c87e1eb47cf08bafceeabc by Montel Laurent.
Committed on 28/10/2016 at 04:41.
Pushed by mlaurent into branch 'Applications/16.08'.

Fix Bug 368498 - Kmail does not open links with target="_blank"

FIXED-IN: 5.4.0
(cherry picked from commit 70173a8245c6f0401619f5be9cc4770451feeb21)

M  +1-1webengineviewer/src/CMakeLists.txt
A  +47   -0webengineviewer/src/webenginenavigationrequestinterceptor.cpp   
 [License: LGPL (v2+)]
A  +43   -0webengineviewer/src/webenginenavigationrequestinterceptor.h
[License: LGPL (v2+)]
M  +22   -2webengineviewer/src/webengineview.cpp

http://commits.kde.org/messagelib/1109b48ef544914353c87e1eb47cf08bafceeabc

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

[kmail2] [Bug 368498] Kmail does not open links with target="_blank"

2016-10-27 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=368498

Laurent Montel  changed:

   What|Removed |Added

   Version Fixed In|5.4.0   |5.3.3

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

[kmail2] [Bug 363721] Kmail Message Headers Interpretting UTC Time after latest update

2016-10-27 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=363721

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #3 from Laurent Montel  ---
I confirm the bug.

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

[kmail2] [Bug 369392] Custom date display for message list not applied until restart

2016-10-27 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=369392

Laurent Montel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Version Fixed In||5.3.3
  Latest Commit||http://commits.kde.org/mess
   ||agelib/44f6cf6293776590ca2d
   ||ae82aefe86a0f33fc5b6
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Laurent Montel  ---
Git commit 44f6cf6293776590ca2dae82aefe86a0f33fc5b6 by Montel Laurent.
Committed on 28/10/2016 at 06:21.
Pushed by mlaurent into branch 'Applications/16.08'.

Fix Bug 369392 - Custom date display for message list not applied until restart

FIXED-IN: 5.3.3

M  +1-0messagelist/src/core/manager.cpp

http://commits.kde.org/messagelib/44f6cf6293776590ca2dae82aefe86a0f33fc5b6

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

[kmail2] [Bug 363721] Kmail Message Headers Interpretting UTC Time after latest update

2016-10-27 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=363721

Laurent Montel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Latest Commit||http://commits.kde.org/mess
   ||agelib/e6796719c5de57033868
   ||9c4258ec722a3474a7ea
   Version Fixed In||5.3.3
 Resolution|--- |FIXED

--- Comment #4 from Laurent Montel  ---
Git commit e6796719c5de570338689c4258ec722a3474a7ea by Montel Laurent.
Committed on 28/10/2016 at 06:46.
Pushed by mlaurent into branch 'Applications/16.08'.

Fix Bug 363721 - Kmail Message Headers Interpretting UTC Time after latest
update

FIXED-IN: 5.3.3

M  +6-5messageviewer/src/header/headerstyle_util.cpp

http://commits.kde.org/messagelib/e6796719c5de570338689c4258ec722a3474a7ea

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

[kmail2] [Bug 370385] EMail Addresses with Underscores in Contacts Not Recognised

2016-10-27 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=370385

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Do you have the problem for other emails ?

could you give me an example as email which doesn't work ?
Thanks

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

[kmail2] [Bug 371006] Printed website uses wrong encoding

2016-10-28 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371006

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #2 from Laurent Montel  ---
(In reply to Bruno Friedmann from comment #1)
> It's even worse, if the message is text + html.
> You select view html + image in messageviewer and decide to print it
> (Maybe an invoice like what paypal send)
> 
> the print in browser take only the text part. not the last state of
> messageviewer.

it's already fixed in 5.3.2 or 5.3.3 but it's fixed

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

[kmail2] [Bug 371006] Printed website uses wrong encoding

2016-10-29 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=371006

--- Comment #4 from Laurent Montel  ---
(In reply to Bruno Friedmann from comment #3)
> What about the new complete integration again directly in kmail ?
> is it for 16.12 ?

For printing yep
for print preview no
and you need qt5.8

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

[syndication] [Bug 372006] [Patch] Support feed deltas

2016-11-03 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372006

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Do you have patch for akregator too ?

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

[kontact] [Bug 372021] New: Crashing while trashing a mail

2016-11-03 Thread Laurent RINEAU
https://bugs.kde.org/show_bug.cgi?id=372021

Bug ID: 372021
   Summary: Crashing while trashing a mail
   Product: kontact
   Version: 5.3.0
  Platform: Fedora RPMs
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: mail
  Assignee: kdepim-b...@kde.org
  Reporter: laurent.rineau__...@normalesup.org
  Target Milestone: ---

Created attachment 102001
  --> https://bugs.kde.org/attachment.cgi?id=102001&action=edit
backtrace.txt

(The Doctor Something complained that Bugzilla refused my bug because the
"comment was too long". That is why I resubmit the bug manually, with the
backtrace as an attachment.)

Application: kontact (5.3.0 (QtWebEngine))

Qt Version: 5.6.1
Frameworks Version: 5.27.0
Operating System: Linux 4.8.4-200.fc24.x86_64 x86_64
Distribution: "Fedora release 24 (Twenty Four)"

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

As far as I know, the application cashed when I pressed the `Delete` key to
remove a mail from a tab that was displaying several directories in the same
view. That seems compatible with the backtace of the crashning thread 1, that
shows "KMMainWidget::trashMessageSelected" in the middle of the backtrace.

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

[kontact] [Bug 372021] Crashing while trashing a mail

2016-11-03 Thread Laurent RINEAU
https://bugs.kde.org/show_bug.cgi?id=372021

--- Comment #1 from Laurent RINEAU  ---
The Doctor Something also added:

> Possible duplicates by query: bug 309979.

to the report but I disagree. I add that comment to be honest, and in case I
might be wrong.

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

[syndication] [Bug 372006] [Patch] Support feed deltas

2016-11-03 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372006

--- Comment #3 from Laurent Montel  ---
So what is the improvment in akregator ?
What was the bug in akregator ?

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

[kmail2] [Bug 359964] "Kmailleaks", or what to improve to make Kmail more privacy friendly.

2016-11-04 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=359964

Laurent Montel  changed:

   What|Removed |Added

   Version Fixed In||5.4.0
 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/mess
   ||agelib/6296818e9c7003bec991
   ||1c0ee702dc1851ab33e1
 Status|UNCONFIRMED |RESOLVED

--- Comment #12 from Laurent Montel  ---
Git commit 6296818e9c7003bec9911c0ee702dc1851ab33e1 by Montel Laurent.
Committed on 04/11/2016 at 22:20.
Pushed by mlaurent into branch 'master'.

Fix Bug 359964 - "Kmailleaks", or what to improve to make Kmail more privacy
friendly.

FIXED-IN: 5.4.0

M  +17   -30   messagecomposer/autotests/messagefactorytest.cpp
M  +0-9messagecomposer/src/job/skeletonmessagejob.cpp

http://commits.kde.org/messagelib/6296818e9c7003bec9911c0ee702dc1851ab33e1

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

[kmail2] [Bug 372085] KMail 5.3.2: forwarding or replying to html mails do not preserve links

2016-11-05 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372085

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Could you provide a forwarding/replying email as mbox. 
For me it's ok here but perhaps I didn't see the problem.
Thanks

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

[kmail2] [Bug 372085] KMail 5.3.2: forwarding or replying to html mails do not preserve links

2016-11-05 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372085

--- Comment #2 from Laurent Montel  ---
Git commit da7acca24ee4feadef84423b65ec7310c1716ca0 by Montel Laurent.
Committed on 06/11/2016 at 06:39.
Pushed by mlaurent into branch 'master'.

Allow selection when we forward message

M  +1-0messagecomposer/src/helper/messagefactory.cpp

http://commits.kde.org/messagelib/da7acca24ee4feadef84423b65ec7310c1716ca0

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

[kmail2] [Bug 372085] KMail 5.3.2: forwarding or replying to html mails do not preserve links

2016-11-05 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372085

Laurent Montel  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/kmai
   ||l/c5dc01643fbe68236332d0b42
   ||da1806bdb833368
 Resolution|--- |FIXED
   Version Fixed In||5.4.0
 Status|UNCONFIRMED |RESOLVED

--- Comment #3 from Laurent Montel  ---
Git commit c5dc01643fbe68236332d0b42da1806bdb833368 by Montel Laurent.
Committed on 06/11/2016 at 06:40.
Pushed by mlaurent into branch 'master'.

Fix Bug 372085 - KMail 5.3.2: forwarding or replying to html mails do not
preserve links

FIXED-IN: 5.4.0

M  +7-4src/kmcommands.cpp
M  +3-2src/kmcommands.h
M  +4-3src/kmmainwidget.cpp
M  +4-4src/kmreadermainwin.cpp

http://commits.kde.org/kmail/c5dc01643fbe68236332d0b42da1806bdb833368

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

[kontact] [Bug 372073] Kontact and KMail 5.3.2 are showing the wrong version in the help->introduction page

2016-11-05 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372073

Laurent Montel  changed:

   What|Removed |Added

   Version Fixed In||5.3.3
 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/kdep
   ||im/09d172cffdd1b72a46ff7ddf
   ||2b008a3750eec2ed
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Laurent Montel  ---
Git commit 09d172cffdd1b72a46ff7ddf2b008a3750eec2ed by Montel Laurent.
Committed on 06/11/2016 at 06:48.
Pushed by mlaurent into branch 'Applications/16.08'.

Fix Bug 372073 - Kontact and KMail 5.3.2 are showing the wrong version in the
help->introduction page

Oops indeed I forgot to increase version here :(

FIXED-IN: 5.3.3

M  +1-1CMakeLists.txt

http://commits.kde.org/kdepim/09d172cffdd1b72a46ff7ddf2b008a3750eec2ed

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

[kmail2] [Bug 372085] KMail 5.3.2: forwarding or replying to html mails do not preserve links

2016-11-06 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372085

Laurent Montel  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|RESOLVED|REOPENED
 Ever confirmed|0   |1

--- Comment #6 from Laurent Montel  ---
opps indeed it was 372072
I reopen it

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

[kmail2] [Bug 372072] KMail 5.3.2: entry "%QUOTE" in forward templates always uses the whole e-mail content

2016-11-06 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372072

Laurent Montel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||mon...@kde.org
 Resolution|--- |FIXED
   Version Fixed In||5.4.0

--- Comment #2 from Laurent Montel  ---
see this commit https://bugs.kde.org/show_bug.cgi?id=372085#c2

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

[kmail2] [Bug 372142] Kmail: Forward inline messages causes crash

2016-11-06 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372142

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Is it possible to save as mbox a mail which crash ?
I need a test case for it

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

[kmail2] [Bug 372085] KMail 5.3.2: forwarding or replying to html mails do not preserve links

2016-11-06 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372085

--- Comment #7 from Laurent Montel  ---
I see that link is on the "W" but not on all url.
So I can reproduce it.
I don't know why it broken as it.

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

[kmail2] [Bug 372085] KMail 5.3.2: forwarding or replying to html mails do not preserve links

2016-11-06 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372085

--- Comment #8 from Laurent Montel  ---
it seems to be a bug in qtextedit when we set html text.

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

[kmail2] [Bug 372085] KMail 5.3.2: forwarding or replying to html mails do not preserve links

2016-11-07 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372085

Laurent Montel  changed:

   What|Removed |Added

  Latest Commit|http://commits.kde.org/kmai |http://commits.kde.org/mess
   |l/c5dc01643fbe68236332d0b42 |agelib/ce24fc860ee444147070
   |da1806bdb833368 |573cda42fe2d1369d75c
 Resolution|--- |FIXED
 Status|REOPENED|RESOLVED

--- Comment #9 from Laurent Montel  ---
Git commit ce24fc860ee444147070573cda42fe2d1369d75c by Montel Laurent.
Committed on 07/11/2016 at 12:50.
Pushed by mlaurent into branch 'master'.

Fix Bug 372085 - KMail 5.3.2: forwarding or replying to html mails do not
preserve links

FIXED-IN: 5.4.0

M  +3-1messagecomposer/src/composer/composerviewbase.cpp

http://commits.kde.org/messagelib/ce24fc860ee444147070573cda42fe2d1369d75c

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

[kmail2] [Bug 369416] regression: can no longer drag and drop email addresses from message headers

2016-11-08 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=369416

Laurent Montel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Laurent Montel  ---
It's fixed in 5.4.0 and for sure in 5.3.x (I don't know which release)
but it works fine here.

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

[kmail2] [Bug 366652] Drag and drop attachments in Kmail has stopped working

2016-11-08 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=366652

Laurent Montel  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/mess
   ||agelib/42a5c00667e6440fcf38
   ||79a1dfdc9f31088f78d2
 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||5.4.0
 Resolution|--- |FIXED

--- Comment #3 from Laurent Montel  ---
Git commit 42a5c00667e6440fcf3879a1dfdc9f31088f78d2 by Montel Laurent.
Committed on 08/11/2016 at 20:12.
Pushed by mlaurent into branch 'master'.

Fix Bug 366652 - Drag and drop attachments in Kmail has stopped working

Fix Bug 368378 - Regression in kMail 5.3.x: Drag and drop of attachments from a
received mail into the composer does not work any more

FIXED-IN: 5.4.0
Related: bug 368378

M  +2-44   messageviewer/src/viewer/viewer_p.cpp
M  +0-3messageviewer/src/viewer/viewer_p.h
M  +45   -32   messageviewer/src/viewer/webengine/mailwebengineview.cpp
M  +3-4messageviewer/src/viewer/webengine/mailwebengineview.h
M  +1-24   webengineviewer/src/webengineview.cpp
M  +1-5webengineviewer/src/webengineview.h

http://commits.kde.org/messagelib/42a5c00667e6440fcf3879a1dfdc9f31088f78d2

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

[kmail2] [Bug 368378] Regression in kMail 5.3.x: Drag and drop of attachments from a received mail into the composer does not work any more

2016-11-08 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=368378

Laurent Montel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Version Fixed In||5.4.0
  Latest Commit||http://commits.kde.org/mess
   ||agelib/42a5c00667e6440fcf38
   ||79a1dfdc9f31088f78d2

--- Comment #7 from Laurent Montel  ---
Git commit 42a5c00667e6440fcf3879a1dfdc9f31088f78d2 by Montel Laurent.
Committed on 08/11/2016 at 20:12.
Pushed by mlaurent into branch 'master'.

Fix Bug 366652 - Drag and drop attachments in Kmail has stopped working

Fix Bug 368378 - Regression in kMail 5.3.x: Drag and drop of attachments from a
received mail into the composer does not work any more

FIXED-IN: 5.4.0
Related: bug 366652

M  +2-44   messageviewer/src/viewer/viewer_p.cpp
M  +0-3messageviewer/src/viewer/viewer_p.h
M  +45   -32   messageviewer/src/viewer/webengine/mailwebengineview.cpp
M  +3-4messageviewer/src/viewer/webengine/mailwebengineview.h
M  +1-24   webengineviewer/src/webengineview.cpp
M  +1-5webengineviewer/src/webengineview.h

http://commits.kde.org/messagelib/42a5c00667e6440fcf3879a1dfdc9f31088f78d2

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

[kmail2] [Bug 372142] Kmail: Forward inline messages causes crash

2016-11-08 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372142

--- Comment #4 from Laurent Montel  ---
I confirm crash

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

[knotes] [Bug 364371] Search notes does not find ANYTHING

2016-11-12 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=364371

--- Comment #3 from Laurent Montel  ---
(In reply to Stefan B. from comment #2)
> Same for Okular Version 0.24.2
> 
> Please add this feature!

??
if you have a bug about okular open an bug report against it.
thanks

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

[knotes] [Bug 364371] Search notes does not find ANYTHING

2016-11-12 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=364371

--- Comment #5 from Laurent Montel  ---
(In reply to Stefan B. from comment #4)
> (In reply to Laurent Montel from comment #3)
> > (In reply to Stefan B. from comment #2)
> > > Same for Okular Version 0.24.2
> > > 
> > > Please add this feature!
> > 
> > ??
> > if you have a bug about okular open an bug report against it.
> > thanks
> 
> This is the bug report. Just read it and you get all information you need. I
> just want to show that this is important to me, too.

This bug report is about knotes not okular
so why you added 
"Same for Okular Version 0.24.2

Please add this feature!"

what is the relation with knotes ?

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

[kmail2] [Bug 354055] system freeze when trying to send email via ctrl + return with "spellcheck before send" activated

2016-11-17 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=354055

Laurent Montel  changed:

   What|Removed |Added

   Version Fixed In||5.4.0
 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/kmai
   ||l/c223fb2edeaa374b2f7de6ab1
   ||c962e1817900f6b
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from Laurent Montel  ---
Git commit c223fb2edeaa374b2f7de6ab1c962e1817900f6b by Montel Laurent.
Committed on 17/11/2016 at 21:51.
Pushed by mlaurent into branch 'Applications/16.12'.

Fix Bug 354055 - system freeze when trying to send email via ctrl + return with
"spellcheck before send" activated

FIXED-IN: 5.4.0

M  +6-1src/editor/kmcomposerwin.cpp
M  +1-0src/editor/kmcomposerwin.h

http://commits.kde.org/kmail/c223fb2edeaa374b2f7de6ab1c962e1817900f6b

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

[konsole] [Bug 372619] New: Konsole crashed while switching tabs

2016-11-18 Thread Laurent RINEAU
https://bugs.kde.org/show_bug.cgi?id=372619

Bug ID: 372619
   Summary: Konsole crashed while switching tabs
   Product: konsole
   Version: 16.08.2
  Platform: Fedora RPMs
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: konsole-de...@kde.org
  Reporter: laurent.rineau__...@normalesup.org
  Target Milestone: ---

Application: konsole (16.08.2)

Qt Version: 5.6.1
Frameworks Version: 5.27.0
Operating System: Linux 4.8.6-201.fc24.x86_64 x86_64
Distribution: "Fedora release 24 (Twenty Four)"

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

I was rather active just before the crash typing quicking in several tabs. I
think the crashed occured during a switch of tab, in a given window.

-- Backtrace:
Application: Konsole (konsole), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
84  T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)
[Current thread is 1 (Thread 0x7fd97c035940 (LWP 56773))]

Thread 3 (Thread 0x7fd95cd7b700 (LWP 56820)):
#0  0x7fd97617a1cd in read () at ../sysdeps/unix/syscall-template.S:84
#1  0x7fd972398660 in g_wakeup_acknowledge (__nbytes=16,
__buf=0x7fd95cd7aa30, __fd=) at /usr/include/bits/unistd.h:44
#2  0x7fd972398660 in g_wakeup_acknowledge (wakeup=0x7fd9580015b0) at
gwakeup.c:210
#3  0x7fd9723554d6 in g_main_context_check
(context=context@entry=0x7fd95990, max_priority=2147483647,
fds=fds@entry=0x7fd950003020, n_fds=n_fds@entry=1) at gmain.c:3632
#4  0x7fd9723559a4 in g_main_context_iterate
(context=context@entry=0x7fd95990, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at gmain.c:3837
#5  0x7fd972355b1c in g_main_context_iteration (context=0x7fd95990,
may_block=may_block@entry=1) at gmain.c:3901
#6  0x7fd976f8424b in
QEventDispatcherGlib::processEvents(QFlags)
(this=0x7fd958c0, flags=...) at kernel/qeventdispatcher_glib.cpp:419
#7  0x7fd976f335ea in
QEventLoop::exec(QFlags)
(this=this@entry=0x7fd95cd7ac40, flags=..., flags@entry=...) at
kernel/qeventloop.cpp:204
#8  0x7fd976d92343 in QThread::exec() (this=this@entry=0x7fd97c0fc060
<(anonymous namespace)::Q_QGS__q_manager::innerFunction()::holder>) at
thread/qthread.cpp:500
#9  0x7fd97c087559 in QDBusConnectionManager::run() (this=0x7fd97c0fc060
<(anonymous namespace)::Q_QGS__q_manager::innerFunction()::holder>) at
qdbusconnection.cpp:189
#10 0x7fd976d9699a in QThreadPrivate::start(void*) (arg=0x7fd97c0fc060
<(anonymous namespace)::Q_QGS__q_manager::innerFunction()::holder>) at
thread/qthread_unix.cpp:341
#11 0x7fd974b4f5ca in start_thread (arg=0x7fd95cd7b700) at
pthread_create.c:333
#12 0x7fd97618a0ed in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 2 (Thread 0x7fd95e8ac700 (LWP 56795)):
#0  0x7fd97617e56d in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x7fd973bdef80 in _xcb_conn_wait (__timeout=-1, __nfds=1,
__fds=0x7fd95e8abb80) at /usr/include/bits/poll2.h:46
#2  0x7fd973bdef80 in _xcb_conn_wait (c=c@entry=0x563d39667ca0,
cond=cond@entry=0x563d39667ce0, vector=vector@entry=0x0, count=count@entry=0x0)
at xcb_conn.c:459
#3  0x7fd973be0b79 in xcb_wait_for_event (c=0x563d39667ca0) at xcb_in.c:693
#4  0x7fd962c6bda9 in QXcbEventReader::run() (this=0x563d39676d30) at
qxcbconnection.cpp:1325
#5  0x7fd976d9699a in QThreadPrivate::start(void*) (arg=0x563d39676d30) at
thread/qthread_unix.cpp:341
#6  0x7fd974b4f5ca in start_thread (arg=0x7fd95e8ac700) at
pthread_create.c:333
#7  0x7fd97618a0ed in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 1 (Thread 0x7fd97c035940 (LWP 56773)):
[KCrash Handler]
#6  0x7fd97baf5d90 in QVector::freeData(QTypedArrayData*)
[clone .isra.22] () at /lib64/libkonsoleprivate.so.16
#7  0x7fd97baf7885 in Konsole::UnixProcessInfo::readProcessInfo(int, bool)
() at /lib64/libkonsoleprivate.so.16
#8  0x7fd97bb17d68 in Konsole::Session::updateSessionProcessInfo() () at
/lib64/libkonsoleprivate.so.16
#9  0x7fd97bb17e57 in Konsole::Session::updateWorkingDirectory() () at
/lib64/libkonsoleprivate.so.16
#10 0x7fd97bb1877a in Konsole::Session::getDynamicTitle() () at
/lib64/libkonsoleprivate.so.16
#11 0x7fd97bb22753 in Konsole::SessionController::snapshot() () at
/lib64/libkonsoleprivate.so.16
#12 0x7fd976f5cebc in QMetaObject::activate(QObject*, int, int, void**)
(a=0x7ffee940c550, r=0x563d3be46a40, this=) at
../../src/corelib/kernel/qobject_impl.h:124
#13 0x7fd976f5cebc in QMetaObject::activate(QObject*, int, int, void**)
(sender=sender@entry=0x563d3bc59170, signalOffset=,
local_signal_index=local_signal_index@entry=0, argv=argv@entry=0x0) at
kernel/qobject.cpp:3715
#14 0x7fd976f5d3b7 in QMetaObject::activate(QObject*, QMetaObject const*,
int, void**) (sender=sender@entry=0x5

[kmail2] [Bug 372678] kmail not opening link

2016-11-20 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372678

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #3 from Laurent Montel  ---
Hi,
Did you test to use popup menu => right click on url + open ?

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

[kmail2] [Bug 372678] kmail not opening link

2016-11-21 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372678

Laurent Montel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||5.3.3

--- Comment #5 from Laurent Montel  ---
So it's fixed in 5.3.3 it was a regression but now it works.
Regards

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

[kmailcvt] [Bug 362505] Crash when importing Evolution mails

2016-11-22 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=362505

Laurent Montel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #2 from Laurent Montel  ---
I need more debug info as asked in comment1

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

[kmail2] [Bug 343275] [1] added at the end of a hyperlink

2016-11-22 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=343275

Laurent Montel  changed:

   What|Removed |Added

   Version Fixed In||5.29
 Status|UNCONFIRMED |RESOLVED
  Latest Commit||http://commits.kde.org/kcor
   ||eaddons/e51bb2172e2d414347c
   ||136e96b103c3c305eac01
 Resolution|--- |FIXED

--- Comment #5 from Laurent Montel  ---
Git commit e51bb2172e2d414347c136e96b103c3c305eac01 by Montel Laurent.
Committed on 23/11/2016 at 07:07.
Pushed by mlaurent into branch 'master'.

Fix Bug 343275 - [1] added at the end of a hyperlink

FIXED-IN: 5.29

M  +5-0autotests/ktexttohtmltest.cpp
M  +6-0src/lib/text/ktexttohtml.cpp

http://commits.kde.org/kcoreaddons/e51bb2172e2d414347c136e96b103c3c305eac01

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

[kmail2] [Bug 372866] KMail crashes on "normal" usage (scrolling/clicking on messages)

2016-11-24 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372866

Laurent Montel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||mon...@kde.org
 Resolution|--- |UPSTREAM

--- Comment #1 from Laurent Montel  ---
it's a problem with nouveau driver.

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

[plasmashell] [Bug 361521] Insane virtual memory consumption and icon-cache mappings

2016-11-24 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=361521

--- Comment #8 from Laurent Bonnaud  ---
> Do you see the same?

As far as baloo is concerned: yes.  It usually uses 5GB of virtual memory.  But
today I rechecked and it uses an even more insane figure of 256GB !  I wonder
how baloo can work on a 32 bits system :>.

USER   PID %CPU %MEMVSZ   RSS TTY  STAT START   TIME COMMAND
bonnaudl  2191  0.0  0.0 268768452 9996 ?  SNl  Nov22   0:01 baloo_file

But perhaps this baloo problem deserves a separate bug report.  This report was
about plasmashell.

Here are details of the mappings it uses:

$ cat /proc/2191/maps 
564d4f846000-564d4f889000 r-xp  00:15 48261996  
/usr/bin/baloo_file
564d4fa88000-564d4fa8b000 r--p 00042000 00:15 48261996  
/usr/bin/baloo_file
564d4fa8b000-564d4fa8c000 rw-p 00045000 00:15 48261996  
/usr/bin/baloo_file
564d5075d000-564d508b1000 rw-p  00:00 0  [heap]
7f7e-7f7e001cf000 rw-p  00:00 0 
7f7e001cf000-7f7e0400 ---p  00:00 0 
7f7e0800-7fbe0800 r--s  00:15 36330789  
/home/bonnaudl/.local/share/baloo/index
7fbe0800-7fbe08061000 rw-p  00:00 0 
7fbe08061000-7fbe0c00 ---p  00:00 0 
7fbe0e7b7000-7fbe0e7dc000 r--s  00:15 49178502  
/usr/share/mime/mime.cache
7fbe0e7dc000-7fbe0e7dd000 ---p  00:00 0 
7fbe0e7dd000-7fbe0f2df000 rw-p  00:00 0 
7fbe0f2df000-7fbe0f2e ---p  00:00 0 
7fbe0f2e-7fbe0fae rw-p  00:00 0 
7fbe0fae-7fbe0fdb9000 r--p  00:15 48519444  
/usr/lib/locale/locale-archive
7fbe0fdb9000-7fbe0fdcb000 r-xp  00:15 45344847  
/lib/x86_64-linux-gnu/libgpg-error.so.0.19.1
7fbe0fdcb000-7fbe0ffcb000 ---p 00012000 00:15 45344847  
/lib/x86_64-linux-gnu/libgpg-error.so.0.19.1
7fbe0ffcb000-7fbe0ffcc000 r--p 00012000 00:15 45344847  
/lib/x86_64-linux-gnu/libgpg-error.so.0.19.1
7fbe0ffcc000-7fbe0ffcd000 rw-p 00013000 00:15 45344847  
/lib/x86_64-linux-gnu/libgpg-error.so.0.19.1
7fbe0ffcd000-7fbe0ffdb000 r-xp  00:15 45275699  
/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7fbe0ffdb000-7fbe101da000 ---p e000 00:15 45275699  
/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7fbe101da000-7fbe101db000 r--p d000 00:15 45275699  
/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7fbe101db000-7fbe101dc000 rw-p e000 00:15 45275699  
/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7fbe101dc000-7fbe101e1000 r-xp  00:15 24859766  
/usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7fbe101e1000-7fbe103e ---p 5000 00:15 24859766  
/usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7fbe103e-7fbe103e1000 r--p 4000 00:15 24859766  
/usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7fbe103e1000-7fbe103e2000 rw-p 5000 00:15 24859766  
/usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7fbe103e2000-7fbe103e6000 r-xp  00:15 35260453  
/usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7fbe103e6000-7fbe105e5000 ---p 4000 00:15 35260453  
/usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7fbe105e5000-7fbe105e6000 r--p 3000 00:15 35260453  
/usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7fbe105e6000-7fbe105e7000 rw-p 4000 00:15 35260453  
/usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7fbe105e7000-7fbe105fe000 r-xp  00:15 35260396  
/usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7fbe105fe000-7fbe107fd000 ---p 00017000 00:15 35260396  
/usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7fbe107fd000-7fbe107ff000 r--p 00016000 00:15 35260396  
/usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7fbe107ff000-7fbe1080 rw-p 00018000 00:15 35260396  
/usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7fbe1080-7fbe10801000 r-xp  00:15 45275755  
/usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7fbe10801000-7fbe10a0 ---p 1000 00:15 45275755  
/usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7fbe10a0-7fbe10a01000 r--p  00:15 45275755  
/usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7fbe10a01000-7fbe10a02000 rw-p 1000 00:15 45275755  
/usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7fbe10a02000-7fbe10a07000 r-xp  00:15 45275811  
/usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7fbe10a07000-7fbe10c06000 ---p 5000 00:15 45275811  
/usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7fbe10c06000-7fbe10c07000 r--p 4000 00:15 45275811  
/usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7fbe10c07000-7fbe10c08000 rw-p 5000 00:15 45275811  
/usr/lib/x86_64-lin

[plasmashell] [Bug 361521] Insane virtual memory consumption and icon-cache mappings

2016-11-24 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=361521

--- Comment #9 from Laurent Bonnaud  ---
Since my initial report I updated my systems to Ubuntu 16.10, Plasma 5.8, and
KF5 5.27/5.28.

The icon-cache problem is solved: the icon-cache.kcache file is only mapped
once.

However the DRM problem remains:

$ grep /drm /proc/$(pidof plasmashell)/maps | wc
3483132   34104

on one system and on the other:

$ grep /drm /proc/$(pidof plasmashell)/maps | wc
2512259   24598

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

[plasmashell] [Bug 361521] Large virtual memory consumption and many DRM mmaped objects

2016-11-24 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=361521

Laurent Bonnaud  changed:

   What|Removed |Added

Summary|Insane virtual memory   |Large virtual memory
   |consumption and icon-cache  |consumption and many DRM
   |mappings|mmaped objects
Version|5.6.3   |5.8.4

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

[kontact] [Bug 372903] Kontact crash on startup (Wayland)

2016-11-24 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372903

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
it seems to have a bug with qtwebengine + wayland
https://bugreports.qt.io/browse/QTBUG-54038

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

[plasmashell] [Bug 361521] Large virtual memory consumption and many DRM mmaped objects

2016-11-25 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=361521

--- Comment #11 from Laurent Bonnaud  ---
OK, sorry for the misunderstanding !

In my plasmashell process the baloo file is not mapped, probably because I do
not use a search plasmoid.

Do you use a search plasmoid ?

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

[kmail2] [Bug 351816] Kmail 15.08 Message Body does not follow the Font DPI settings.

2016-11-25 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=351816

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #2 from Laurent Montel  ---
Screenshot please from font configurate in kmail + font from system +
messageview after settings them please ?

it's wierd as we use
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); so it seems ok.

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

[plasmashell] [Bug 361521] Large virtual memory consumption and many DRM mmaped objects

2016-11-25 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=361521

--- Comment #13 from Laurent Bonnaud  ---
> Virtual memory being high is pretty much a non issue until proved otherwise.

Agreed.

However the DRM mapping are deleted which probably indicate a resource leak. 
Here is a sample of the 200+ deleted DRM objects I see on my system just after
a session start:

7f0e2574f000-7f0e2578f000 rw-s  00:05 54568  /drm
mm object (deleted)
7f0e2578f000-7f0e257cf000 rw-s  00:05 54566  /drm
mm object (deleted)
7f0e257cf000-7f0e257d7000 rw-s  00:05 116514 /drm
mm object (deleted)

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

[plasmashell] [Bug 361521] Numerous deleted DRM mmaped objects

2016-11-25 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=361521

Laurent Bonnaud  changed:

   What|Removed |Added

Summary|Large virtual memory|Numerous deleted DRM mmaped
   |consumption and many DRM|objects
   |mmaped objects  |

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

[kwalletmanager] [Bug 372977] dialog's text incomplete

2016-11-26 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372977

Laurent Montel  changed:

   What|Removed |Added

Product|kmail2  |kwalletmanager
  Component|UI  |general
   Assignee|kdepim-b...@kde.org |va...@kde.org
 CC||mon...@kde.org
Version|4.14.10 |unspecified

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

[plasmashell] [Bug 361521] Numerous deleted DRM mmaped objects

2016-11-28 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=361521

--- Comment #15 from Laurent Bonnaud  ---
This "deleted drm mm object" problem is not specific to plasma.  Several other
KDE software have it, the main offender being akregator (see below).

Therefore this is probably a more systemic problem, either in KF5 or Qt.

Process 13064 - akregator

Summary

The process akregator (with pid 13064) is using approximately 316.2 MB of
memory.
It is using 307.7 MB privately, and a further 57.1 MB that is, or could be,
shared with other programs.
Dividing up the shared memory between all the processes sharing that memory we
get a reduced shared memory usage of 8.5 MB. Adding that to the private usage,
we get the above mentioned total memory footprint of 316.2 MB.
14.6 MB is swapped out to disk, probably due to a low amount of available
memory left.
Library Usage

The memory usage of a process is found by adding up the memory usage of each of
its libraries, plus the process's own heap, stack and any other mappings, plus
the stack of its 23 threads. 

Private
276636 KB   [heap]
18296 KB/drm mm object (deleted)
7556 KB /SYSV (deleted)
3460 KB /usr/lib/x86_64-linux-gnu/libQt5WebEngineCore.so.5.7.0
816 KB  /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.7.0

Shared
13276 KB/usr/lib/x86_64-linux-gnu/libQt5WebEngineCore.so.5.7.0
4396 KB /usr/lib/x86_64-linux-gnu/dri/i965_dri.so
3268 KB /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.7.0
3212 KB /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.7.0
1492 KB /lib/x86_64-linux-gnu/libc-2.24.so

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

[kmail2] [Bug 372974] need to see dialog's bottom buttons

2016-11-28 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372974

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
what is the size of your screen ?

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

[kmail2] [Bug 372662] text font size in printout of mail way too small

2016-11-28 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372662

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Did you select a specific font for printing in kmail ?

(here it's ok)

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

[kmail2] [Bug 372244] Move "Mark read after seconds" to accounts settings

2016-11-28 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=372244

Laurent Montel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX
 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Nope it will make kmail more complex.
So I will not implement it.
Sorry

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

[kmail2] [Bug 370555] messageviewer does not theme the scrollbar

2016-11-28 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=370555

Laurent Montel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |UPSTREAM

--- Comment #2 from Laurent Montel  ---
it's a qtwebengine bug. I hope that it will fix by qtwebengine dev

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

[kmail2] [Bug 373090] Reply to mailing list empty "TO" field

2016-11-29 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=373090

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Could you attach mail as mbox for testing ?

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

[sieveeditor] [Bug 373122] Please show usernames in Sieve-Server setup

2016-11-30 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=373122

--- Comment #1 from Laurent Montel  ---
Which is your version ?
As in actual version we can see username in list of server.
Or perhaps it's in config dialogbox ?

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

[sieveeditor] [Bug 373122] Please show usernames in Sieve-Server setup

2016-11-30 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=373122

Laurent Montel  changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/pim
   ||-sieve-editor/c8ab55ad84543
   ||7837248516c7c9d80712c5e286b
 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||5.4.0
 Resolution|--- |FIXED

--- Comment #2 from Laurent Montel  ---
Git commit c8ab55ad845437837248516c7c9d80712c5e286b by Montel Laurent.
Committed on 01/12/2016 at 05:56.
Pushed by mlaurent into branch 'Applications/16.12'.

Fix Bug 373122 - Please show usernames in Sieve-Server setup
FIXED-IN: 5.4.0

M  +1-1src/serversievelistwidget.cpp

https://commits.kde.org/pim-sieve-editor/c8ab55ad845437837248516c7c9d80712c5e286b

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

[sieveeditor] [Bug 373122] Please show usernames in Sieve-Server setup

2016-11-30 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=373122

--- Comment #3 from Laurent Montel  ---
I fixed in configuration dialog. I think that it was your bug.
(otherwise reopen it :) thanks for reporting bug)

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

[sieveeditor] [Bug 370239] CRAM-MD5 authentication does not work

2016-11-30 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=370239

--- Comment #1 from Laurent Montel  ---
Where in code did you see that "The calculated digest by KSieve" is uncorrected
?

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

[sieveeditor] [Bug 360202] Add SSL server support

2016-11-30 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=360202

--- Comment #3 from Laurent Montel  ---
if (!m_allowUnencrypted && useTLSIfAvailable && QSslSocket::supportsSsl()
&& !m_supportsTLS &&
messageBox(WarningContinueCancel,
   i18n("TLS encryption was requested, but your Sieve
server does not advertise TLS in its capabilities.\n"
"You can choose to try to initiate TLS negotiations
nonetheless, or cancel the operation."),
   i18n("Server Does Not Advertise TLS"), i18n("&Start TLS
nonetheless"), i18n("&Cancel")) != KMessageBox::Continue) {
error(ERR_USER_CANCELED, i18n("TLS encryption requested, but not
supported by server."));
disconnect();
return false;
}

There is a messagebox for it.
Did you see it ?

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

[kmail2] [Bug 373090] Reply to mailing list empty "TO" field

2016-11-30 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=373090

--- Comment #3 from Laurent Montel  ---
We can't use list-id as default reply to list element.
But we define it in kmail folder properties

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

[kmail2] [Bug 373140] Akonadi-Dienst zur persönlichen Informationsverwaltung fehlt, wie installieren?

2016-12-01 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=373140

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Hello
please write report in English :)

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

[kmail2] [Bug 351816] Kmail 15.08 Message Body does not follow the Font DPI settings.

2016-12-01 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=351816

--- Comment #5 from Laurent Montel  ---
What is your kmail version + qt version ?

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

[akregator] [Bug 350731] [4.81 beta1] akregator in kontact: read messages are removed from unread filter immediately

2016-12-04 Thread Laurent Carlier
https://bugs.kde.org/show_bug.cgi?id=350731

Laurent Carlier  changed:

   What|Removed |Added

 CC|lordhea...@gmail.com|

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

[kmail2] [Bug 373040] Stop line wrapping long links

2016-12-05 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=373040

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #2 from Laurent Montel  ---
Perhaps you can provide a test case.

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

[kmail2] [Bug 434335] Zoom in/out is missing in the context menu

2022-02-07 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=434335

--- Comment #5 from Laurent Montel  ---
indeed it's not in popup menu.
I will look at how to add it in popup menu

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

[kmail2] [Bug 434335] Zoom in/out is missing in the context menu

2022-02-08 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=434335

Laurent Montel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/pim/
   ||kdepim-addons/commit/4fbaeb
   ||8e501914bd63e716cdac0e8ad81
   ||0de8160
   Version Fixed In||5.19.3
 Status|REPORTED|RESOLVED

--- Comment #6 from Laurent Montel  ---
Git commit 4fbaeb8e501914bd63e716cdac0e8ad810de8160 by Laurent Montel.
Committed on 08/02/2022 at 12:32.
Pushed by mlaurent into branch 'release/21.12'.

Fix Bug 434335 Zoom in/out is missing in the context menu
FIXED-IN: 5.19.3

M  +1-1   
kmail/editorplugins/zoomtext/autotests/zoomtextplugineditortest.cpp
M  +1-1kmail/editorplugins/zoomtext/zoomtextplugineditor.cpp

https://invent.kde.org/pim/kdepim-addons/commit/4fbaeb8e501914bd63e716cdac0e8ad810de8160

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

[kmail2] [Bug 449809] KMail2 does not resize images

2022-02-08 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=449809

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Ok I will investigate it

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

[kmail2] [Bug 449809] KMail2 does not resize images

2022-02-08 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=449809

Laurent Montel  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/pim/
   ||messagelib/commit/56e8511dd
   ||2ddd92f5be948ffedfa6b8ac61c
   ||5cba
   Version Fixed In||5.19.3
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #2 from Laurent Montel  ---
Git commit 56e8511dd2ddd92f5be948ffedfa6b8ac61c5cba by Laurent Montel.
Committed on 09/02/2022 at 06:50.
Pushed by mlaurent into branch 'release/21.12'.

Fix Bug 449809 KMail2 does not resize images
FIXED-IN: 5.19.3

M  +4-4messagecomposer/src/composer/composerviewbase.cpp
M  +1-1messagecomposer/src/composer/composerviewbase.h

https://invent.kde.org/pim/messagelib/commit/56e8511dd2ddd92f5be948ffedfa6b8ac61c5cba

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

[kaddressbook] [Bug 449883] Akonadi crashes

2022-02-09 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=449883

Laurent Montel  changed:

   What|Removed |Added

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

--- Comment #1 from Laurent Montel  ---
Kvantum::Style::advanceProgressbar => style problem.
Please reassign to Kvantum style.
Thanks

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

[systemsettings] [Bug 449931] New: Display Configuration crash when exit with Esc

2022-02-10 Thread Laurent RINEAU
https://bugs.kde.org/show_bug.cgi?id=449931

Bug ID: 449931
   Summary: Display Configuration crash when exit with Esc
   Product: systemsettings
   Version: 5.24.0
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: laurent.rineau__...@normalesup.org
  Target Milestone: ---

Application: systemsettings (5.24.0)

Qt Version: 5.15.2
Frameworks Version: 5.90.0
Operating System: Linux 5.16.7-200.fc35.x86_64 x86_64
Windowing System: Wayland
Distribution: "Fedora release 35 (Thirty Five)"
DrKonqi: 5.24.0 [KCrashBackend]

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

1. Start "Display Configuration" either from the start menu or from krunner
2. Then type the Esc key

that crashes the windows and Dr Konqi displays a notification.

Note that I run the KDE sesision with wayland, and I have two monitors: one
integrated laptop manitor, and an external monitor.

The crash can be reproduced every time.

-- Backtrace:
Application: System Settings (systemsettings), signal: Segmentation fault

[KCrash Handler]
#4  0x7f4500ade7ac in KScreen::Config::clone() const () at
/lib64/libKF5Screen.so.7
#5  0x7f44fb5917d8 in KCMKScreen::qt_static_metacall(QObject*,
QMetaObject::Call, int, void**) () at
/usr/lib64/qt5/plugins/kcms/kcm_kscreen.so
#6  0x7f44fb592433 in KCMKScreen::qt_metacall(QMetaObject::Call, int,
void**) () at /usr/lib64/qt5/plugins/kcms/kcm_kscreen.so
#7  0x7f4553b526f5 in QQmlObjectOrGadget::metacall(QMetaObject::Call, int,
void**) const () at /lib64/libQt5Qml.so.5
#8  0x7f4553a5b638 in CallPrecise(QQmlObjectOrGadget const&,
QQmlPropertyData const&, QV4::ExecutionEngine*, QV4::CallData*,
QMetaObject::Call) () at /lib64/libQt5Qml.so.5
#9  0x7f4553a5d5c7 in QV4::QObjectMethod::callInternal(QV4::Value const*,
QV4::Value const*, int) const () at /lib64/libQt5Qml.so.5
#10 0x7f4553a6d271 in QV4::Moth::VME::interpret(QV4::CppStackFrame*,
QV4::ExecutionEngine*, char const*) () at /lib64/libQt5Qml.so.5
#11 0x7f4553a70c15 in QV4::Moth::VME::exec(QV4::CppStackFrame*,
QV4::ExecutionEngine*) [clone .part.0] () at /lib64/libQt5Qml.so.5
#12 0x7f4553a137de in QV4::Function::call(QV4::Value const*, QV4::Value
const*, int, QV4::ExecutionContext const*) () at /lib64/libQt5Qml.so.5
#13 0x7f4553b6dc71 in QQmlJavaScriptExpression::evaluate(QV4::CallData*,
bool*) () at /lib64/libQt5Qml.so.5
#14 0x7f4553b27ae1 in QQmlBoundSignalExpression::evaluate(void**) () at
/lib64/libQt5Qml.so.5
#15 0x7f4553b27e73 in QQmlBoundSignal_callback(QQmlNotifierEndpoint*,
void**) () at /lib64/libQt5Qml.so.5
#16 0x7f4553b52625 in QQmlNotifier::emitNotify(QQmlNotifierEndpoint*,
void**) () at /lib64/libQt5Qml.so.5
#17 0x7f455507a272 in void doActivate(QObject*, int, void**) () at
/lib64/libQt5Core.so.5
#18 0x7f45424b9536 in QQuickAction::triggered(QObject*) () at
/lib64/libQt5QuickTemplates2.so.5
#19 0x7f45424bbcf2 in QQuickActionPrivate::trigger(QObject*, bool) () at
/lib64/libQt5QuickTemplates2.so.5
#20 0x7f45424bbe69 in QQuickActionPrivate::handleShortcutEvent(QObject*,
QShortcutEvent*) () at /lib64/libQt5QuickTemplates2.so.5
#21 0x7f4555c20443 in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /lib64/libQt5Widgets.so.5
#22 0x7f45550467d8 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() at /lib64/libQt5Core.so.5
#23 0x7f4c8f32 in QShortcutMap::dispatchEvent(QKeyEvent*) () at
/lib64/libQt5Gui.so.5
#24 0x7f4c95a3 in QShortcutMap::tryShortcut(QKeyEvent*) () at
/lib64/libQt5Gui.so.5
#25 0x7f4800a7 in QWindowSystemInterface::handleShortcutEvent(QWindow*,
unsigned long, int, QFlags, unsigned int, unsigned int,
unsigned int, QString const&, bool, unsigned short) () at /lib64/libQt5Gui.so.5
#26 0x7f49950f in
QGuiApplicationPrivate::processKeyEvent(QWindowSystemInterfacePrivate::KeyEvent*)
() at /lib64/libQt5Gui.so.5
#27 0x7f47cc9c in
QWindowSystemInterface::sendWindowSystemEvents(QFlags)
() at /lib64/libQt5Gui.so.5
#28 0x7f45525e2b44 in userEventSourceDispatch(_GSource*, int (*)(void*),
void*) () at /lib64/libQt5WaylandClient.so.5
#29 0x7f4552d5705f in g_main_context_dispatch () at /lib64/libglib-2.0.so.0
#30 0x7f4552dac2a8 in g_main_context_iterate.constprop () at
/lib64/libglib-2.0.so.0
#31 0x7f4552d54853 in g_main_context_iteration () at
/lib64/libglib-2.0.so.0
#32 0x7f4555097bb8 in
QEventDispatcherGlib::processEvents(QFlags) ()
at /lib64/libQt5Core.so.5
#33 0x7f45550451e2 in
QEventLoop::exec(QFlags) () at
/lib64/libQt5Core.so.5
#34 0x7f455504d724 in QCoreApplication::exec() () at /lib64/libQt5Core.so.5
#35 0x5580799c91e1 in main ()
[Inferior 1 (process 10636) detached]

Possible duplicates by query: bug 449869, bug 447199.

Re

[gwenview] [Bug 445434] Gwenview crash when clicking "crop" button

2022-02-14 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=445434

Laurent Montel  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
  Latest Commit||https://invent.kde.org/grap
   ||hics/gwenview/commit/6aba8e
   ||56950afbff2a769c0dd15015ed3
   ||5ac86d8
 Resolution|--- |FIXED

--- Comment #3 from Laurent Montel  ---
Git commit 6aba8e56950afbff2a769c0dd15015ed35ac86d8 by Laurent Montel.
Committed on 14/02/2022 at 09:30.
Pushed by mlaurent into branch 'master'.

Fix Bug 445434: Gwenview crash when clicking "crop" button

M  +4-1lib/crop/cropwidget.cpp

https://invent.kde.org/graphics/gwenview/commit/6aba8e56950afbff2a769c0dd15015ed35ac86d8

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

[dolphin] [Bug 450245] New: dolphin crashed while I was trying to connect to a SMB share

2022-02-14 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=450245

Bug ID: 450245
   Summary: dolphin crashed while I was trying to connect to a SMB
share
   Product: dolphin
   Version: 21.12.2
  Platform: Ubuntu Packages
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: l.bonn...@laposte.net
CC: kfm-de...@kde.org
  Target Milestone: ---

Application: dolphin (21.12.2)

Qt Version: 5.15.2
Frameworks Version: 5.91.0
Operating System: Linux 5.16.9-051609-lowlatency x86_64
Windowing System: X11
Distribution: Ubuntu 21.10
DrKonqi: 5.24.0 [KCrashBackend]

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

I was trying to connect to a SMB share by typing the following URL in the
address bar:

smb://servername/

The reporter is unsure if this crash is reproducible.

-- Backtrace:
Application: Dolphin (dolphin), signal: Aborted

[KCrash Handler]
#4  __pthread_kill_implementation (no_tid=0, signo=6, threadid=139904213823104)
at pthread_kill.c:44
#5  __pthread_kill_internal (signo=6, threadid=139904213823104) at
pthread_kill.c:80
#6  __GI___pthread_kill (threadid=139904213823104, signo=signo@entry=6) at
pthread_kill.c:91
#7  0x7f3e01aff476 in __GI_raise (sig=sig@entry=6) at
../sysdeps/posix/raise.c:26
#8  0x7f3e01ae57b7 in __GI_abort () at abort.c:79
#9  0x7f3e03b68f67 in KCoreDirListerCache::printDebug (this=) at ./src/core/kcoredirlister.cpp:2099
#10 0x7f3e03c380ba in KCoreDirListerCache::slotUpdateResult
(this=0x7f3e03caa540 <(anonymous
namespace)::Q_QGS_kDirListerCache::innerFunction()::holder>, j=0x7ffcc89c7f10)
at ./src/core/kcoredirlister.cpp:1735
#11 0x7f3e021eaa53 in QtPrivate::QSlotObjectBase::call (a=0x7ffcc89c8060,
r=0x7f3e03caa540 <(anonymous
namespace)::Q_QGS_kDirListerCache::innerFunction()::holder>,
this=0x5609f4f4f0f0) at
../../include/QtCore/../../src/corelib/kernel/qobjectdefs_impl.h:398
#12 doActivate (sender=0x5609f4fa99f0, signal_index=6,
argv=0x7ffcc89c8060) at kernel/qobject.cpp:3886
#13 0x7f3e033ea9a0 in KJob::result(KJob*, KJob::QPrivateSignal) () from
/lib/x86_64-linux-gnu/libKF5CoreAddons.so.5
#14 0x7f3e033b in KJob::finishJob(bool) () from
/lib/x86_64-linux-gnu/libKF5CoreAddons.so.5
#15 0x7f3e021eaa53 in QtPrivate::QSlotObjectBase::call (a=0x7ffcc89c8130,
r=0x5609f4fa99f0, this=0x5609f4ffd8d0) at
../../include/QtCore/../../src/corelib/kernel/qobjectdefs_impl.h:398
#16 doActivate (sender=0x5609f5c01ad0, signal_index=7,
argv=0x7ffcc89c8130) at kernel/qobject.cpp:3886
#17 0x7f3e021e3d67 in QMetaObject::activate
(sender=sender@entry=0x5609f5c01ad0, m=m@entry=0x7f3e03ca4c00
,
local_signal_index=local_signal_index@entry=4, argv=argv@entry=0x0) at
kernel/qobject.cpp:3946
#18 0x7f3e03bc1607 in KIO::SlaveInterface::finished
(this=this@entry=0x5609f5c01ad0) at
./obj-x86_64-linux-gnu/src/core/KF5KIOCore_autogen/include/moc_slaveinterface.cpp:464
#19 0x7f3e03bc3853 in KIO::SlaveInterface::dispatch (this=0x5609f5c01ad0,
_cmd=, rawdata=...) at ./src/core/slaveinterface.cpp:149
#20 0x7f3e03bc1ead in KIO::SlaveInterface::dispatch (this=0x5609f5c01ad0)
at ./src/core/slaveinterface.cpp:78
#21 0x7f3e03bc65c2 in KIO::Slave::gotInput (this=0x5609f5c01ad0) at
./src/core/slave.cpp:336
#22 0x7f3e021eaa53 in QtPrivate::QSlotObjectBase::call (a=0x7ffcc89c8380,
r=0x5609f5c01ad0, this=0x5609f4f51810) at
../../include/QtCore/../../src/corelib/kernel/qobjectdefs_impl.h:398
#23 doActivate (sender=0x5609f50345b0, signal_index=3,
argv=0x7ffcc89c8380) at kernel/qobject.cpp:3886
#24 0x7f3e021e073e in QObject::event (this=0x5609f50345b0,
e=0x5609f46d7d80) at kernel/qobject.cpp:1314
#25 0x7f3e02ca16b3 in QApplicationPrivate::notify_helper (this=, receiver=0x5609f50345b0, e=0x5609f46d7d80) at
kernel/qapplication.cpp:3632
#26 0x7f3e021b316a in QCoreApplication::notifyInternal2
(receiver=0x5609f50345b0, event=0x5609f46d7d80) at
kernel/qcoreapplication.cpp:1063
#27 0x7f3e021b6257 in QCoreApplicationPrivate::sendPostedEvents
(receiver=0x0, event_type=0, data=0x5609f446aec0) at
kernel/qcoreapplication.cpp:1817
#28 0x7f3e0220cef7 in postEventSourceDispatch (s=0x5609f4568d60) at
kernel/qeventdispatcher_glib.cpp:277
#29 0x7f3dffe328bb in g_main_dispatch (context=0x7f3df4005000) at
../../../glib/gmain.c:3337
#30 g_main_context_dispatch (context=0x7f3df4005000) at
../../../glib/gmain.c:4055
#31 0x7f3dffe85f08 in g_main_context_iterate.constprop.0
(context=context@entry=0x7f3df4005000, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at ../../../glib/gmain.c:4131
#32 0x7f3dffe30003 in g_main_context_iteration (context=0x7f3df4005000,
may_block=1) at ../../../glib/gmain.c:4196
#33 0x7f3e0220c548 in QEventDispatcherGlib::processEvents
(this=0x5609f4563400, flags=...) at kerne

[dolphin] [Bug 450245] dolphin crashed while I was trying to connect to a SMB share

2022-02-14 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=450245

--- Comment #1 from Laurent Bonnaud  ---
I tried again and Dolphin crashed again.

Here is console output:

$ dolphin
Qt: Session management error: networkIdsList argument is NULL
kf.kio.core: Internal error: itemsInUse did not contain
QUrl("smb://DOMAINNAME%5Cbonnaudl@servername/")
kf.kio.core: Fatal Error: HUH? Lister KDirLister(0x55ad7a38ffb0) is supposed to
be listing, but has no job!
KCrash: crashing... crashRecursionCounter = 2
KCrash: Application Name = dolphin path = /usr/bin pid = 6392
KCrash: Arguments: /usr/bin/dolphin
KCrash: Attempting to start /usr/lib/x86_64-linux-gnu/libexec/drkonqi

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

[kmail2] [Bug 377521] regression: system tray icon no longer shows number of new mails

2022-02-20 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=377521

Laurent Montel  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |INTENTIONAL

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

[systemsettings] [Bug 449931] Display Configuration crash when exit with Esc

2022-02-20 Thread Laurent RINEAU
https://bugs.kde.org/show_bug.cgi?id=449931

--- Comment #4 from Laurent RINEAU  ---
I confirm the bug is fixed in Plasma 5.24.1. Thanks.

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

[kmail2] [Bug 450550] K-Mail does not print images in an e-mail

2022-02-21 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=450550

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #4 from Laurent Montel  ---
Indeed it's broken.
I will work on it soon.

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

[akregator] [Bug 450650] URL encoded chars in feed-entry-link-href become invalid - replaced by question marks

2022-02-21 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=450650

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
I confirm it.
It's when we extract info from feed that it's not converted correctly

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

[akregator] [Bug 450650] URL encoded chars in feed-entry-link-href become invalid - replaced by question marks

2022-02-21 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=450650

Laurent Montel  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/pim/
   ||akregator/commit/4c061653e3
   ||2af8944a78fdd1c3f3edda0b106
   ||b44
   Version Fixed In||5.19.3

--- Comment #2 from Laurent Montel  ---
Git commit 4c061653e32af8944a78fdd1c3f3edda0b106b44 by Laurent Montel.
Committed on 22/02/2022 at 07:08.
Pushed by mlaurent into branch 'release/21.12'.

Fix bug 450650:  URL encoded chars in feed-entry-link-href become invalid -
replaced by question marks

Fix store encoding url

FIXED-IN: 5.19.3

M  +2-2plugins/mk4storage/feedstoragemk4impl.cpp

https://invent.kde.org/pim/akregator/commit/4c061653e32af8944a78fdd1c3f3edda0b106b44

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

[akregator] [Bug 450650] URL encoded chars in feed-entry-link-href become invalid - replaced by question marks

2022-02-21 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=450650

--- Comment #3 from Laurent Montel  ---
Hi,
The bug was how we stored url. We stored as latin1 but we really need to store
as utf8
you need to remove feed + reimport otherwise all info will be stored as latin1

Regards

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

[ktorrent] [Bug 450811] New: ktorrent crash while downloading a file

2022-02-24 Thread Laurent Bonnaud
https://bugs.kde.org/show_bug.cgi?id=450811

Bug ID: 450811
   Summary: ktorrent crash while downloading a file
   Product: ktorrent
   Version: 21.12.2
  Platform: Ubuntu Packages
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: joris.guis...@gmail.com
  Reporter: l.bonn...@laposte.net
  Target Milestone: ---

Application: ktorrent (21.12.2)

Qt Version: 5.15.2
Frameworks Version: 5.91.0
Operating System: Linux 5.16.11-051611-lowlatency x86_64
Windowing System: X11
Distribution: Ubuntu 21.10
DrKonqi: 5.24.2 [KCrashBackend]

-- Information about the crash:
- What I was doing when the application crashed:
I was waiting for the file to finish downlading.

ktorrent sometimes crashes when the dowload speed is very high and saturates my
Internet access (1Gb/s).
I have never seen it crash when the download speed is limited by peers and is
below my ISP limit.

The crash can be reproduced sometimes.

-- Backtrace:
Application: KTorrent (ktorrent), signal: Aborted

[KCrash Handler]
#4  __pthread_kill_implementation (no_tid=0, signo=6, threadid=140033914699328)
at pthread_kill.c:44
#5  __pthread_kill_internal (signo=6, threadid=140033914699328) at
pthread_kill.c:80
#6  __GI___pthread_kill (threadid=140033914699328, signo=signo@entry=6) at
pthread_kill.c:91
#7  0x7f5c342ba476 in __GI_raise (sig=sig@entry=6) at
../sysdeps/posix/raise.c:26
#8  0x7f5c342a07b7 in __GI_abort () at abort.c:79
#9  0x7f5c3463ba31 in __gnu_cxx::__verbose_terminate_handler () at
../../../../src/libstdc++-v3/libsupc++/vterminate.cc:95
#10 0x7f5c346474ec in __cxxabiv1::__terminate (handler=) at
../../../../src/libstdc++-v3/libsupc++/eh_terminate.cc:48
#11 0x7f5c346464b9 in __cxa_call_terminate (ue_header=0x557799907a40) at
../../../../src/libstdc++-v3/libsupc++/eh_call.cc:54
#12 0x7f5c34646c3a in __cxxabiv1::__gxx_personality_v0 (version=, actions=6, exception_class=5138137972254386944, ue_header=0x557799907a40,
context=) at
../../../../src/libstdc++-v3/libsupc++/eh_personality.cc:685
#13 0x7f5c344ad484 in _Unwind_RaiseException_Phase2 (exc=0x557799907a40,
context=0x7ffc43055ea0, frames_p=0x7ffc43055da8) at
../../../src/libgcc/unwind.inc:64
#14 0x7f5c344adebe in _Unwind_Resume (exc=exc@entry=0x557799907a40) at
../../../src/libgcc/unwind.inc:241
#15 0x7f5c36716676 in bt::TorrentControl::stop (this=,
wjob=) at ./src/torrent/torrentcontrol.cpp:452
#16 0x7f5c367971cc in bt::TorrentControl::~TorrentControl
(this=0x557798d9ab80, __in_chrg=) at
./src/torrent/torrentcontrol.cpp:104
#17 0x7f5c3679723d in bt::TorrentControl::~TorrentControl
(this=0x557798d9ab80, __in_chrg=) at
./src/torrent/torrentcontrol.cpp:124
#18 0x7f5c368ca32e in
qDeleteAll::const_iterator> (end=..., begin=...)
at /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h:320
#19 qDeleteAll (c=...) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h:328
#20 kt::QueueManager::~QueueManager (this=, this=) at ./libktcore/torrent/queuemanager.cpp:52
#21 0x7f5c368ca3ad in kt::QueueManager::~QueueManager (this=, this=) at ./libktcore/torrent/queuemanager.cpp:53
#22 0x5577989000a4 in kt::Core::~Core (this=,
this=) at ./ktorrent/core.cpp:115
#23 0x557798909c12 in kt::Core::~Core (this=,
this=) at ./ktorrent/core.cpp:113
#24 kt::GUI::~GUI (this=, this=) at
./ktorrent/gui.cpp:115
#25 0x5577988f2c8b in main (argc=, argv=) at
./ktorrent/main.cpp:236
[Inferior 1 (process 48552) detached]

Possible duplicates by query: bug 447918.

Reported using DrKonqi

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

[kmail2] [Bug 454605] Kmail crashes when i have tried to add note to a message

2022-05-30 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=454605

Laurent Montel  changed:

   What|Removed |Added

   Version Fixed In||22.04.2
 CC||mon...@kde.org
 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Laurent Montel  ---
Fixed

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

[kmail2] [Bug 455208] Subject, from and to field missing from message view

2022-06-13 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=455208

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #2 from Laurent Montel  ---
First at all 5.18.90 is very old.
Secondary is it for all messages or specific message ?

Regards

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

  1   2   3   4   5   6   7   8   9   10   >