[valgrind] [Bug 371966] No uninitialised values reported with PGI -Mstack_arrays

2016-11-02 Thread Philippe Waroquiers
https://bugs.kde.org/show_bug.cgi?id=371966

--- Comment #6 from Philippe Waroquiers  ---
(In reply to Carl Ponder from comment #4)
> Can you please list out the commands more precisely?
> I ran these commands in one window:
> 
>   module purge
>   module load pgi/16.9
>   module load gcc/4.8.5
>   module load valgrind
> 
>   pgfortran -o test03.pgi test03.f90 -O0 -gopt -Mstack_arrays
>   valgrind --tool=memcheck --vgdb=full --vgdb-error=0 test03.pgi
> 
> Then in the second window I ran these commands:
> 
>   module purge
>   module load pgi/16.9
>   module load gcc/4.8.5
>   module load valgrind
> 
>   gdb test03.pgi
>   target remote | vgdb
> 
>   b 77
>   c
> 
> so far so good. But now:
> 
>   print N
> 
> gives
> 
>   Cannot access memory at address 0x4011a000
Strange.
Do you see the same when debugging test03.pgi natively ?
   (i.e. when not using target remote | vgdb ?

Maybe gdb does not properly understand the debugging info
generated by pgfortran ?
If gdb can properly print e.g. N when natively debugging
but cannot when using target remote, then that looks
like a bug (in gdb and/or in valgrind gdbserver)
What is the version of gdb you are using ?


> 
> Why is this? And
> 
>   print x(1)
> 
> gives
> 
>   value being subranged must be in memory
I guess the problem here is similar to the print N.

An alternative is to modify your program so that it prints
the addresses of the variables to examine.
Then you should be able to use xb monitor command without
having to use e.g. (gdb) print &X(1)

> 
> And
> 
>   xb 0x4011a000
> 
> gives
> 
>   Undefined command: "xb".  Try "help".
See valgrind user manual, explaining what is a monitor command
and how to use them.
Basically, a monitor command is a string that gdb will send
to the remote gdbserver. This string is sent by gdb using
   'monitor'
e.g.
(gdb) monitor xb 0x1234
The manual explains it all, and give examples.

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

[rekonq] [Bug 323226] Inspect a specific element directly

2016-11-02 Thread reenadevi
https://bugs.kde.org/show_bug.cgi?id=323226

--- Comment #1 from reenadevi  ---
How to check inspect element in the konqueror browser

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

[rekonq] [Bug 323226] Inspect a specific element directly

2016-11-02 Thread reenadevi
https://bugs.kde.org/show_bug.cgi?id=323226

reenadevi  changed:

   What|Removed |Added

 CC||reenab...@gmail.com

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

[kdenlive] [Bug 358046] Changelog missing since 15.12

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=358046

qubo...@gmail.com changed:

   What|Removed |Added

 Resolution|WONTFIX |---
 Status|RESOLVED|UNCONFIRMED

--- Comment #2 from qubo...@gmail.com ---
A changelog file is present in the repository, indicating it to be the source
of change log information. However it hasn't been updated since 15.12.

Please
a) update the file or
b) explain at the top of the file, how to get latest change log information
(I'm guessing this could be a quickgit.kde.org link that gives all the changes
for a specific release if that's possible or just a link to the blog, it at
least seems to have a log for 16.08.2
https://kdenlive.org/2016/10/kdenlive-16-08-2-released/

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

[kdenlive] [Bug 358046] Changelog missing since 15.12

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=358046

qubo...@gmail.com changed:

   What|Removed |Added

Summary|Changelog missing 15.12 |Changelog missing since
   ||15.12

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

[kwin] [Bug 360719] Secondary user actions popup remains visible

2016-11-02 Thread Martin Gräßlin
https://bugs.kde.org/show_bug.cgi?id=360719

Martin Gräßlin  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED

--- Comment #15 from Martin Gräßlin  ---
I succeeded to reproduce with two input devices:
1. open context menu
2. open sub menu
3. hover an action with the mouse
4. Use touch screen to close

The sub-menu stays as a zombie, but can be brought back to life by opening it
again.

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

[kwin] [Bug 372001] KWin's context menus don't have shadows on wayland

2016-11-02 Thread Martin Gräßlin
https://bugs.kde.org/show_bug.cgi?id=372001

Martin Gräßlin  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED
  Flags||X11+

--- Comment #1 from Martin Gräßlin  ---
Uh that might get tricky

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

[valgrind] [Bug 371966] No uninitialised values reported with PGI -Mstack_arrays

2016-11-02 Thread Philippe Waroquiers
https://bugs.kde.org/show_bug.cgi?id=371966

--- Comment #5 from Philippe Waroquiers  ---
(In reply to Carl Ponder from comment #3)
> This "pgfortran" is the PGI Fortran compiler.
> What I'm puzzled about is why valgrind is finding more uninitialized
> array-elements when I compiled with gfortran than with pgfortran, and if I
> use
> 
> pgfortran -O0 -gopt -Mstack_arrays ...
> 
> valgrind doesn't find any uninitialized array-elements at all.
> So this "gdb+vgdb" will show me the valgrind internal tables that keep track
> of what's initialized and what isn't?
The best is to read the manual:
see
http://www.valgrind.org/docs/manual/manual-core-adv.html#manual-core-adv.gdbserver
and the section in the memcheck part describing the memcheck specific
monitor commands
http://www.valgrind.org/docs/manual/mc-manual.html#mc-manual.monitor-commands

The manual is (supposed to be) clear/complete and understandable, but
can for sure always be improved (so, file a new bug if something is not clear)

Thanks

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

[kwin] [Bug 372000] Debug console can be minimized leaving an invisible input eating window

2016-11-02 Thread Martin Gräßlin
https://bugs.kde.org/show_bug.cgi?id=372000

Martin Gräßlin  changed:

   What|Removed |Added

  Flags||Wayland+

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

[kwin] [Bug 371999] Scroll direction in debug console inverted

2016-11-02 Thread Martin Gräßlin
https://bugs.kde.org/show_bug.cgi?id=371999

Martin Gräßlin  changed:

   What|Removed |Added

 Ever confirmed|0   |1
  Component|wayland-generic |input
 Status|UNCONFIRMED |CONFIRMED
  Flags||Wayland+

--- Comment #1 from Martin Gräßlin  ---
Known issue: https://todo.kde.org/?controller=task&action=show&task_id=1641

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

[kwin] [Bug 371912] compositing disabled on nvidia drivers

2016-11-02 Thread Martin Gräßlin
https://bugs.kde.org/show_bug.cgi?id=371912

Martin Gräßlin  changed:

   What|Removed |Added

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

--- Comment #7 from Martin Gräßlin  ---
Great. I mark as upstream as it's a problem of NVIDIA+EGL

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

[kstars] [Bug 372004] Tutorial popup on every start (KStars on Android)

2016-11-02 Thread Jasem Mutlaq
https://bugs.kde.org/show_bug.cgi?id=372004

--- Comment #1 from Jasem Mutlaq  ---
I don't have this problem on my Samsung S5, let's see if other folks report
this issue as well.

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

[kcoloredit] [Bug 372009] kcolorchooser - 'Add to Custom Colors' overwrites previous custom color

2016-11-02 Thread David Rankin
https://bugs.kde.org/show_bug.cgi?id=372009

--- Comment #1 from David Rankin  ---
Custom Colors are not preserved between uses of kcolorchooser. It doesn't
appear any backend file saving the information. Setting a custom color, and
then opening kcolorchooser again (e.g. to set a color in the Breeze theme) the
previous custom colors are gone.

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

[frameworks-kio] [Bug 369320] Changes not saved when editing .desktop files

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=369320

s...@track100.com changed:

   What|Removed |Added

 CC||s...@track100.com

--- Comment #3 from s...@track100.com ---
I experience this as well.  

Workaround is to edit the .desktop file in a text editor. (documented under
'desktop entries')

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

[k3b] [Bug 360170] Failed with error while ripping DVD (may be encrypted DVD)

2016-11-02 Thread Leslie Zhai
https://bugs.kde.org/show_bug.cgi?id=360170

--- Comment #15 from Leslie Zhai  ---
(In reply to Matthias from comment #14)
> 2 Months without any answer, correct?

Deprecated transcode - tried to PR but unmaintained by upstream
https://github.com/KDE/k3b/blob/master/ChangeLog

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

[kcoloredit] [Bug 372009] New: kcolorchooser - 'Add to Custom Colors' overwrites previous custom color

2016-11-02 Thread David Rankin
https://bugs.kde.org/show_bug.cgi?id=372009

Bug ID: 372009
   Summary: kcolorchooser - 'Add to Custom Colors' overwrites
previous custom color
   Product: kcoloredit
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: percy.camilo...@gmail.com
  Reporter: drankina...@suddenlinkmail.com
  Target Milestone: ---

Version v2.0.0 on

KDE Frameworks 5.27.0
Qt 5.7.0 (built against 5.7.0)

'Add to Custom Colors' does not 'Add' it 'Wipes Out' any prior custom color
unless an empty custom color slot is manually chosen. Attempting to set focus
on an empty custom color slot destroys the current color selected replacing the
current with #FF (this is completely broken and mimics the way M$ Win 95
color chooser worked) Color chooser has always added to the 'next available'
custom color slot and the RBG values stored in
.kde/share/config/colors/Custom_Colors. Now you must manually set focus on the
next available slot which sets the current color to #FF -- completely
unwanted behavior.

Any time 'Add to Custom Colors' is chosen, it should store the current color in
the next open custom color slot. When all custom colors are filled, scroll-bars
should be provided to accommodate. This has worked flawlessly in the past.

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

[kcoloredit] [Bug 372008] New: kcolorchooser - focus model broken for 'Val:' slider - unresponsive to mouse wheel

2016-11-02 Thread David Rankin
https://bugs.kde.org/show_bug.cgi?id=372008

Bug ID: 372008
   Summary: kcolorchooser - focus model broken for 'Val:' slider -
unresponsive to mouse wheel
   Product: kcoloredit
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: percy.camilo...@gmail.com
  Reporter: drankina...@suddenlinkmail.com
  Target Milestone: ---

Version v2.0.0 on

KDE Frameworks 5.27.0
Qt 5.7.0 (built against 5.7.0)

Focus not provided for mouse wheel adjustment of 'Val:' (brightness) *slider*
(on right-side of backwards color panel (ROYGBIV is backwards from previous
versions) . When using focus follows mouse, the slider should take focus on
mouseover and respond with 1-increment adjustments to wheel-up/wheel-down
inputs. That no longer works. (possibly related to widget issues in
https://bugs.kde.org/show_bug.cgi?id=136714 and
https://bugs.kde.org/show_bug.cgi?id=311241)

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

[krusader] [Bug 371897] Invalid Modified date for files in FTP mode

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=371897

--- Comment #7 from aco...@gmail.com ---
I have just installed Qt5. Now ftp date/time is OK.
But I still try to change short date/time format because Qt5 settings did not
pick up my KDE settings. Could you please suggest me where I can do it?

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

[neon] [Bug 372007] New: Heaptrack isn't packaged by neon

2016-11-02 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=372007

Bug ID: 372007
   Summary: Heaptrack isn't packaged by neon
   Product: neon
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: neon-b...@kde.org
  Reporter: aleix...@kde.org
CC: j...@jriddell.org, neon-b...@kde.org, sit...@kde.org
  Target Milestone: ---

kde:heaptrack

It's quite handy for profiling memory usage and allocations.

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

[kdenlive] [Bug 371926] No monitor image when idling if Movit in use

2016-11-02 Thread farid
https://bugs.kde.org/show_bug.cgi?id=371926

farid  changed:

   What|Removed |Added

 CC||snd.no...@gmail.com
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #7 from farid  ---
http://commits.kde.org/kdenlive/4a3f660b885f5ba9eb606859ece709189e2189b4

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

[kdenlive] [Bug 371818] Timeline jumps to first track

2016-11-02 Thread farid
https://bugs.kde.org/show_bug.cgi?id=371818

farid  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||snd.no...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #2 from farid  ---
This has already been fixed in master.

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

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

[kdenlive] [Bug 371982] git master - during Project Monitor playback, vertical Timeline position changes automatically, though it shouldn't [video example included]

2016-11-02 Thread farid
https://bugs.kde.org/show_bug.cgi?id=371982

farid  changed:

   What|Removed |Added

 CC||ol...@gmx.at

--- Comment #2 from farid  ---
*** Bug 371818 has been marked as a duplicate of this bug. ***

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

[dragonplayer] [Bug 211488] Dragon player can't play a video and do you know who to activate the subtitle fonction on dragon player?

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=211488

noahdean1...@gmail.com changed:

   What|Removed |Added

 CC||noahdean1...@gmail.com

--- Comment #2 from noahdean1...@gmail.com ---
I can't play videos

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

[valgrind] [Bug 371966] No uninitialised values reported with PGI -Mstack_arrays

2016-11-02 Thread Carl Ponder
https://bugs.kde.org/show_bug.cgi?id=371966

--- Comment #4 from Carl Ponder  ---
Can you please list out the commands more precisely?
I ran these commands in one window:

  module purge
  module load pgi/16.9
  module load gcc/4.8.5
  module load valgrind

  pgfortran -o test03.pgi test03.f90 -O0 -gopt -Mstack_arrays
  valgrind --tool=memcheck --vgdb=full --vgdb-error=0 test03.pgi

Then in the second window I ran these commands:

  module purge
  module load pgi/16.9
  module load gcc/4.8.5
  module load valgrind

  gdb test03.pgi
  target remote | vgdb

  b 77
  c

so far so good. But now:

  print N

gives

  Cannot access memory at address 0x4011a000

Why is this? And

  print x(1)

gives

  value being subranged must be in memory

And

  xb 0x4011a000

gives

  Undefined command: "xb".  Try "help".

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

[kdenlive] [Bug 371478] Job Queue does not declare completed a rendering despite having concluded.

2016-11-02 Thread farid
https://bugs.kde.org/show_bug.cgi?id=371478

farid  changed:

   What|Removed |Added

 CC||snd.no...@gmail.com

--- Comment #4 from farid  ---
Maybe vaguely related to this: https://bugs.kde.org/show_bug.cgi?id=371263

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

[krita] [Bug 364289] Mirror Mode always initiates with axis at the center of the 2nd document on the canvas of the 1st document

2016-11-02 Thread Tyson Tan
https://bugs.kde.org/show_bug.cgi?id=364289

--- Comment #7 from Tyson Tan  ---
Thank you Dmitry! :D

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

[kdenlive] [Bug 371707] Allow disabling audio scrub

2016-11-02 Thread farid
https://bugs.kde.org/show_bug.cgi?id=371707

farid  changed:

   What|Removed |Added

 CC||ig...@earth.li

--- Comment #3 from farid  ---
*** Bug 371920 has been marked as a duplicate of this bug. ***

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

[kdenlive] [Bug 371920] Allow disabling sound while dragging cursor in timeline

2016-11-02 Thread farid
https://bugs.kde.org/show_bug.cgi?id=371920

farid  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||snd.no...@gmail.com
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from farid  ---
This is a duplicate. Please follow up on the original report.

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

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

[kexi] [Bug 371958] Setting up lookup column not possible

2016-11-02 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=371958

Jarosław Staniek  changed:

   What|Removed |Added

 Status|CLOSED  |RESOLVED
  Latest Commit|http://commits.kde.org/kdb/ |http://commits.kde.org/kexi
   |a838c603033c656dc32cf100c7c |/06f4c2f9629afe52f3e0b28cbc
   |96409e5d10c39   |82cb17c208fb6a

--- Comment #3 from Jarosław Staniek  ---
Git commit 06f4c2f9629afe52f3e0b28cbc82cb17c208fb6a by Jaroslaw Staniek.
Committed on 03/11/2016 at 00:40.
Pushed by staniek into branch '3.0'.

Fix altering physical table design when lookup fields are in use

Example: renaming a field.
This is a regression in Kexi 3.0.0.
FIXED-IN:3.0.1

M  +4-2src/plugins/tables/kexitabledesignerview.cpp

http://commits.kde.org/kexi/06f4c2f9629afe52f3e0b28cbc82cb17c208fb6a

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

[Purpose] [Bug 371787] Share plasmoid crashed when using pastebin option

2016-11-02 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=371787

--- Comment #3 from Aleix Pol  ---
Alejandro, would you be able to test if you can reproduce these issues in the
1.1 branch?

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

[kwin] [Bug 363224] Kwin crashes from time to time (this time using Virtual Machine Manager)

2016-11-02 Thread marc
https://bugs.kde.org/show_bug.cgi?id=363224

--- Comment #24 from marc  ---
Dnia środa, 2 listopada 2016 14:53:44 CET piszesz:
> https://bugs.kde.org/show_bug.cgi?id=363224
> 
> --- Comment #21 from Martin Gräßlin  ---
> Anyone still experiencing the problem with KWin 5.8?

OK, some more useful info:

This issue appears ONLY if "Enable 3D acceleration" is enabled on "Virtualbox 
> Display > Display" tab ...

Hope this helps a bit to find the source of this issue. Seems like VBox tries 
to use some kind of 3D accel subsystem and turns it on in a wrong way, or 
whatever.

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

[kwin] [Bug 340125] workspace.clientList() doesn't work in declarativescript

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=340125

git...@chilon.net changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||5.8.4
  Latest Commit||http://commits.kde.org/kwin
   ||/4730be084c1b071db5b0869f13
   ||e6c444a35e2fb3

--- Comment #12 from git...@chilon.net ---
Git commit 4730be084c1b071db5b0869f13e6c444a35e2fb3 by James Pike.
Committed on 02/11/2016 at 23:31.
Pushed by pikejames into branch 'Plasma/5.8'.

Support for workspace.clientList() in declarative script

Summary:
The version provided is only compatible with QtScript so it became
necessary to split WorkspaceWrapper into a base class and two child
classes, one for QtScript and one for QmlScript.
FIXED-IN: 5.8.4
REVIEW: D3185

M  +1-1scripting/scriptedeffect.cpp
M  +10   -3scripting/scripting.cpp
M  +19   -4scripting/scripting.h
M  +26   -4scripting/workspace_wrapper.cpp
M  +29   -4scripting/workspace_wrapper.h

http://commits.kde.org/kwin/4730be084c1b071db5b0869f13e6c444a35e2fb3

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

[kwin] [Bug 363224] Kwin crashes from time to time (this time using Virtual Machine Manager)

2016-11-02 Thread marc
https://bugs.kde.org/show_bug.cgi?id=363224

--- Comment #23 from marc  ---
Dnia środa, 2 listopada 2016 14:53:44 CET piszesz:
> https://bugs.kde.org/show_bug.cgi?id=363224
> 
> --- Comment #21 from Martin Gräßlin  ---
> Anyone still experiencing the problem with KWin 5.8?

OK, I can confirm that it only happens with compositing turned "on" - no matter 
which engine is being used [OpenGL 2/3.1/XRender].

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

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

2016-11-02 Thread Daniel
https://bugs.kde.org/show_bug.cgi?id=372006

Bug ID: 372006
   Summary: [Patch] Support feed deltas
   Product: syndication
   Version: git
  Platform: Compiled Sources
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kdepim-b...@kde.org
  Reporter: c...@daniel.priv.no
  Target Milestone: ---

Created attachment 101990
  --> https://bugs.kde.org/attachment.cgi?id=101990&action=edit
Patch

Support RFC3229 with the feed extension.

Instead of returning the full feed, supporting servers will return the delta
since the If-Modified-Since timestamp or the If-None-Match ETag identifier.
Reduces the bandwidth requirements for users and servers like, and reduces
processing required as feeds only contain new entries since the last time they
where checked.

The only modification required to support this in Akregator is adding the
`A-IM: feed` header in requests when updating feeds. I’ve only tested this with
Akregator, where it works as desired.

Question:
Does Syndication have other uses that I’m not aware of where the full feed
would be preferred instead of deltas?

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

[frameworks-kio] [Bug 372005] [Patch] HTTP date format should be English and not follow user locale

2016-11-02 Thread Daniel
https://bugs.kde.org/show_bug.cgi?id=372005

Daniel  changed:

   What|Removed |Added

Summary|HTTP date format should be  |[Patch] HTTP date format
   |English and not follow user |should be English and not
   |locale  |follow user locale

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

[frameworks-kio] [Bug 372005] HTTP date format should be English and not follow user locale

2016-11-02 Thread Daniel
https://bugs.kde.org/show_bug.cgi?id=372005

--- Comment #1 from Daniel  ---
Examples of incorrectly generated headers (via Syndication in Akregator):

If-Modified-Since: di, 01 Nov 2016 14:06:55 GMT
If-Modified-Since: tir., 01 Nov 2016 22:37:15 GMT
If-Modified-Since: l%f8r., 22 Oct 2016 20:07:32 GMT

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

[frameworks-kio] [Bug 372005] New: HTTP date format should be English and not follow user locale

2016-11-02 Thread Daniel
https://bugs.kde.org/show_bug.cgi?id=372005

Bug ID: 372005
   Summary: HTTP date format should be English and not follow user
locale
   Product: frameworks-kio
   Version: unspecified
  Platform: Compiled Sources
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: fa...@kde.org
  Reporter: c...@daniel.priv.no
CC: kdelibs-b...@kde.org
  Target Milestone: ---

Created attachment 101989
  --> https://bugs.kde.org/attachment.cgi?id=101989&action=edit
Patch

Currently, KIO formats HTTP dates according to the user’s locale. This leads to
cache-misses in non-English locales. The attached patch simplifies the
implementation and switches it to always use English.

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

[Spectacle] [Bug 371768] Screenshot of "Window under cursor" of plasma applet show other part of the desktop

2016-11-02 Thread Peter Wu
https://bugs.kde.org/show_bug.cgi?id=371768

Peter Wu  changed:

   What|Removed |Added

 CC||pe...@lekensteyn.nl

--- Comment #1 from Peter Wu  ---
It is probably working as intended. Your "Window" is not really a new window,
but a "window" part of the Plasma desktop. The "Window under cursor" option
shows all windows belonging to the application.

Ticking the "Pop-up" only box might help, but in some cases it would capture
only menus for example.

Just to be sure, can you try to reproduce your issue with the latest git
version?
git://anongit.kde.org/spectacle.git

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

[Spectacle] [Bug 371843] selection rectangle can be too tiny which causes it to become buggy

2016-11-02 Thread Peter Wu
https://bugs.kde.org/show_bug.cgi?id=371843

Peter Wu  changed:

   What|Removed |Added

 CC||pe...@lekensteyn.nl
 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

--- Comment #1 from Peter Wu  ---
The resize handles are deliberately not shown when the box becomes too small.

Not being able to resize vertically is a bit odd, I can confirm this: create a
small rectangle, resize is to make it much wider. Observe that vertical
resizing does not work however.

Workaround: just create a new selection (this is what I normally do when I
accidentally create a too small selection).

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

[krita] [Bug 336519] search filter in layer pane

2016-11-02 Thread David REVOY
https://bugs.kde.org/show_bug.cgi?id=336519

--- Comment #9 from David REVOY  ---
@Kaddy: I like your mockup idea #2 in
https://bugs.kde.org/attachment.cgi?id=101988

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

[krita] [Bug 336519] search filter in layer pane

2016-11-02 Thread Kaddy
https://bugs.kde.org/show_bug.cgi?id=336519

--- Comment #8 from Kaddy  ---
(In reply to David REVOY from comment #6)
> @Kaddy: Your mockup picture add a permanent search bar on top of the
> layer-docker taking a new row of GUI (so more vertical space). Can this
> search bar be inside the 'Filter button' ( drop down menu ) ?

Well, putting it inside the 'Filter' button is another possibility, but it
requires an additional click for every single search you perform. A third
possibility (see the file attached) is to put the search box on the same row
with the Blending Mode drop-down. A different approach could also be to display
only temporary the search box when using a shortcut like Ctrl+F. In the end, it
is up to the developers what method they will chose. IMHO, when working with
dozens of layers, it is irrelevant if you see 119 or 120 layers.

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

[kstars] [Bug 372004] New: Tutorial popup on every start (KStars on Android)

2016-11-02 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=372004

Bug ID: 372004
   Summary: Tutorial popup on every start (KStars on Android)
   Product: kstars
   Version: unspecified
  Platform: Other
OS: Android 5.x
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: mutla...@ikarustech.com
  Reporter: aleix...@kde.org
  Target Milestone: ---

I thought it would only be shown on the first run, but subsequent runs also
show the dialog.

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

[krita] [Bug 336519] search filter in layer pane

2016-11-02 Thread Kaddy
https://bugs.kde.org/show_bug.cgi?id=336519

Kaddy  changed:

   What|Removed |Added

 Attachment #101911|0   |1
is obsolete||

--- Comment #7 from Kaddy  ---
Created attachment 101988
  --> https://bugs.kde.org/attachment.cgi?id=101988&action=edit
Search layer v.02

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

[clazy] [Bug 352896] Doesn't build on OSX

2016-11-02 Thread Sergio Martins
https://bugs.kde.org/show_bug.cgi?id=352896

--- Comment #23 from Sergio Martins  ---
Can you test 'fixing_mac' branch ? Works for me with 3.9 + macports

Should also work with 3.7

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

[krita] [Bug 363663] bad pixel randomness with low density with gaussian or soft mask type

2016-11-02 Thread AfsMax
https://bugs.kde.org/show_bug.cgi?id=363663

AfsMax  changed:

   What|Removed |Added

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

--- Comment #7 from AfsMax  ---
I still see the problem on the 3.0.91 prebuilt package on Windows 10.
The tag does include the commit (and its revert(?)).

It does not seem to be fixed, despite what the phabricator tasks say (T3887 and
T3968).

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

[clazy] [Bug 352896] Doesn't build on OSX

2016-11-02 Thread Sergio Martins
https://bugs.kde.org/show_bug.cgi?id=352896

--- Comment #22 from Sergio Martins  ---
Git commit 05262016a161d3a163ab94b5358ade7a1a1b5e78 by Sergio Martins.
Committed on 02/11/2016 at 23:09.
Pushed by smartins into branch 'fixing_mac'.

Testing a proper mac fix

M  +10   -6CMakeLists.txt
M  +7-0cmake/FindLLVM.cmake

http://commits.kde.org/clazy/05262016a161d3a163ab94b5358ade7a1a1b5e78

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

[phonon-backend-vlc] [Bug 371507] libvlc loads Qt4 plugin in a Qt5 application [ArchLinux]

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371507

Christoph Feck  changed:

   What|Removed |Added

 CC||cf...@kde.org
Summary|crash when trying to report |libvlc loads Qt4 plugin in
   |a bug... this must be a |a Qt5 application
   |joke|[ArchLinux]

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

[phonon-backend-vlc] [Bug 371507] crash when trying to report a bug... this must be a joke

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371507

Christoph Feck  changed:

   What|Removed |Added

 CC||bcooks...@kde.org,
   ||f...@kde.org,
   ||j...@videolan.org,
   ||myr...@kde.org
  Component|general |general
Product|drkonqi |phonon-backend-vlc

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

[drkonqi] [Bug 371507] crash when trying to report a bug... this must be a joke

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371507

--- Comment #17 from Christoph Feck  ---
*** Bug 371995 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 371995] Plasma crashed after unlocking widgets

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371995

--- Comment #4 from Christoph Feck  ---
Read the backtrace of the crash. Your issue is that VLC crashes because of a
mix of Qt4 and Qt5.

Please trust bug triagers and do not change the bug status unless you have
actual evidence they are wrong.

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

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

[Breeze] [Bug 371914] Icon request: Claws-mail

2016-11-02 Thread andreas
https://bugs.kde.org/show_bug.cgi?id=371914

--- Comment #3 from andreas  ---
I will check the app icon but do we have a breeze icon theme for claws-mail?

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

[plasmashell] [Bug 341143] Wallpaper on every desktop is gone.

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=341143

--- Comment #206 from David Edmundson  ---
> I can't alt-tab to it if it's in a different activity

Sure you can.

System settings -> Window Management -> Task Switcher

There's a checkbox for activities just like there is for the VDs.

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

[clazy] [Bug 352896] Doesn't build on OSX

2016-11-02 Thread Sergio Martins
https://bugs.kde.org/show_bug.cgi?id=352896

Sergio Martins  changed:

   What|Removed |Added

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

--- Comment #21 from Sergio Martins  ---
linking to -lLLVMSupport -lcurses -lz seems to fix it for all versions
(although didn't test 3.7)

Linking to libLLVM isn't a good idea since we're mixing static with dynamic
libs, it results in pass-remarks being registered more than once.

Linking to libLLVMSupport works on mac, although it doesn't work on Linux, no
idea why.

And finally, FindLLVM.cmake should be changed so it executes llvm-config
--system-libs too (so it adds -lcurses and -lz)

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

[plasmashell] [Bug 371777] Memory leak when closing applications?

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=371777

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 CC||k...@davidedmundson.co.uk
 Status|UNCONFIRMED |NEEDSINFO

--- Comment #2 from David Edmundson  ---
The smaps logs tell me nothing and I can't reproduce this locally.

When you say 100 isntances, is that 100 windows or 100 instances of konsole?

does allow instances to be grouped make a difference?

Do you know how to make a massif trace?

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

[kdenlive] [Bug 371982] git master - during Project Monitor playback, vertical Timeline position changes automatically, though it shouldn't [video example included]

2016-11-02 Thread Jean-Baptiste Mardelle
https://bugs.kde.org/show_bug.cgi?id=371982

Jean-Baptiste Mardelle  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/kden
   ||live/a6d10adf0c8df453cfbb76
   ||5da4437132986a1b9d
 Status|CONFIRMED   |RESOLVED

--- Comment #1 from Jean-Baptiste Mardelle  ---
Git commit a6d10adf0c8df453cfbb765da4437132986a1b9d by Jean-Baptiste Mardelle.
Committed on 02/11/2016 at 21:24.
Pushed by mardelle into branch 'master'.

Fix unwanted vertical scrolling

M  +8-4src/timeline/customtrackview.cpp

http://commits.kde.org/kdenlive/a6d10adf0c8df453cfbb765da4437132986a1b9d

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

[valgrind] [Bug 371966] No uninitialised values reported with PGI -Mstack_arrays

2016-11-02 Thread Carl Ponder
https://bugs.kde.org/show_bug.cgi?id=371966

--- Comment #3 from Carl Ponder  ---
This "pgfortran" is the PGI Fortran compiler.
What I'm puzzled about is why valgrind is finding more uninitialized
array-elements when I compiled with gfortran than with pgfortran, and if I use

pgfortran -O0 -gopt -Mstack_arrays ...

valgrind doesn't find any uninitialized array-elements at all.
So this "gdb+vgdb" will show me the valgrind internal tables that keep track of
what's initialized and what isn't?

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

[dolphin] [Bug 372003] New: WM_CLASS issue in dolphin 15

2016-11-02 Thread Fran
https://bugs.kde.org/show_bug.cgi?id=372003

Bug ID: 372003
   Summary: WM_CLASS issue in dolphin 15
   Product: dolphin
   Version: 15.12.3
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: phegoru...@throwam.com
  Target Milestone: ---

In KDE4 it was possible set WM_CLASS to: WM_CLASS = "newname", "newname" by
simply creating a link to the executable with the name of the desired class:

user@kde:~$ /usr/bin/dolphin4 -v
Qt: 4.8.7
Plataforma de desarrollo de KDE: 4.14.16
Dolphin: 14.12.3
user@kde:~$ ln -s /usr/bin/dolphin4 dolphin4-newname
user@kde:~$ ./dolphin4-newname  & xprop | grep WM_CLASS 
WM_CLASS(STRING) = "dolphin4-newname", "Dolphin4-newname"

This has stopped working in version 15:

user@kde:~$ /usr/bin/dolphin -v
dolphin 15.12.3
user@kde:~$ ln -s /usr/bin/dolphin dolphin-newname
user@kde:~$ /dolphin-newname  & xprop | grep WM_CLASS
WM_CLASS(STRING) = "dolphin-newname", "dolphin"
user@kde:~$ ./dolphin-newname --name dolphin-newname  & xprop | grep WM_CLASS
WM_CLASS(STRING) = "dolphin-newname", "dolphin"

The expected result:

WM_CLASS(STRING) = "dolphin-newname", "Dolphin-newname"

In other applications such as konsole the result is as expected.

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

[plasmashell] [Bug 370718] Plasma failed after uninstalling widget

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=370718

David Edmundson  changed:

   What|Removed |Added

 CC||peter.ullin...@gmail.com

--- Comment #3 from David Edmundson  ---
*** Bug 371992 has been marked as a duplicate of this bug. ***

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

[krusader] [Bug 371897] Invalid Modified date for files in FTP mode

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=371897

--- Comment #6 from aco...@gmail.com ---
> On righ-click->"properties" on a file, is the date displayed there correct?

No -  the date is wrong. See screenshot. 
The same invalid date in another FTP server.

I'm sorry I gave wrong info about my desktop environment earlier. I have KDE
4.14.9 not KDE5.
Can I still change date/time format in Qt settings somewhere? Or I have to
install Qt5 e.t.c.?

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

[plasmashell] [Bug 371992] Plasma 5 crashed

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=371992

David Edmundson  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from David Edmundson  ---
Fixed in frameworks 5.28 which will be out soon.

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

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

[krusader] [Bug 371897] Invalid Modified date for files in FTP mode

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=371897

--- Comment #5 from aco...@gmail.com ---
Created attachment 101987
  --> https://bugs.kde.org/attachment.cgi?id=101987&action=edit
ftp file properties - invalid date

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

[plasmashell] [Bug 371825] Places->Network doesn't lead to anywhere

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=371825

David Edmundson  changed:

   What|Removed |Added

 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

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

[plasmashell] [Bug 371825] Places->Network doesn't lead to anywhere

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=371825

--- Comment #6 from David Edmundson  ---
it is in plasma-workspace. applications:// and desktop:// are also in there.

Arguably kio-extras is also a bad place. desktop:// and remote:// are fairly
core - and the whole point of extras is that they are...extra.

and because kio-extras is in applications moving is a complex nightmare as we
no longer have a simple release schedule where we could do this. 

Pragmatically this ends up breaking things for more users than we end up fixing
it for...but it is technically currently wrong.

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

[plasmashell] [Bug 366298] widgets remain locked after selecting the "unlock widgets" option from the desktop context menu

2016-11-02 Thread Timo
https://bugs.kde.org/show_bug.cgi?id=366298

--- Comment #4 from Timo  ---
*** Bug 371995 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 371995] Plasma crashed after unlocking widgets

2016-11-02 Thread Timo
https://bugs.kde.org/show_bug.cgi?id=371995

--- Comment #3 from Timo  ---
(In reply to Christoph Feck from comment #2)
> No, it is bug 371507.
> 
> *** This bug has been marked as a duplicate of bug 371507 ***

Just because I am using Archlinux does not mean that the problem I am reporting
is the same. 
I had no problem using the error reporting GUI (what I understand is meant by
'drkonqi') and I am not reporting any problem related to it.

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

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

[plasmashell] [Bug 371977] parallel kde plasma5 sessions do not work

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=371977

David Edmundson  changed:

   What|Removed |Added

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

--- Comment #1 from David Edmundson  ---
As the same user?

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

[plasmashell] [Bug 368310] Opening widgets animation is delayed about 1s after click

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=368310

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #6 from David Edmundson  ---
There is no artificial delay.

Some things could be faster, and we are constantly improving that, but that's
not a specific bug.

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

[plasmashell] [Bug 366298] widgets remain locked after selecting the "unlock widgets" option from the desktop context menu

2016-11-02 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=366298

David Edmundson  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 CC||k...@davidedmundson.co.uk
 Resolution|--- |WAITINGFORINFO

--- Comment #3 from David Edmundson  ---
>the panels disappear, then come back

Is that plasmashell crashing?
You can easily tell because the PID will change.


Please set the bug status back to "unconfirmed" when you reply.

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

[clazy] [Bug 352896] Doesn't build on OSX

2016-11-02 Thread Sergio Martins
https://bugs.kde.org/show_bug.cgi?id=352896

--- Comment #20 from Sergio Martins  ---
Git commit 91e005f34df7db3eb537169c2df3b65dc345dd62 by Sergio Martins.
Committed on 02/11/2016 at 22:33.
Pushed by smartins into branch 'master'.

Fix run_tests.py on macOS

Needs to load a .dylib instead of .so

M  +2-0tests/run_tests.py

http://commits.kde.org/clazy/91e005f34df7db3eb537169c2df3b65dc345dd62

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

[konqueror] [Bug 371996] Embedded Advanced Text Editor Preview Missing - no syntax highlighting without

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371996

Christoph Feck  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Christoph Feck  ---
Konqueror is still the KDE4 version, so you also need KDE4 version of Kate
installed to get the Kate part.

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

[plasmashell] [Bug 371995] Plasma crashed after unlocking widgets

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371995

--- Comment #2 from Christoph Feck  ---
No, it is bug 371507.

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

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

[drkonqi] [Bug 371507] crash when trying to report a bug... this must be a joke

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371507

Christoph Feck  changed:

   What|Removed |Added

 CC||timo...@gmail.com

--- Comment #16 from Christoph Feck  ---
*** Bug 371995 has been marked as a duplicate of this bug. ***

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

[Spectacle] [Bug 371993] Spectacle - missing kioslave interface, no sftp, and no multi-instance capability

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371993

--- Comment #2 from Christoph Feck  ---
The second issue is bug 362616.

In the future, please report one issue per ticket.

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

[Spectacle] [Bug 371993] Spectacle - missing kioslave interface, no sftp, and no multi-instance capability

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=371993

Christoph Feck  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Christoph Feck  ---


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

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

[Spectacle] [Bug 369174] Add image preview option for "Save As" dialog

2016-11-02 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=369174

Christoph Feck  changed:

   What|Removed |Added

 CC||drankinatty@suddenlinkmail.
   ||com

--- Comment #2 from Christoph Feck  ---
*** Bug 371993 has been marked as a duplicate of this bug. ***

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

[clazy] [Bug 352896] Doesn't build on OSX

2016-11-02 Thread Sergio Martins
https://bugs.kde.org/show_bug.cgi?id=352896

--- Comment #19 from Sergio Martins  ---
(In reply to RJVB from comment #18)
> Is there anything Mac specific in support for different clang versions?

Apparently yes, otherwise 3.9 would also work, just like it does on Linux.

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

[valgrind] [Bug 371869] support '%' in symbol Z-encoding

2016-11-02 Thread Ivo Raisr
https://bugs.kde.org/show_bug.cgi?id=371869

Ivo Raisr  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||r16112
 Status|CONFIRMED   |RESOLVED

--- Comment #6 from Ivo Raisr  ---
Fixed in SVN r16112.

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

[kdeplasma-addons] [Bug 364916] Sometimes clicking gives you the systemmonitor window, sometimes not

2016-11-02 Thread Antonio Rojas
https://bugs.kde.org/show_bug.cgi?id=364916

Antonio Rojas  changed:

   What|Removed |Added

 CC||aro...@archlinux.org

--- Comment #1 from Antonio Rojas  ---
Confirmed on 5.8.3. When it stops working, the debug output shows

file:///usr/share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/SystemLoadViewer.qml:323:
TypeError: Cannot read property 'entryPath' of undefined

So the click is correctly registered, but somehow it can't connect to ksysguard

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

[kmail2] [Bug 364967] Kmail message list does not remember rightmost column width

2016-11-02 Thread Christian Trippe
https://bugs.kde.org/show_bug.cgi?id=364967

Christian Trippe  changed:

   What|Removed |Added

 CC||christiande...@web.de

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

[valgrind] [Bug 371989] PCMPISTRM $0x72 and PCMPISTRI $0x12 validity bit propagation is imprecise

2016-11-02 Thread Patrick J . LoPresti
https://bugs.kde.org/show_bug.cgi?id=371989

--- Comment #3 from Patrick J. LoPresti  ---
Created attachment 101986
  --> https://bugs.kde.org/attachment.cgi?id=101986&action=edit
Test case illustrating pcmpistri $0x12 validity bit propagation failure

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

[valgrind] [Bug 371989] PCMPISTRM $0x72 and PCMPISTRI $0x12 validity bit propagation is imprecise

2016-11-02 Thread Patrick J . LoPresti
https://bugs.kde.org/show_bug.cgi?id=371989

--- Comment #2 from Patrick J. LoPresti  ---
A similar problem happens with Intel's optimized atoi() routine. Actually this
is so similar that I believe these can probably be fixed together, so I am just
adding the second test case to this bug report as another attachment.

The Intel atoi() code uses PCMPISTRI $0x12,... Once again the return value from
the function is tainted as undefined, resulting in memcheck complaints every
time the value is used.

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

[valgrind] [Bug 371989] PCMPISTRM $0x72 and PCMPISTRI $0x12 validity bit propagation is imprecise

2016-11-02 Thread Patrick J . LoPresti
https://bugs.kde.org/show_bug.cgi?id=371989

Patrick J. LoPresti  changed:

   What|Removed |Added

Summary|PCMPISTRM $0x72 validity|PCMPISTRM $0x72 and
   |bit propagation is  |PCMPISTRI $0x12 validity
   |imprecise   |bit propagation is
   ||imprecise

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

[okteta] [Bug 371800] Automatically adjust the headers in the structures view (w/ patches)

2016-11-02 Thread Staffan Palmroos
https://bugs.kde.org/show_bug.cgi?id=371800

--- Comment #3 from Staffan Palmroos  ---
True, it might be unnecessary to have a setting for it. On the other hand,
there might be a situation where some name or type string is very long or very
indented pushing the value column very far to the right. It could then be
annoying to not be able to make the other columns narrower.

Anyway, I forgot a small piece in the last patch apparently, the entry in the
.kcfg file. I've attached a patch for it should you want to use it.

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

[okteta] [Bug 371800] Automatically adjust the headers in the structures view (w/ patches)

2016-11-02 Thread Staffan Palmroos
https://bugs.kde.org/show_bug.cgi?id=371800

--- Comment #2 from Staffan Palmroos  ---
Created attachment 101985
  --> https://bugs.kde.org/attachment.cgi?id=101985&action=edit
Missing entry in the .kcfg file for the automatic width adjustment

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

[umbrello] [Bug 371990] Crash when removing pin widgets after owning component has been removed before

2016-11-02 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=371990

Ralf Habacker  changed:

   What|Removed |Added

 CC||ralf.habac...@freenet.de

--- Comment #2 from Ralf Habacker  ---
Comment on attachment 101978
  --> https://bugs.kde.org/attachment.cgi?id=101978
Patch to fix crash: Remove PinPortBase objects when owner is removed.

I can confirm that the patch fixes the crash. Looking at the patch I have a few
questions/notes:
1. The owner management of the PinWidgets is done by the private member m_pOw.
UMLWidgets is derived from QGraphicsItem which also has a owner/parent
management with parentItem(). In principal it looks possible to use that
instead of m_pOw. Any idea how much the related effort would be to fix the
issue that way ? 
2. The usage of Q_ASSERT(m_baseType >= wt_UMLWidget && m_baseType <= wt_Port);
is good, but also introduces in further development to miss some added enum
values.  It would be better to introduce enum constants for the upper and lower
limit and to check against them.
3. Redoing has issues: I removed one pin, then the component and tried to redo
both with results into incomplete redo.
4. For detailed review there is reviewboard.kde.org

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

[kgpg] [Bug 372002] New: KGPG Key Managemant crash during key refresh

2016-11-02 Thread Nico Kruber
https://bugs.kde.org/show_bug.cgi?id=372002

Bug ID: 372002
   Summary: KGPG Key Managemant crash during key refresh
   Product: kgpg
   Version: unspecified
  Platform: openSUSE RPMs
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: k...@opensource.sf-tec.de
  Reporter: nico.kru...@gmail.com
  Target Milestone: ---

Application: kgpg (2.18.0)
KDE Platform Version: 4.14.25
Qt Version: 4.8.7
Operating System: Linux 4.8.4-1-default x86_64
Distribution: "openSUSE Tumbleweed"

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

I set View -> Show only Secret Keys, then changed the primary user ID of a key
and refreshed the list (View -> Refresh List) where the program crashed

-- Backtrace:
Application: KGpg (kgpg), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
[KCrash Handler]
#6  0x0043e9c3 in  ()
#7  0x7f5e8f6f38c1 in
QSortFilterProxyModelPrivate::source_to_proxy(QModelIndex const&) const
(this=0x7ffd0c6a57c0) at ../../src/corelib/kernel/qabstractitemmodel.h:393
#8  0x7f5e8f6f38c1 in
QSortFilterProxyModelPrivate::source_to_proxy(QModelIndex const&) const
(this=0x10b6f50, source_index=...) at itemviews/qsortfilterproxymodel.cpp:387
#9  0x7f5e8f6f39f1 in QSortFilterProxyModel::mapFromSource(QModelIndex
const&) const (this=, sourceIndex=...) at
itemviews/qsortfilterproxymodel.cpp:2532
#10 0x7f5e8f6eb258 in QSortFilterProxyModel::parent(QModelIndex const&)
const (this=, child=...) at
itemviews/qsortfilterproxymodel.cpp:1678
#11 0x7f5e8e473b9f in QPersistentModelIndex::parent() const
(this=) at kernel/qabstractitemmodel.h:393
#12 0x7f5e8e473b9f in QPersistentModelIndex::parent() const
(this=this@entry=0xe6d360) at kernel/qabstractitemmodel.cpp:347
#13 0x7f5e8f6be3a9 in QItemSelectionModel::isColumnSelected(int,
QModelIndex const&) const (this=0xe6d360) at itemviews/qitemselectionmodel.h:78
#14 0x7f5e8f6be3a9 in QItemSelectionModel::isColumnSelected(int,
QModelIndex const&) const (parentIndex=..., column=1, row=0, this=0xe6d360) at
itemviews/qitemselectionmodel.h:90
#15 0x7f5e8f6be3a9 in QItemSelectionModel::isColumnSelected(int,
QModelIndex const&) const (this=, column=column@entry=1,
parent=...) at itemviews/qitemselectionmodel.cpp:1336
#16 0x7f5e8f672da0 in QHeaderViewPrivate::isSectionSelected(int) const
(column=1, this=0xf3b4f0) at ../../src/gui/itemviews/qheaderview_p.h:133
#17 0x7f5e8f672da0 in QHeaderViewPrivate::isSectionSelected(int) const
(this=this@entry=0xf3b4f0, section=1) at itemviews/qheaderview.cpp:2944
#18 0x7f5e8f67df23 in QHeaderView::paintSection(QPainter*, QRect const&,
int) const (this=0x110d700, painter=0x7ffd0c6a5bb0, rect=...,
logicalIndex=) at itemviews/qheaderview.cpp:2536
#19 0x7f5e8f67ba98 in QHeaderView::paintEvent(QPaintEvent*)
(this=0x110d700, e=) at itemviews/qheaderview.cpp:2125
#20 0x7f5e8f186940 in QWidget::event(QEvent*) (this=this@entry=0x110d700,
event=event@entry=0x7ffd0c6a62c0) at kernel/qwidget.cpp:8775
#21 0x7f5e8f54a41e in QFrame::event(QEvent*) (this=0x110d700,
e=0x7ffd0c6a62c0) at widgets/qframe.cpp:557
#22 0x7f5e8f66f523 in QAbstractItemView::viewportEvent(QEvent*)
(this=this@entry=0x110d700, event=event@entry=0x7ffd0c6a62c0) at
itemviews/qabstractitemview.cpp:1644
#23 0x7f5e8f67d60b in QHeaderView::viewportEvent(QEvent*) (this=0x110d700,
e=0x7ffd0c6a62c0) at itemviews/qheaderview.cpp:2447
#24 0x7f5e8e481451 in
QCoreApplicationPrivate::sendThroughObjectEventFilters(QObject*, QEvent*)
(this=this@entry=0xd28f90, receiver=receiver@entry=0x110d610,
event=event@entry=0x7ffd0c6a62c0) at kernel/qcoreapplication.cpp:1065
#25 0x7f5e8f1300cc in QApplicationPrivate::notify_helper(QObject*, QEvent*)
(this=this@entry=0xd28f90, receiver=receiver@entry=0x110d610,
e=e@entry=0x7ffd0c6a62c0) at kernel/qapplication.cpp:4561
#26 0x7f5e8f136fec in QApplication::notify(QObject*, QEvent*)
(this=this@entry=0xd0c450, receiver=receiver@entry=0x110d610,
e=e@entry=0x7ffd0c6a62c0) at kernel/qapplication.cpp:4351
#27 0x7f5e8fea164a in KApplication::notify(QObject*, QEvent*)
(this=0xd0c450, receiver=0x110d610, event=0x7ffd0c6a62c0) at
/usr/src/debug/kdelibs-4.14.25/kdeui/kernel/kapplication.cpp:311
#28 0x7f5e8e4812cd in QCoreApplication::notifyInternal(QObject*, QEvent*)
(this=0xd0c450, receiver=receiver@entry=0x110d610,
event=event@entry=0x7ffd0c6a62c0) at kernel/qcoreapplication.cpp:955
#29 0x7f5e8f180fa5 in QWidgetPrivate::drawWidget(QPaintDevice*, QRegion
const&, QPoint const&, int, QPainter*, QWidgetBackingStore*)
(event=0x7ffd0c6a62c0, receiver=0x110d610) at
../../src/corelib/kernel/qcoreapplication.h:234
#30 0x7f5e8f180fa5 in QWidgetPrivate::drawWidget(QPaintDevice*, QRegion
const&, QPoint const&, int, QPainter*, QWidgetBackingStore*)

[kwin] [Bug 372001] New: KWin's context menus don't have shadows on wayland

2016-11-02 Thread Kai Uwe Broulik
https://bugs.kde.org/show_bug.cgi?id=372001

Bug ID: 372001
   Summary: KWin's context menus don't have shadows on wayland
   Product: kwin
   Version: git master
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: wayland-generic
  Assignee: kwin-bugs-n...@kde.org
  Reporter: k...@privat.broulik.de
  Target Milestone: ---

KWin's context menus like the user actions menu don't have shadows on Wayland.

1.) Right-click title bar of a window on kwin_wayland

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

[kstars] [Bug 371998] KStars Lite calculates wrong UT offset when using GPS

2016-11-02 Thread Jasem Mutlaq
https://bugs.kde.org/show_bug.cgi?id=371998

Jasem Mutlaq  changed:

   What|Removed |Added

   Assignee|mutla...@ikarustech.com |afedosk...@gmail.com

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

[kwin] [Bug 372000] New: Debug console can be minimized leaving an invisible input eating window

2016-11-02 Thread Kai Uwe Broulik
https://bugs.kde.org/show_bug.cgi?id=372000

Bug ID: 372000
   Summary: Debug console can be minimized leaving an invisible
input eating window
   Product: kwin
   Version: git master
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: wayland-generic
  Assignee: kwin-bugs-n...@kde.org
  Reporter: k...@privat.broulik.de
  Target Milestone: ---

KWin's Wayland debug console can be minimized. The minimize animation plays as
normal, except that it doesn't minimize towards the task manager. Once the
animation finishes, however, there's still something eating mouse events at its
old geometry.

The only way to bring the window back is try to guess where its corners were
and then starting a resize, after which the window will magically re-appear and
then you can close it. Invoking the DBus method again will spawn a second debug
console rather than restoring/closing the previous one.

(I didn't test whether it's actually the debug console getting the events or
KWin just blocking them at this location but in any case, I can't interact with
the windows within that area)

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

[clazy] [Bug 352896] Doesn't build on OSX

2016-11-02 Thread RJVB
https://bugs.kde.org/show_bug.cgi?id=352896

--- Comment #18 from RJVB  ---
Is there anything Mac specific in support for different clang versions? I
didn't mention it but the exact same "build recipe" works fine on Linux with
clang 3.9 . Why would that be any different on Mac?

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

[kwin] [Bug 371999] New: Scroll direction in debug console inverted

2016-11-02 Thread Kai Uwe Broulik
https://bugs.kde.org/show_bug.cgi?id=371999

Bug ID: 371999
   Summary: Scroll direction in debug console inverted
   Product: kwin
   Version: git master
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: minor
  Priority: NOR
 Component: wayland-generic
  Assignee: kwin-bugs-n...@kde.org
  Reporter: k...@privat.broulik.de
  Target Milestone: ---

When scrolling through ScrollView's in KWin's Wayland debug console, the scroll
direction is inverted. This happens for both mouse wheel and touchpad
scrolling.

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

[kstars] [Bug 371998] New: KStars Lite calculates wrong UT offset when using GPS

2016-11-02 Thread Christian Dersch
https://bugs.kde.org/show_bug.cgi?id=371998

Bug ID: 371998
   Summary: KStars Lite calculates wrong UT offset when using GPS
   Product: kstars
   Version: unspecified
  Platform: Android
OS: Android 5.x
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: mutla...@ikarustech.com
  Reporter: lupi...@mailbox.org
  Target Milestone: ---

I've tested KStars Lite 1.0.0 on my Android Phone and used GPS for location.
I'm in Marburg, Germany (postition was determined fine) where I have UT offset
+1. KStars Lite filled in a value of -1 instead, so in total a shift of 2
hours. 

Btw: Is it possible to fill in Daylight Saving automatically too?

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

[Breeze] [Bug 371914] Icon request: Claws-mail

2016-11-02 Thread Jens Reuterberg
https://bugs.kde.org/show_bug.cgi?id=371914

Jens Reuterberg  changed:

   What|Removed |Added

 CC||jens...@kolabnow.com

--- Comment #2 from Jens Reuterberg  ---
Made an icon for it, its not perfect as on smaller sizes the rounded shape of
the claw looks kinda blurry, so it looks like a batch of agave growing in an
envelope but its up to the icon team what they think.

http://imgur.com/a/vvrOE

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

[plasmashell] [Bug 362131] Heavily dIstorted graphics when running KDE on Wayland

2016-11-02 Thread Buovjaga
https://bugs.kde.org/show_bug.cgi?id=362131

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|CONFIRMED   |RESOLVED

--- Comment #13 from Buovjaga  ---
Thanks. Now we have two confirmations, so I will set to WFM.

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

[valgrind] [Bug 371966] No uninitialised values reported with PGI -Mstack_arrays

2016-11-02 Thread Philippe Waroquiers
https://bugs.kde.org/show_bug.cgi?id=371966

Philippe Waroquiers  changed:

   What|Removed |Added

 CC||philippe.waroquiers@skynet.
   ||be

--- Comment #2 from Philippe Waroquiers  ---
(In reply to Carl Ponder from comment #0)
> Created attachment 101954 [details]
> Simple Fortran test-case using array with dynamic bound.
> 
> I have a simple Fortran test-case that allocates an array and uses
> uninitialized values from it. Using the PGI compiler, if I compile it using
> the -Mstack_arrays option, valgrind reports 0 errors.
> 
> I also have a HUGE program (WRF) where valgrind is likewise not reporting
> anything in spite of the fact that uninitialized array-elements are being
> used, so I'm trying to track down issues like this one.
> 
> Can you guys explain what's going on? I'm also checking with PGI on this.
No idea, and when I try to reproduce on my debian box, it tells:
No command 'pgfortran' found, did you mean:
 Command 'gfortran' from package 'gfortran' (main)


So, here is what I suggest:
Compile your application with debugging information.

Then use gdb+vgdb to step in your application
(see
http://www.valgrind.org/docs/manual/manual-core-adv.html#manual-core-adv.gdbserver
for more information)

Use the xb monitor command: 
  xb  [] shows the definedness (V) bits and values for 
(default 1) bytes starting at 
to see at which moment the memory of x(6..10) becomes initialised.
You probably better use --vgdb=full to be sure to step precisely (and even
maybe
use stepi when relevant).

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

[plasmashell] [Bug 370434] Multi screen support broken in Plasma 5.8.0

2016-11-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=370434

barisdemirde...@gmail.com changed:

   What|Removed |Added

 CC||barisdemirde...@gmail.com

--- Comment #15 from barisdemirde...@gmail.com ---
Plasma 5.8.3, problem persists.

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

[clazy] [Bug 352896] Doesn't build on OSX

2016-11-02 Thread Sergio Martins
https://bugs.kde.org/show_bug.cgi?id=352896

--- Comment #17 from Sergio Martins  ---
I can only afford to support one clang version (3.8) on macOS.
Even if you provide a patch for other versions, sooner or later they will break
as I don't have bandwith to maintain all the combinations of clazy/LLVM builds.

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

[kmail2] [Bug 371997] New: Delete e-mail confirmation dialogue: wrong button has the focus

2016-11-02 Thread Fuchs
https://bugs.kde.org/show_bug.cgi?id=371997

Bug ID: 371997
   Summary: Delete e-mail confirmation dialogue: wrong button has
the focus
   Product: kmail2
   Version: 5.3.1
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kdepim-b...@kde.org
  Reporter: deve...@fuchsnet.ch
  Target Milestone: ---

Compared to other applications, e.g. dolphin, kmail2's shift-delete (delete
without throwing in the trash) has a confirmation dialogue where the wrong
button has the focus. 

Even worse: in old versions of kmail2 it was inverted. 

This is rather dangerous, as users updating from an older version or using
other KDE applications are used to the other default: the confirm button has
input focus, not the abort button.

Steps to reproduce: 

1) have a mail in kmail2
2) have the shortcut for deleting the e-mail active
3) press that shortcut

What happens: 

in the dialogue that pops up, the "abort" button has the focus

What I expect to happen: 

the confirm button has the focus, as in other KDE applications, as in older
versions of kmail

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

[plasmashell] [Bug 362131] Heavily dIstorted graphics when running KDE on Wayland

2016-11-02 Thread Miroslav
https://bugs.kde.org/show_bug.cgi?id=362131

--- Comment #12 from Miroslav  ---
Desktop doesn't have distorted graphics anymore.

Didn't try to load any games, so can't comment on that one.

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

[kdenlive] [Bug 371982] git master - during Project Monitor playback, vertical Timeline position changes automatically, though it shouldn't [video example included]

2016-11-02 Thread Jean-Baptiste Mardelle
https://bugs.kde.org/show_bug.cgi?id=371982

Jean-Baptiste Mardelle  changed:

   What|Removed |Added

 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

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

  1   2   3   4   5   >