[digikam] [Bug 420978] Error on new install Failed to update the database schema from version 9 to version 10

2020-05-03 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=420978

--- Comment #4 from Maik Qualmann  ---
If I read through your description with "Install" and ends normally, I assume
you are on Windows and not on Linux.
On Windows, download and start DebugView from Microsoft. Start digiKam and post
the messages from DebugView.

Maik

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

[kigo] [Bug 420814] kigo is not executing the go engine correctly

2020-05-03 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=420814

Laurent Montel  changed:

   What|Removed |Added

   Version Fixed In||20.04.1
  Latest Commit||https://commits.kde.org/kig
   ||o/2ce84e64738578e8727a70e8b
   ||9925ce6ab1208ce
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #2 from Laurent Montel  ---
Git commit 2ce84e64738578e8727a70e8b9925ce6ab1208ce by Laurent Montel.
Committed on 04/05/2020 at 05:27.
Pushed by mlaurent into branch 'release/20.04'.

Fix Bug 420814 kigo is not executing the go engine correctly
FIXED-IN: 20.04.1

M  +8-0src/game/game.cpp

https://commits.kde.org/kigo/2ce84e64738578e8727a70e8b9925ce6ab1208ce

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

[dolphin] [Bug 158090] Option to show on-disk folder sizes in the "size" column and include in status bar calculations

2020-05-03 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=158090

Méven Car  changed:

   What|Removed |Added

   Version Fixed In||20.08
 Status|CONFIRMED   |RESOLVED
  Latest Commit||https://commits.kde.org/dol
   ||phin/e6ea3ab4c41dcc115143a2
   ||37aafd3a1152849433
 Resolution|--- |FIXED

--- Comment #21 from Méven Car  ---
Git commit e6ea3ab4c41dcc115143a237aafd3a1152849433 by Méven Car.
Committed on 04/05/2020 at 05:26.
Pushed by meven into branch 'master'.

[Details mode] Allow to fill the column size of directories with actual size

Summary:
Allow to compute the recursive size of directories to fill the details view
size column.
A setting allow to set a limit to the recursive level, allowing the user to
have some power over the setting.

When sorting by size and the feature is on, we get progressive ordering as the
directory size are gathered.

KDirectoryContentsCounter uses a cache internally to keep results so that it
can display directory size faster, but counts the dir size of directories each
time it is asked to count the size a directory nevertheless and when the size
has changed, it is updated.
KDirectoryContentsCounter uses one worker per instance only, meaning one
process per view makes the disk spin.

FIXED-IN: 20.08
Related: bug 190580

Test Plan:
With some recursion allowed:
{F8267580}

Without any recursion allowed (default):
{F8267581}

Reviewers: elvisangelaccio, ngraham, #dolphin

Reviewed By: elvisangelaccio, ngraham, #dolphin

Subscribers: feverfew, anthonyfieroni, iasensio, kfm-devel

Tags: #dolphin

Differential Revision: https://phabricator.kde.org/D25335

M  +8-0src/dolphinviewcontainer.cpp
M  +16   -4src/kitemviews/kfileitemlistwidget.cpp
M  +15   -3src/kitemviews/kfileitemmodel.cpp
M  +9-11   src/kitemviews/kfileitemmodelrolesupdater.cpp
M  +1-1src/kitemviews/kfileitemmodelrolesupdater.h
M  +39   -32   src/kitemviews/private/kdirectorycontentscounter.cpp
M  +8-13   src/kitemviews/private/kdirectorycontentscounter.h
M  +68   -30   src/kitemviews/private/kdirectorycontentscounterworker.cpp
M  +11   -3src/kitemviews/private/kdirectorycontentscounterworker.h
M  +8-0src/settings/dolphin_detailsmodesettings.kcfg
M  +45   -5src/settings/viewmodes/viewsettingstab.cpp
M  +5-0src/settings/viewmodes/viewsettingstab.h

https://commits.kde.org/dolphin/e6ea3ab4c41dcc115143a237aafd3a1152849433

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

[dolphin] [Bug 190580] Would like ability to display sizes in terms of files and folders, not just "items" could display files and folders count

2020-05-03 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=190580

Méven Car  changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/dol
   ||phin/e6ea3ab4c41dcc115143a2
   ||37aafd3a1152849433
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED
   Version Fixed In||20.08

--- Comment #9 from Méven Car  ---
Git commit e6ea3ab4c41dcc115143a237aafd3a1152849433 by Méven Car.
Committed on 04/05/2020 at 05:26.
Pushed by meven into branch 'master'.

[Details mode] Allow to fill the column size of directories with actual size

Summary:
Allow to compute the recursive size of directories to fill the details view
size column.
A setting allow to set a limit to the recursive level, allowing the user to
have some power over the setting.

When sorting by size and the feature is on, we get progressive ordering as the
directory size are gathered.

KDirectoryContentsCounter uses a cache internally to keep results so that it
can display directory size faster, but counts the dir size of directories each
time it is asked to count the size a directory nevertheless and when the size
has changed, it is updated.
KDirectoryContentsCounter uses one worker per instance only, meaning one
process per view makes the disk spin.

FIXED-IN: 20.08
Related: bug 158090

Test Plan:
With some recursion allowed:
{F8267580}

Without any recursion allowed (default):
{F8267581}

Reviewers: elvisangelaccio, ngraham, #dolphin

Reviewed By: elvisangelaccio, ngraham, #dolphin

Subscribers: feverfew, anthonyfieroni, iasensio, kfm-devel

Tags: #dolphin

Differential Revision: https://phabricator.kde.org/D25335

M  +8-0src/dolphinviewcontainer.cpp
M  +16   -4src/kitemviews/kfileitemlistwidget.cpp
M  +15   -3src/kitemviews/kfileitemmodel.cpp
M  +9-11   src/kitemviews/kfileitemmodelrolesupdater.cpp
M  +1-1src/kitemviews/kfileitemmodelrolesupdater.h
M  +39   -32   src/kitemviews/private/kdirectorycontentscounter.cpp
M  +8-13   src/kitemviews/private/kdirectorycontentscounter.h
M  +68   -30   src/kitemviews/private/kdirectorycontentscounterworker.cpp
M  +11   -3src/kitemviews/private/kdirectorycontentscounterworker.h
M  +8-0src/settings/dolphin_detailsmodesettings.kcfg
M  +45   -5src/settings/viewmodes/viewsettingstab.cpp
M  +5-0src/settings/viewmodes/viewsettingstab.h

https://commits.kde.org/dolphin/e6ea3ab4c41dcc115143a237aafd3a1152849433

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

[digikam] [Bug 420978] Error on new install Failed to update the database schema from version 9 to version 10

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420978

--- Comment #3 from caulier.gil...@gmail.com ---
Open a Linux terminal ( a text console) and start digiKam from the command line
interface:

https://www.howtogeek.com/140679/beginner-geek-how-to-start-using-the-linux-terminal/

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

[kmail2] [Bug 420766] Envelope From is empty on outgoing mails

2020-05-03 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=420766

Laurent Montel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://commits.kde.org/mes
   ||sagelib/ea14bb921d43118361b
   ||1973b01bacfeaf5a8bf2f
 Status|REPORTED|RESOLVED

--- Comment #3 from Laurent Montel  ---
Git commit ea14bb921d43118361b1973b01bacfeaf5a8bf2f by Laurent Montel.
Committed on 04/05/2020 at 05:11.
Pushed by mlaurent into branch 'release/20.04'.

Fix Bug 420766 - Envelope From is empty on outgoing mails
Revert support for big email (for the moment it creates too many
bug in encoding)

M  +6-5messageviewer/src/htmlwriter/webengineparthtmlwriter.cpp

https://commits.kde.org/messagelib/ea14bb921d43118361b1973b01bacfeaf5a8bf2f

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

[kmail2] [Bug 420766] Envelope From is empty on outgoing mails

2020-05-03 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=420766

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #2 from Laurent Montel  ---
Could you send me a testcase  as  I can't reproduce it here.
Thanks

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

[digikam] [Bug 420978] Error on new install Failed to update the database schema from version 9 to version 10

2020-05-03 Thread tami mize
https://bugs.kde.org/show_bug.cgi?id=420978

--- Comment #2 from tami mize  ---
I dont understand what "start in the console" means. When I try to run the
program, it gives me the error and will not open the Digikam program at all. 

tami
On 5/4/2020 12:30:07 AM, Maik Qualmann  wrote:
https://bugs.kde.org/show_bug.cgi?id=420978

Maik Qualmann changed:

What |Removed |Added

CC| |metzping...@gmail.com

--- Comment #1 from Maik Qualmann ---
Start digiKam in the console and post the messages that are output.

Maik

--
You are receiving this mail because:
You reported the bug.

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

[systemsettings] [Bug 420982] New: Set display scale slider step to a non-adversial value.

2020-05-03 Thread Cristian Tibirna
https://bugs.kde.org/show_bug.cgi?id=420982

Bug ID: 420982
   Summary: Set display scale slider step to a non-adversial
value.
   Product: systemsettings
   Version: 5.12.8
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: kcm_kscreen
  Assignee: kscreen-bugs-n...@kde.org
  Reporter: tibi...@kde.org
CC: plasma-b...@kde.org
  Target Milestone: ---

Currently, the slider for selecting the display's fractional scale in the
"Screen Scaling" dialog can be moved from 1 to 3 in 0.1 steps.

As explained very clearly here
https://cullmann.io/posts/kde-qt-highdpi-scaling/
this is a bad idea, as it creates very complicated issues with float number
representation as used in pixel level rendering.

The slider should have steps of 0.0625 (1/16.). Alternatively, a direct number
input should be provided.

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

[kio-gdrive] [Bug 420981] kio gdrive gives a certificate error (i think?) in the web part when redirecting to an external login page in the google sign-in popup.

2020-05-03 Thread spittingverse
https://bugs.kde.org/show_bug.cgi?id=420981

--- Comment #2 from spittingve...@gmail.com  ---
Sorry I meant 1.3.0-1

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

[kio-gdrive] [Bug 420981] kio gdrive gives a certificate error (i think?) in the web part when redirecting to an external login page in the google sign-in popup.

2020-05-03 Thread spittingverse
https://bugs.kde.org/show_bug.cgi?id=420981

--- Comment #1 from spittingve...@gmail.com  ---
This is in kio gdrive version 1.3.1

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

[kio-gdrive] [Bug 420981] New: kio gdrive gives a certificate error (i think?) in the web part when redirecting to an external login page in the google sign-in popup.

2020-05-03 Thread spittingverse
https://bugs.kde.org/show_bug.cgi?id=420981

Bug ID: 420981
   Summary: kio gdrive gives a certificate error (i think?) in the
web part when redirecting to an external login page in
the google sign-in popup.
   Product: kio-gdrive
   Version: unspecified
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: elvis.angelac...@kde.org
  Reporter: spittingve...@gmail.com
  Target Milestone: ---

SUMMARY


STEPS TO REPRODUCE
1. Try adding an online account from the online account tab in system settings
or from dolphin google drive
2. Login using a work google account that uses an external login system
(onelogin in this case)

OBSERVED RESULT

Typing in the email does not redirect to the external page and instead gives 
This site can’t be reached
The webpage at https://[REDACTED].login.us.onelogin.com/ might be temporarily
down or it may have moved permanently to a new web address.
ERR_CERT_AUTHORITY_INVALID



EXPECTED RESULT
A redirect to the onelogin page, allowing me to connect a google account to kde

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

ADDITIONAL INFORMATION
The login works just fine with a regular google account.

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

[kdenlive] [Bug 419478] Cuando abro el programa, el entorno aparece con un zoom y no puedo manejar el programa.

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=419478

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #3 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdevelop] [Bug 420303] Crash while parsing python Library

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=420303

--- Comment #4 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 356499] Improve interface feedback visuals when moving effects in stack up and down in Properties Widget

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=356499

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #10 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 405836] what happens to speed?

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=405836

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #4 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[dolphin] [Bug 419618] Firefox doesn't open the right application for images

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=419618

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #6 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[frameworks-baloo] [Bug 418069] Baloo considers .ofx files as having invalid encoding

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=418069

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #7 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 382713] Please support basic arithmetic operations in the pixel and size area

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=382713

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #3 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 420277] Opening and saving files does not work

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=420277

--- Comment #2 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 356498] Several workflow and design improvement suggestions for timeline widget (video example included)

2020-05-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=356498

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #7 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[digikam] [Bug 420978] Error on new install Failed to update the database schema from version 9 to version 10

2020-05-03 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=420978

Maik Qualmann  changed:

   What|Removed |Added

 CC||metzping...@gmail.com

--- Comment #1 from Maik Qualmann  ---
Start digiKam in the console and post the messages that are output.

Maik

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

[kwin] [Bug 420980] New: Keyboard navigation faulty in app menu decoration integration

2020-05-03 Thread Shriramana Sharma
https://bugs.kde.org/show_bug.cgi?id=420980

Bug ID: 420980
   Summary: Keyboard navigation faulty in app menu decoration
integration
   Product: kwin
   Version: 5.18.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: appmenu
  Assignee: kwin-bugs-n...@kde.org
  Reporter: samj...@gmail.com
  Target Milestone: ---

I'm using KWin 5.18.4.1 from Kubuntu Focal. This is the first time I'm getting
exposed to the integration of the App Menu into the decoration since I'm
upgrading directly from Bionic. I have not installed any global menu widget.

I find that the keyboard navigation for the app menu is seriously faulty. I
give examples using the simple basic app Kate.

1) If I open the App Menu by clicking on the decoration button using the mouse,
I am able to use Up/Down to navigate among File, Edit etc. I am also able to
use Right to enter a submenu.

2) If I once enter one of these submenus from the above step, or if I directly
do Alt+F etc to go to these submenus, I can similarly navigate Up/Down or enter
further submenus. For instance, in File, I can go under Open Recent.

3) However I cannot go back to a parent menu/submenu at any stage by using
Left.

   a) If I try to do that from a sub-sub-menu like Open Recent, the whole menu
is exited and the focus goes back to the application wherever it was.

   b) If I try to do that from within a top-level sub-menu like File, I am
brought back to the top-level menu but unable to use Up/Down to navigate
between File, Edit etc as before. Even Esc doesn't enable one to exit the menu.
It is effectively frozen for normal navigation.

   c) Surprisingly, pressing Alt+Tab or Alt+BackTab at this point enables one
to navigate instead. If once we press either of these two then normal
navigation of Up/Down or Esc is restored.

At all points of time, mouse navigation of the menu/submenus works fine AFAICS,
but this doesn't help people like me who are devoted to the keyboard.

For now I'm switching off the in-decoration app menu due this serious usability
problem. Doing so also doesn't seem to awaken all apps immediately to restore
their regular menu bars, but that's a separate problem.

I hope this can be fixed.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Kubuntu Focal
(available in About System)
KDE Plasma Version: 5.18.4.1
KDE Frameworks Version: 5.68.0
Qt Version: 5.12.8

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

[digikam] [Bug 420978] Error on new install Failed to update the database schema from version 9 to version 10

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420978

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Versioning  |Database-Schema
 CC||caulier.gil...@gmail.com
Version|unspecified |6.4.0

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

[plasmashell] [Bug 390177] Upgrade to 5.12 activated window decoration menu button, making in-app menu bars disappear

2020-05-03 Thread Shriramana Sharma
https://bugs.kde.org/show_bug.cgi?id=390177

Shriramana Sharma  changed:

   What|Removed |Added

 CC||samj...@gmail.com

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

[krita] [Bug 420979] New: Big Icons and tabs

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420979

Bug ID: 420979
   Summary: Big Icons and tabs
   Product: krita
   Version: 4.2.9
  Platform: MS Windows
OS: MS Windows
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: Dockers
  Assignee: krita-bugs-n...@kde.org
  Reporter: sailormoon...@gmail.com
  Target Milestone: ---

Created attachment 128123
  --> https://bugs.kde.org/attachment.cgi?id=128123=edit
Like I said the icons and tabs are big and wide and it cannot be resized

SUMMARY
Theres a problem with my workspace they suddenly turn big and wide and it
cannot be resize. I tried to reinstall it but nothing happens.

STEPS TO REPRODUCE
1. 
2. 
3. 

OBSERVED RESULT


EXPECTED RESULT


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

ADDITIONAL INFORMATION

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

[kicker] [Bug 87722] docked gnome applications expands system tray

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=87722

sailormoon...@gmail.com changed:

   What|Removed |Added

 CC||sailormoon...@gmail.com

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

[digikam] [Bug 420978] New: Error on new install Failed to update the database schema from version 9 to version 10

2020-05-03 Thread tami mize
https://bugs.kde.org/show_bug.cgi?id=420978

Bug ID: 420978
   Summary: Error on new install Failed to update the database
schema from version 9 to version 10
   Product: digikam
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Versioning
  Assignee: digikam-bugs-n...@kde.org
  Reporter: tgl...@gmail.com
  Target Milestone: ---

SUMMARY


STEPS TO REPRODUCE
1. Removed previous version
2. downloaded 6.4.0
3. Install appears to run normal and finish.

OBSERVED RESULT
 When opening Digikam get error and program doesn't open

EXPECTED RESULT
Digikam should open!

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

ADDITIONAL INFORMATION

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

[digikam] [Bug 406461] Can't update from V9 to V10

2020-05-03 Thread tami mize
https://bugs.kde.org/show_bug.cgi?id=406461

tami mize  changed:

   What|Removed |Added

 CC||tgl...@gmail.com

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

[systemsettings] [Bug 420975] The "System Settings" > "Startup and Shutdown" > "Autostart" > "Script File" does not get executed.

2020-05-03 Thread remyvrs
https://bugs.kde.org/show_bug.cgi?id=420975

--- Comment #1 from remyvrs  ---
*** Bug 420976 has been marked as a duplicate of this bug. ***

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

[systemsettings] [Bug 420976] The "System Settings" > "Startup and Shutdown" > "Autostart" > "Script File" does not get executed.

2020-05-03 Thread remyvrs
https://bugs.kde.org/show_bug.cgi?id=420976

remyvrs  changed:

   What|Removed |Added

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

--- Comment #1 from remyvrs  ---


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

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

[systemsettings] [Bug 420977] New: Double click on the window's menu icon does not close (as it supposed to)

2020-05-03 Thread remyvrs
https://bugs.kde.org/show_bug.cgi?id=420977

Bug ID: 420977
   Summary: Double click on the window's menu icon does not close
(as it supposed to)
   Product: systemsettings
   Version: 5.18.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: remy...@gmail.com
  Target Milestone: ---

SUMMARY
I have checked ON the "Close windows by double clicking the menu button"
from 
"System Settings" > "Application Style" > "Window Decoration" > "Titlebar
Buttons" form

STEPS TO REPRODUCE

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 5.18.4
KDE Frameworks Version: 5.68.0
Qt Version: Qt 5.12.8 (built against 5.12.8)

ADDITIONAL INFORMATION

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

[Discover] [Bug 420259] Removing a Flatpak source crashes Discover.

2020-05-03 Thread Kott
https://bugs.kde.org/show_bug.cgi?id=420259

Kott  changed:

   What|Removed |Added

 CC||k...@kott.no-ip.biz

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

[systemsettings] [Bug 420976] New: The "System Settings" > "Startup and Shutdown" > "Autostart" > "Script File" does not get executed.

2020-05-03 Thread remyvrs
https://bugs.kde.org/show_bug.cgi?id=420976

Bug ID: 420976
   Summary: The "System Settings" > "Startup and Shutdown" >
"Autostart" > "Script File" does not get executed.
   Product: systemsettings
   Version: 5.18.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: remy...@gmail.com
  Target Milestone: ---

SUMMARY
The "System Settings" > "Startup and Shutdown" > "Autostart" > "Script File"
does not get executed.

STEPS TO REPRODUCE
1. add and executable sh file in the "Script File" section
2. monitor for result 

OBSERVED RESULT
does not get any execution result 

EXPECTED RESULT


SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 5.18.4
KDE Frameworks Version: 5.68.0
Qt Version: Qt 5.12.8 (built against 5.12.8)

ADDITIONAL INFORMATION

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

[systemsettings] [Bug 420975] New: The "System Settings" > "Startup and Shutdown" > "Autostart" > "Script File" does not get executed.

2020-05-03 Thread remyvrs
https://bugs.kde.org/show_bug.cgi?id=420975

Bug ID: 420975
   Summary: The "System Settings" > "Startup and Shutdown" >
"Autostart" > "Script File" does not get executed.
   Product: systemsettings
   Version: 5.18.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: remy...@gmail.com
  Target Milestone: ---

SUMMARY
The "System Settings" > "Startup and Shutdown" > "Autostart" > "Script File"
does not get executed.

STEPS TO REPRODUCE
1. add and executable sh file in the "Script File" section
2. monitor for result 

OBSERVED RESULT
does not get any execution result 

EXPECTED RESULT


SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 5.18.4
KDE Frameworks Version: 5.68.0
Qt Version: Qt 5.12.8 (built against 5.12.8)

ADDITIONAL INFORMATION

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

[kjots] [Bug 420974] Kjots gives a warning about 2 conflicting shortcuts (Bold and Add Bookmark) on start.

2020-05-03 Thread Grymas
https://bugs.kde.org/show_bug.cgi?id=420974

--- Comment #1 from Grymas  ---
Version
kjots -v : 5.0.2
On discover: 4:5.0.2-2build2

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

[Falkon] [Bug 420973] New: Crash while browsing django-bower based site just after authenticating

2020-05-03 Thread Rodrigo Borges
https://bugs.kde.org/show_bug.cgi?id=420973

Bug ID: 420973
   Summary: Crash while browsing django-bower based site just
after authenticating
   Product: Falkon
   Version: 3.1.0
  Platform: openSUSE RPMs
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: now...@gmail.com
  Reporter: rodrigoesbor...@gmail.com
  Target Milestone: ---

Application: falkon (3.1.0)

Qt Version: 5.14.1
Frameworks Version: 5.69.0
Operating System: Linux 4.12.14-318.g9869ead-default x86_64
Windowing system: X11
Distribution: "openSUSE Tumbleweed"

-- Information about the crash:
Had several tabs opened, two of them with the same site, one auth as normal
user/part ; the other one just auth with admin user in admi section

Recently downgraded kernel in order to use GPU HW acceleration features, not
sure if it might be related (don't remember seeing same falkon version crash 
before downgrading)

-- Backtrace:
Application: Falkon (falkon), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f705be46f00 (LWP 8371))]

Thread 30 (Thread 0x7f6fd237d700 (LWP 10580)):
#0  0x7f706285baaa in pthread_cond_timedwait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f7065ee1a86 in  () at /usr/lib64/libQt5WebEngineCore.so.5
#2  0x0594 in  ()
#3  0x186c99b5 in  ()
#4  0x0573 in  ()
#5  0x186c9d9d in  ()
#6  0x in  ()

Thread 29 (Thread 0x7f7031ffb700 (LWP 9006)):
#0  0x7f706285baaa in pthread_cond_timedwait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f7065ee1a86 in  () at /usr/lib64/libQt5WebEngineCore.so.5
#2  0x05ad in  ()
#3  0x142c9d3b in  ()
#4  0x058c in  ()
#5  0x142ca50b in  ()
#6  0x in  ()

Thread 28 (Thread 0x7f7033fff700 (LWP 8461)):
#0  0x7f706af60f59 in syscall () at /lib64/libc.so.6
#1  0x7f706b2da841 in QSemaphore::acquire(int) () at
/usr/lib64/libQt5Core.so.5
#2  0x7f706316a9a4 in  () at /usr/lib64/libQt5Network.so.5
#3  0x7f706b2d8698 in  () at /usr/lib64/libQt5Core.so.5
#4  0x7f7062854efa in start_thread () at /lib64/libpthread.so.0
#5  0x7f706af663bf in clone () at /lib64/libc.so.6

Thread 27 (Thread 0x7f6fd0b7a700 (LWP 8460)):
#0  0x7f706af5bacf in poll () at /lib64/libc.so.6
#1  0x7f706206a9de in g_main_context_poll (priority=,
n_fds=1, fds=0x7f6fb4000b60, timeout=, context=0x7f6fb4030a60)
at ../glib/gmain.c:4346
#2  0x7f706206a9de in g_main_context_iterate
(context=context@entry=0x7f6fb4030a60, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at ../glib/gmain.c:4042
#3  0x7f706206aaff in g_main_context_iteration (context=0x7f6fb4030a60,
may_block=1) at ../glib/gmain.c:4108
#4  0x7f706b504beb in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib64/libQt5Core.so.5
#5  0x7f706b4acb7b in
QEventLoop::exec(QFlags) () at
/usr/lib64/libQt5Core.so.5
#6  0x7f706b2d75ce in QThread::exec() () at /usr/lib64/libQt5Core.so.5
#7  0x7f706b2d8698 in  () at /usr/lib64/libQt5Core.so.5
#8  0x7f7062854efa in start_thread () at /lib64/libpthread.so.0
#9  0x7f706af663bf in clone () at /lib64/libc.so.6

Thread 26 (Thread 0x7f6fd37fe700 (LWP 8433)):
#0  0x7f706285b795 in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f7065ee198c in  () at /usr/lib64/libQt5WebEngineCore.so.5
#2  0x in  ()

Thread 25 (Thread 0x7f6fd3fff700 (LWP 8432)):
#0  0x7f706285baaa in pthread_cond_timedwait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f70530ed3a4 in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#2  0x7f7052ee03d0 in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#3  0x7f7052ee0e22 in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#4  0x7f70530ec57c in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#5  0x7f7062854efa in start_thread () at /lib64/libpthread.so.0
#6  0x7f706af663bf in clone () at /lib64/libc.so.6

Thread 24 (Thread 0x7f6ff4ff9700 (LWP 8431)):
#0  0x7f706285baaa in pthread_cond_timedwait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f70530ed3a4 in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#2  0x7f705315efcc in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#3  0x7f7052ee0ecd in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#4  0x7f70530ec57c in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#5  0x7f7062854efa in start_thread () at /lib64/libpthread.so.0
#6  0x7f706af663bf in clone () at /lib64/libc.so.6

Thread 23 (Thread 0x7f6ff57fa700 (LWP 8430)):
#0  0x7f706285baaa in pthread_cond_timedwait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f70530ed3a4 in  () at /usr/lib64/libnvidia-glcore.so.440.33.01
#2  0x7f705315efcc in  () at 

[kjots] [Bug 420974] New: Kjots gives a warning about 2 conflicting shortcuts (Bold and Add Bookmark) on start.

2020-05-03 Thread Grymas
https://bugs.kde.org/show_bug.cgi?id=420974

Bug ID: 420974
   Summary: Kjots gives a warning about 2 conflicting shortcuts
(Bold and Add Bookmark) on start.
   Product: kjots
   Version: unspecified
  Platform: Kubuntu Packages
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: general
  Assignee: steve...@gmail.com
  Reporter: gry...@protonmail.com
  Target Milestone: ---

SUMMARY
Kjots gives a warning about 2 conflicting shortcuts (Bold and Add Bookmark) on
start, fresh install from Discover.

STEPS TO REPRODUCE
1. Download KJots from discover and run it.

OBSERVED RESULT
Kjots opens an "ambiguous shortcuts" warning :
"There are two actions (Bold, Add Bookmark) that want to use the same shortcut
(Ctrl+B). This is most probably a bug."

The shortcuts in question have not been modified from the original Kubuntu
install as far as I know. Kjots was installed on Discover.

EXPECTED RESULT
Default shortcuts conflicting on a new install seems strange.

SOFTWARE/OS VERSIONS
64-bit
Kernel: 5.4.0-28-generic
KDE Plasma Version: 5.18.4
KDE Frameworks Version: 5.68.0
Qt Version: 5.12.8

ADDITIONAL INFORMATION
The overall install was strange considering the necessary service (Akonadi)
wasn't installed, and after install had trouble starting properly. This wasn't
clear on discover. After akonadi was running however KJots could start and gave
this warning.

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

[gwenview] [Bug 416118] Gwenview freezes or crashes when loading image.

2020-05-03 Thread ariasuni
https://bugs.kde.org/show_bug.cgi?id=416118

ariasuni  changed:

   What|Removed |Added

 CC|pe...@hack-libre.org|

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

[frameworks-kio] [Bug 398446] FUSE-mounted remote locations accessed with a KIO-using app are not visible in non-KDE open/save dialog

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=398446

prettyvani...@posteo.at changed:

   What|Removed |Added

 CC||prettyvani...@posteo.at

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

[plasma-browser-integration] [Bug 415756] Option to disable Google Chrome download bar that automatically appears when download is started

2020-05-03 Thread Blakadder
https://bugs.kde.org/show_bug.cgi?id=415756

Blakadder  changed:

   What|Removed |Added

 CC||argu...@gmail.com

--- Comment #1 from Blakadder  ---
This would be a big improvement over the current way with doubling downloads in
kde notification and downloads bar.

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

[krita] [Bug 420919] Transormation tool should not allow to be used over vector layers, and inform to use transform mask instead

2020-05-03 Thread Tymond
https://bugs.kde.org/show_bug.cgi?id=420919

Tymond  changed:

   What|Removed |Added

 CC||tamtamy.tym...@gmail.com

--- Comment #2 from Tymond  ---
Note: Transform Tool *can* be used for vector tools as long as it's Free
Transform or Perspective Transform.

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

[krita] [Bug 420919] Transormation tool should not allow to be used over vector layers, and inform to use transform mask instead

2020-05-03 Thread vanyossi
https://bugs.kde.org/show_bug.cgi?id=420919

vanyossi  changed:

   What|Removed |Added

Summary|Transormation tool should   |Transormation tool should
   |not allow to be used over   |not allow to be used over
   |vector layers, and inform   |vector layers, and inform
   |to use transforma mask  |to use transform mask
   |instead |instead

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

[krita] [Bug 420919] Transormation tool should not allow to be used over vector layers, and inform to use transforma mask instead

2020-05-03 Thread vanyossi
https://bugs.kde.org/show_bug.cgi?id=420919

vanyossi  changed:

   What|Removed |Added

Summary|Transormations makes my |Transormation tool should
   |object disappear, then  |not allow to be used over
   |reverts the transformation  |vector layers, and inform
   ||to use transforma mask
   ||instead

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

[krita] [Bug 420919] Transormations makes my object disappear, then reverts the transformation

2020-05-03 Thread vanyossi
https://bugs.kde.org/show_bug.cgi?id=420919

vanyossi  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 CC||ghe...@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from vanyossi  ---
You cannot apply the transformation to a vector layer as it is a raster based
operation. Use a transformation mask to make the transformation on the vector
layer, or transform the vector layer into a paint layer before using the
transform tool.

the bug here is that the tool is not informing that it cannot be used over a
vector layer.

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

[dolphin] [Bug 419844] Dolphin crashes when trying to create a file from the right-click menu

2020-05-03 Thread Dashon
https://bugs.kde.org/show_bug.cgi?id=419844

--- Comment #9 from Dashon  ---
It also seems to happen when creating folders and renaming files. Although both
of these happen far less frequently. However they may be related.

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

[kwin] [Bug 420972] New: CRASH after switching window between activities

2020-05-03 Thread Piotr Mierzwinski
https://bugs.kde.org/show_bug.cgi?id=420972

Bug ID: 420972
   Summary: CRASH after switching window between activities
   Product: kwin
   Version: 5.18.4
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kwin-bugs-n...@kde.org
  Reporter: piotr.mierzwin...@gmail.com
  Target Milestone: ---

Created attachment 128122
  --> https://bugs.kde.org/attachment.cgi?id=128122=edit
kwin stack trace

SUMMARY
I for some application (gtk++ 3 based, I suppose) I selected "Show in
Activities" and clicked in other that current. After that KWin crashed. I
wasn't able to report it by integrated application reporting bug despite I got
3 starts (so full report/stack trace) - option was grayed out. I saved only
stack trace into the file, which I attach.
After kwin crashed. All applications was present in one activity (I have
three)m whereas before I had them separated/split in couple activities. Second
thing is. All activities got the same, default wallpaper.

I wasn't able to reproduce issue.

STEPS TO REPRODUCE
1. Create 3 activities
2. open several applications in one of them
3. click in title bar and select "Show in Activities"

OBSERVED RESULT
Crash

EXPECTED RESULT
Application should be moved to selected activity.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: YES
(available in About System)
KDE Plasma Version: 5.18.4
KDE Frameworks Version: 5.69.0
Qt Version: 5.14.2

ADDITIONAL INFORMATION

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

[kdevelop] [Bug 420771] CRASH after try of commit to git repository

2020-05-03 Thread Piotr Mierzwinski
https://bugs.kde.org/show_bug.cgi?id=420771

--- Comment #3 from Piotr Mierzwinski  ---
I suppose KDevelop crashes because of diff plugin issue. I experienced crash
also in case of option: "Show differences".

I experienced this crash in Antergos and KaOS.
KDevelop crashes every time when user try to do Commit or check differences
(using "Show differences" option).

I'm not sure what diff application/library depends KDevelop on, so provide all
what I have installed:
colordiff 1.0.18-2
diffutils 3.7-3
kdiff3 1.8.2-1
libkomparediff2 20.04.0-1
python-patiencediff 0.1.0-1

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

[Discover] [Bug 420971] New: Provide nicer alternative to "No Application back-ends found..." welcome page

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420971

Bug ID: 420971
   Summary: Provide nicer alternative to "No Application back-ends
found..." welcome page
   Product: Discover
   Version: 5.18.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: discover
  Assignee: lei...@leinir.dk
  Reporter: andreas.sturmlech...@gmail.com
CC: aleix...@kde.org
  Target Milestone: ---

Discover is very configurable wrt the backends it can have. However, it does
not provide for the case where none of the type 'application backend' is
available, not through missing dependencies, but choice at build time. Discover
then still has its use for Application Addons, Plasma Addons, and as fwupd
frontend, but the displayed 'welcome' page in serious-warning style is not
helpful to the distribution that may never get an interface to its package
management, or the user who consciously built Discover like that.

It should be possible to flip a switch e.g. WITHOUT_APPLICATION_BACKEND at
build time that makes it clear that lack thereof does not represent a packaging
oversight or missing dependency.

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

[kdenlive] [Bug 420843] Easy Working with clip and offset timestamps

2020-05-03 Thread Michael De La Rue
https://bugs.kde.org/show_bug.cgi?id=420843

--- Comment #4 from Michael De La Rue  ---
If I understand this correctly, markers seems to me to be the right thing - a
property of the original recording.  I've tried to work out how the workflow
would be and I can't work out how I would get to a marker on the main timeline.
 This would definitely be inconvenient.  

Two typical problems we get - 1) Zoom has shown someone other than the
presenter around the time when we do a switchover and have to have multiple
people unmuted 2) a slide has taken too long to load and so the presenter is
talking about it before it's visible

Currently I
1. load a whole MP4 clip from zoom into the project and place it directly in
the timelne
2. navigate to the place where I know there's a problem - identify start and
end
3. create a slideshow clip which covers the correct time period 
4. place the slideshow clip into the timeline at the point which needs
overwritten

a similar procedure happens also for sound glitches.  

Although I can get to a marker in the Clip Monitor I can't work out how to
quickly navigate to a marker in the Project Monitor / main timeline.  

If there was a way to place a marker in a clip and then use that to get to the
location(s) in the main timeline where it's visible then this would be great. 
As it is, it would be nice but wouldn't solve the problem of how to get to the
right point in the timelene to do the next edit.

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

[krusader] [Bug 407102] Single instance not working in root mode

2020-05-03 Thread Toni Asensi Esteve
https://bugs.kde.org/show_bug.cgi?id=407102

Toni Asensi Esteve  changed:

   What|Removed |Added

 Status|CONFIRMED   |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #12 from Toni Asensi Esteve  ---
Hello, I've just performed a test using Kubuntu 20.04 and the latest git
version of Krusader, although the bug is still not seen. 

I utilized a regular user (not root) and executed
$(kf5-config --path libexec)kf5/kdesu -c krusader

I enabled the single instance checkbox in root mode, I closed Krusader, and
opened it again, in my case using the same command:
$(kf5-config --path libexec)kf5/kdesu -c krusader
which I executed several times, but without effects, like it was expected.

Does the problem still happen to you?

P.S. About the state of this bug, to be "confirmed" it has to be confirmed by
other people... ¯\_(ツ)_/¯

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

[kdeplasma-addons] [Bug 410612] Notes widget placed on Plasma panel does not open or it opens and closes itself immediately when no window is open or all windows are minimized

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=410612

jngw2...@tutanota.com changed:

   What|Removed |Added

 CC||jngw2...@tutanota.com

--- Comment #6 from jngw2...@tutanota.com ---

I have tested this on two systems (Manjaro and Neon Unstable). This issue only
occurs when no window is in focus. If a window is open and not in focus, this
issue will still occur. You can test this in Plasma Wayland, the sticky notes
widget will not restore focus to a window after being closed.

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

[Discover] [Bug 420938] Discover crashes on start

2020-05-03 Thread Michele
https://bugs.kde.org/show_bug.cgi?id=420938

Michele  changed:

   What|Removed |Added

 CC||cisa...@gmail.com

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

[gwenview] [Bug 420965] Retard open 10 seconds more or less.

2020-05-03 Thread Wonder
https://bugs.kde.org/show_bug.cgi?id=420965

--- Comment #1 from Wonder  ---
After some others tests I view the problem is when I have vinculate (associate)
son smartphone in kdeconnect (I try with differents smartphones with same
result) if in kdeconnect I don't have any device, gwenview works fine.

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

[dolphin] [Bug 393700] File type editor doesn't respect set order after pressing Apply

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=393700

j...@forestfield.org changed:

   What|Removed |Added

 CC||j...@forestfield.org

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

[kteatime] [Bug 420970] New: My second cup of tea tastes like hot water

2020-05-03 Thread Torbjörn Ferdman
https://bugs.kde.org/show_bug.cgi?id=420970

Bug ID: 420970
   Summary: My second cup of tea tastes like hot water
   Product: kteatime
   Version: 20.04
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: general
  Assignee: k...@hilefoks.org
  Reporter: torbjorn.ferd...@gmail.com
  Target Milestone: ---

Created attachment 128121
  --> https://bugs.kde.org/attachment.cgi?id=128121=edit
Software claims the second cup of tea is ready when it actually tastes like hot
water

SUMMARY
Just love this software and to get a perfect cup of tea. The problem is that
when I make my first cup of tea, everything works just fine, but when I then
try to make my second cup something goes wrong: The timer seems to start again
as you can stop and pause it, but the exclamation mark remains and you can not
check the remaining time. When you hover over the exclamation mark you get the
message Green tea is already ready (in Swedish on my computer), but that is
definitely not true. However the popup works when the timer is ready. The only
way to get it right is to close the software and start again. Too bad with such
a lovely piece of software.

I am using Xubuntu version 18.04 -> xcfe

STEPS TO REPRODUCE
1. Start up the software and start set the timer to get a perfect cup of green
tea -> Everything works fine
2. Start the timer a second time to make another perfect cup of green tea -> a)
Notice how the you can not see the timer counting down when hovering over the
icon in the panel
b) Notice how the icon remains as a exclamation mark.
c) Notice how the timer works and that the popup when green tea is read to
drink. Phew, thats a relief.
3. To make the software recover to make good tea again, close it and start it
cold.

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

[kate] [Bug 420969] New: "Find" input box stops reacting to keyboard after switching to "Replace" mode

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420969

Bug ID: 420969
   Summary: "Find" input box stops reacting to keyboard after
switching to "Replace" mode
   Product: kate
   Version: 20.04.0
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: application
  Assignee: kwrite-bugs-n...@kde.org
  Reporter: gwar...@gmail.com
  Target Milestone: ---

SUMMARY

"Find" input box stops reacting to keyboard input after switching to "Replace"
mode.


STEPS TO REPRODUCE
1. open text document
2. press Ctr+F
3. type something and press Enter to search
4. press Ctrl+R to switch to replace mode
4. text in "Find" input box is selected
4. type something
4. click in "Find" input box
4. type something
4. click in "Replace" input box
4. click back in "Find"
4. type something

OBSERVED RESULT

Content of "Find" input box is not changing/reacting to keyboard.

All is back to normal after switching to "Replace" and back to "Find".

EXPECTED RESULT

Text in "Find" input box looks to be selecte, so I should be able to change
text in it by typing.


SOFTWARE/OS VERSIONS
Linux/KDE Plasma:
(available in About System)
KDE Plasma Version: 5.18.4
KDE Frameworks Version: 5.69.0
Qt Version: 5.14.2

ADDITIONAL INFORMATION

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

[krusader] [Bug 399735] help does not work

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399735

adalbert.hans...@gmx.de changed:

   What|Removed |Added

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

--- Comment #6 from adalbert.hans...@gmx.de ---
(In reply to Toni Asensi Esteve from comment #5)
> In order to try to use what you have already installed in your system: what
> does it happen if you execute
> khelpcenter help:/krusader
> ?

first, khelpcenter was not installed. Then I installed it.

The I followed your advice and invoked it from the command line as

khelpcenter help:/krusader

Then a German version of the Krusader help ("Das Handbuch zu Krusader") opened!
Great!

The terminal showed these lines:

a@w:~$ khelpcenter help:/krusader
kf5.kio.core: Refilling KProtocolInfoFactory cache in the hope to find
"khelpcenter"
kf5.kio.core: Refilling KProtocolInfoFactory cache in the hope to find
"khelpcenter"
kf5.kio.core: Refilling KProtocolInfoFactory cache in the hope to find
"khelpcenter"
kf5.kio.core: Refilling KProtocolInfoFactory cache in the hope to find
"khelpcenter"
kf5.kio.core: Refilling KProtocolInfoFactory cache in the hope to find
"glossentry"
Icon theme "adwaita" not found.
kf5.kservice.services: KServiceTypeTrader: serviceType "QImageIOPlugins" not
found
Icon theme "adwaita" not found.
QWidget::paintEngine: Should no longer be called
QPainter::begin: Paint device returned engine == 0, type: 1
QPainter::translate: Painter not active
QPainter::setClipRect: Painter not active
QPainter::hasClipping: Painter not active
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::drawRects: Painter not active
QPainter::hasClipping: Painter not active
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::drawRects: Painter not active
QPainter::hasClipping: Painter not active
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::hasClipping: Painter not active
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::hasClipping: Painter not active
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::hasClipping: Painter not active
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
a@w:~$ 

Then I closed the help center and started Krusader. Then I could invoke the
Krusader help from Krusader by pressing F1. 

I am completely satisfied with the solution. Thank you for reopening this
age-old case. We can close this issue as resolved! Tahnk you!

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

[kdenlive] [Bug 420968] New: Kdenlive crashes on dezoom

2020-05-03 Thread quentind
https://bugs.kde.org/show_bug.cgi?id=420968

Bug ID: 420968
   Summary: Kdenlive crashes on dezoom
   Product: kdenlive
   Version: 20.04.0
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: User Interface
  Assignee: j...@kdenlive.org
  Reporter: pe...@quentindupont.fr
  Target Milestone: ---

Created attachment 128120
  --> https://bugs.kde.org/attachment.cgi?id=128120=edit
kdenlive file that crashes

SUMMARY


STEPS TO REPRODUCE
1.  Open my file
2. Wait a bit, do some cut, move some tracks
3. Zoom, dezoom

OBSERVED RESULT
Kdenlive crashes

EXPECTED RESULT
Kdenlive crashes

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

ADDITIONAL INFORMATION
Appimage

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

[kwin] [Bug 419235] Plasma + Wayland Alacritty Decoration/Title Bar Has Gap Between Window Unless Maximized/Resized or Moved

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=419235

--- Comment #4 from carbonchauvin...@protonmail.ch ---
(In reply to David Edmundson from comment #2)

I've attached the log file captured via

$ WAYLAND_DEBUG=1 alacritty 2>&1 | tee log.txt

The attached log captures me simply using the window decoration buttons to
maximize and restore the window in order to address the floating titlebar, then
closing the application.

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

[kwin] [Bug 419235] Plasma + Wayland Alacritty Decoration/Title Bar Has Gap Between Window Unless Maximized/Resized or Moved

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=419235

--- Comment #3 from carbonchauvin...@protonmail.ch ---
Created attachment 128119
  --> https://bugs.kde.org/attachment.cgi?id=128119=edit
WAYLAND_DEBUG=1 alacritty

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

[plasmashell] [Bug 356225] Panel moves to wrong screen when external monitor is connected

2020-05-03 Thread Michael Butash
https://bugs.kde.org/show_bug.cgi?id=356225

--- Comment #338 from Michael Butash  ---
@Ken Fallon

If you are having these issues, please describe your hardware and software
environment for video, display, os/dist, drivers, etc.  My issues with kde for
15 years have always been with multi-monitor handling and post-compositing
world, their kwin performance with large frame-buffers.

My systems are all 4-20 core, intel/nvidia, setup for both, always lots of ram,
always lots of ssd.  Hardware is never a problem, the software is, or at least
microcode on the hardware.

I use arch with rolling updates, so I get newer code more often when upgrading.
 Ubuntu and deb dists not so much.  None are ever in sync with each other, so
need to know your hardware + os/distribution, kernel, video drivers, xorg,
desktop environment version, display settings, etc.  

I should probably do the same currently, as every day I wake up and want to
shotgun my desktop out a window.  If we can get a good list of things dev's
want to see, as Ken said, we're happy to help debug this vs. perpetual
frustration for 15 years.

Help us help you please?

I still like KDE better than any other DE's, just if we could fix some of these
things in less than a decade and a half.  I've considered video of how weird it
can be, but hard to record a 11520x2160 framebuffer for folks to review when it
gets weird.

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

[okular] [Bug 420755] Animated scroll transitions should respect global animation speed

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420755

gwar...@gmail.com changed:

   What|Removed |Added

 CC||gwar...@gmail.com

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

[plasmashell] [Bug 356225] Panel moves to wrong screen when external monitor is connected

2020-05-03 Thread Michael Butash
https://bugs.kde.org/show_bug.cgi?id=356225

--- Comment #337 from Michael Butash  ---
It seems like some sort of validation issue between dbus, xrand/kernel, and
being able to keep/switch states of the settings.  Oddly KDE has regressed,
changes oddly, and just does random new crap with each os upgrade.  Some get
better, some get worse.

I suspect dbus that stores (I think) settings is getting corrupted/damaged, and
there isn't enough validation to know it's broken, and/or fix it.

The fact my kde system settings sometimes reverts displays, and sometimes not,
is really disconcerting.  I have verified xrandr during this, and it's just
"changed".  I set it back up, it works again.  Also the fact it reverses my
displays after dmps power-down is weird, as it shows the proper identity of
each display, but is *just* backward, until I unplug/plug my dock back in
again.

With the i915 driver, mine would get even weirder with variable display
resolutions, but even when a pattern was formed as a standard, kde can't seem
to figure out state changes and/or equate them back to dbus/config properly. 
It's more predictable now, but predictably weird/broken.

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

[okular] [Bug 420842] Scrolling with browse tool sticks at first after inertial scrolling implemented

2020-05-03 Thread Michael D
https://bugs.kde.org/show_bug.cgi?id=420842

--- Comment #5 from Michael D  ---
It's not noticeable on Android because the scroll doesn't jump. It feels too
severe to me and doesn't even exist using touch input in okular, as far as I
can tell.

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

[krita] [Bug 419795] Soft proofing doesn't work

2020-05-03 Thread David REVOY
https://bugs.kde.org/show_bug.cgi?id=419795

--- Comment #9 from David REVOY  ---
I tested @Boud; and surprise: this bug looks like it was always around for the
last two years; I started by testing on all 4.2.x I had from 4.2.9 to 4.2.2 and
could reproduce. I went until 4.1 and could still reproduce. Under that, the
appimage had difficulties to run (probably my settings got confused, but I
don't think it's necessary to digg so far in the past :D).

It really affect making a softproof with Ctrl+Y after opening Krita files. (eg.
any Krita files here you can download via "src" link
https://www.peppercarrot.com/en/static6/sources=artworks ). All the
appimage I tried worked with a flat jpg I had around; or when starting a new
document with the background+new layer and a random red stroke.

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

[okular] [Bug 420842] Scrolling with browse tool sticks at first after inertial scrolling implemented

2020-05-03 Thread Keziolio
https://bugs.kde.org/show_bug.cgi?id=420842

--- Comment #4 from Keziolio  ---
This is a QScroller feature almost for sure.

It's one of the configuration parameters that Qt documentation explicitly says
to keep to the "platform optimized" values.

https://doc.qt.io/qt-5/qscrollerproperties.html

You feel it's too severe?

(btw, try it in your phone, it does the same)

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

[konsole] [Bug 420503] konsole 20.04 steals Alt+n switch to tab shorcuts configured on yakuake

2020-05-03 Thread Ricardo J. Barberis
https://bugs.kde.org/show_bug.cgi?id=420503

--- Comment #4 from Ricardo J. Barberis  ---
FWIW, I'm suffering from the same problem.

In the linked bug report (415164) someone suggests replacing yakuake with
'konsole --background-mode' but that's just not the same, either functionally
nor aesthetically.


Operating System: Slackware 14.2+ (-current)
KDE Plasma Version: 5.18.4
KDE Frameworks Version: 5.69.0
Qt Version: 5.13.2
Kernel Version: 5.4.38
OS Type: 64-bit
Processors: 4 × Intel® Core™ i5-4200U CPU @ 1.60GHz
Memory: 7,7 GiB

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

[Spectacle] [Bug 420477] Spectacle hotkey captures do not copy to clipboard

2020-05-03 Thread Antonio
https://bugs.kde.org/show_bug.cgi?id=420477

Antonio  changed:

   What|Removed |Added

 CC||antonio.prc...@gmail.com

--- Comment #3 from Antonio  ---
Just tried to reproduce with Spectacle v20.04.0.
Copy image to clipboard is set. Autosave the image is disabled.

Spectacle not running, press Pint/Meta+Print/Shift+Print/Meta+Shift+Print,
Spectacle window appears and image is in clipboard. Open up KolourPaint,
CTRL+V, screenshot is inserted.

Same when Spectacle is running and the window is somewhere in the background.

@Ted - I'm also on Manjaro, testing branch tho. Did you get the kde
applications update so kde apps are now on v20.04.0?

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

[krusader] [Bug 399735] help does not work

2020-05-03 Thread Toni Asensi Esteve
https://bugs.kde.org/show_bug.cgi?id=399735

Toni Asensi Esteve  changed:

   What|Removed |Added

 CC||toni.ase...@kdemail.net

--- Comment #5 from Toni Asensi Esteve  ---
In order to try to use what you have already installed in your system: what
does it happen if you execute
khelpcenter help:/krusader
?

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

[konsole] [Bug 420503] konsole 20.04 steals Alt+n switch to tab shorcuts configured on yakuake

2020-05-03 Thread Ricardo J. Barberis
https://bugs.kde.org/show_bug.cgi?id=420503

Ricardo J. Barberis  changed:

   What|Removed |Added

 CC||ricardo.barbe...@gmail.com

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

[akregator] [Bug 378513] kontact or akregator crash after close/restart

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=378513

kaesl...@schafmail.de changed:

   What|Removed |Added

 CC||kaesl...@schafmail.de

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

[akregator] [Bug 378513] kontact or akregator crash after close/restart

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=378513

--- Comment #46 from kaesl...@schafmail.de ---
Created attachment 128118
  --> https://bugs.kde.org/attachment.cgi?id=128118=edit
New crash information added by DrKonqi

kontact (5.13.2 (19.12.2)) using Qt 5.13.2

- What I was doing when the application crashed:

opening Kontact after it was closed for a while

-- Backtrace (Reduced):
#7  0x7f0e0482b08c in
Akregator::FrameManager::saveProperties(KConfigGroup&) () from
/lib64/libakregatorprivate.so.5
#8  0x7f0e04927a36 in Akregator::MainWidget::saveProperties(KConfigGroup&)
() from /usr/lib64/qt5/plugins/akregatorpart.so
#9  0x7f0e04921798 in Akregator::Part::saveCrashProperties() () from
/usr/lib64/qt5/plugins/akregatorpart.so
#10 0x7f0eaf26d352 in QObject::event(QEvent*) () from
/lib64/libQt5Core.so.5
#11 0x7f0eafb4de76 in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() from /lib64/libQt5Widgets.so.5

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

[dolphin] [Bug 420966] After tab-completing to a path (or typing a trailing slash) and hitting enter, Dolphin instead navigates to the first suggested subdirectory of that path

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420966

--- Comment #5 from andydecle...@gmail.com ---
Other instances of this kind of suggestion-completion, or of faint text in an
entry, that I have found, and how they're not misleading:

- firefox location bar: text is not faint, and is highlighted, and the full
entry in the list below is highlighted

- falkon location bar: same as firefox

- krunner: same as firefox

- konsole Find tool: faint text "Find..." does not affect behavior or "true"
content of the field at all

- Calligra words font selection entry: text is not faint, and is highlighted

- KDE file dialog: suggestions are not auto-selected; using tab or trailing
slash does not activate the suggestions

I couldn't find any other instances of the UI model used here (faint,
unhighlighted text suggestion, which is auto-activated; nor suggestions which
show as a list below, but don't highlight the auto-activated one).

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

[kwin] [Bug 419235] Plasma + Wayland Alacritty Decoration/Title Bar Has Gap Between Window Unless Maximized/Resized or Moved

2020-05-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=419235

David Edmundson  changed:

   What|Removed |Added

 CC||k...@davidedmundson.co.uk

--- Comment #2 from David Edmundson  ---
Can I have output of "WAYLAND_DEBUG=1 alacritty"

and reproducing this bug

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

[rkward] [Bug 380766] Fixed in git: Setting number of decimal places in precision doesn't work

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=380766

Thomas Friedrichsmeier  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED
 CC||thomas.friedrichsmeier@ruhr
   ||-uni-bochum.de

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

[rkward] [Bug 405386] RKWard Version 0.7.0z+0.7.1+devel1 can't preview Markdown

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=405386

Thomas Friedrichsmeier  changed:

   What|Removed |Added

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

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

[rkward] [Bug 407225] Startup

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=407225

Thomas Friedrichsmeier  changed:

   What|Removed |Added

 CC||thomas.friedrichsmeier@ruhr
   ||-uni-bochum.de
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #1 from Thomas Friedrichsmeier 
 ---
Thanks for reporting!

I used to see this problem on Windows, myself, occasionally, but have not seen
it in quite a while. I assume it to be fixed (by virtue of using a more recent
version of Qt). Should you see it again, with RKWard 0.7.1 or later, please
open a new ticket.

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

[rkward] [Bug 406757] Bug in first start

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=406757

Thomas Friedrichsmeier  changed:

   What|Removed |Added

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

--- Comment #2 from Thomas Friedrichsmeier 
 ---
Still waiting for the info requested in comment #1. Without that, there is not
really anything I can do about this issue.

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

[gwenview] [Bug 420967] New: DNG files not displayed as thumbnails and cannot be opened

2020-05-03 Thread Henry Law
https://bugs.kde.org/show_bug.cgi?id=420967

Bug ID: 420967
   Summary: DNG files not displayed as thumbnails and cannot be
opened
   Product: gwenview
   Version: 19.12.3
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: gwenview-bugs-n...@kde.org
  Reporter: henry...@gmail.com
  Target Milestone: ---

SUMMARY

DNG images from Leica M9 no displayed as thumbnails and display error message
on attempt to view.

STEPS TO REPRODUCE
1. Open folder with DNG images
2. Attempt to view
3. 

OBSERVED RESULT

Grey rectangle with red circle and diagonal bar instead of thumbnail.
Loading '*.dng' failed.
Loading meta information failed.

EXPECTED RESULT
Thumbnail displayed, image could be viewed.


SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: Ubuntu 20.04 (new installation) running gdm3 with LXDE
desktop
(available in About System)
KDE Plasma Version: meta-kde (5:104ubuntu4) focal
KDE Frameworks Version: 5.68.0 
Qt Version: 5.12.8

Was working previously.


ADDITIONAL INFORMATION

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

[rkward] [Bug 416259] The CVS don't work

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=416259

Thomas Friedrichsmeier  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED
 CC||thomas.friedrichsmeier@ruhr
   ||-uni-bochum.de

--- Comment #1 from Thomas Friedrichsmeier 
 ---
Thanks for reporting!

I used to see this problem on Windows, myself, occasionally, but have not seen
it in quite a while. I assume it to be fixed (by virtue of using a more recent
version of Qt). Should you see it again, with RKWard 0.7.1 or later, please
open a new ticket.

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

[rkward] [Bug 398179] r_engine_has_died: The engine process failed to start with error code -1073741511.

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=398179

Thomas Friedrichsmeier  changed:

   What|Removed |Added

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

--- Comment #2 from Thomas Friedrichsmeier 
 ---
Thanks for reporting!

I used to see this problem on Windows, myself, occasionally, but have not seen
it in quite a while. I assume it to be fixed (by virtue of using a more recent
version of Qt). Should you see it again, with RKWard 0.7.1 or later, please
open a new ticket.

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

[dolphin] [Bug 420966] After tab-completing to a path (or typing a trailing slash) and hitting enter, Dolphin instead navigates to the first suggested subdirectory of that path

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420966

andydecle...@gmail.com changed:

   What|Removed |Added

Summary|After tab-completing to a   |After tab-completing to a
   |path and hitting enter, |path (or typing a trailing
   |Dolphin instead navigates   |slash) and hitting enter,
   |to the first suggested  |Dolphin instead navigates
   |subdirectory of that path   |to the first suggested
   ||subdirectory of that path

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

[rkward] [Bug 378461] Style of focus indicator around active/focused panels

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=378461

Thomas Friedrichsmeier  changed:

   What|Removed |Added

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

--- Comment #12 from Thomas Friedrichsmeier 
 ---
I'm trimming down our list of active bug tickets to something more usable.

The current solution to this issue may not be technically ideal, but I think it
addresses the original problem well enough. If you still hold a grudge against
the focus indicators as used in RKWard 0.7.1 or later, please open a new ticket
for that.

Thanks!

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

[dolphin] [Bug 420966] After tab-completing to a path and hitting enter, Dolphin instead navigates to the first suggested subdirectory of that path

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420966

--- Comment #4 from andydecle...@gmail.com ---
Created attachment 128117
  --> https://bugs.kde.org/attachment.cgi?id=128117=edit
screenshot of misleading entry field

This communicates to me that my cursor is where it's shown to be, that what's
really entered so far is the non-faint text, that the faint text is not truly
entered, and that the state (or what will happen when I hit enter) differs from
one with all that faint text made non-faint. But that is all or mostly
effectively false in the current behavior.

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

[rkward] [Bug 395407] RKward shows the error message after clean start.

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=395407

Thomas Friedrichsmeier  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED
 CC||thomas.friedrichsmeier@ruhr
   ||-uni-bochum.de

--- Comment #1 from Thomas Friedrichsmeier 
 ---
Thanks for reporting!

I used to see this problem on Windows, myself, occasionally, but have not seen
it in quite a while. I assume it to be fixed (by virtue of using a more recent
version of Qt). Should you see it again, with RKWard 0.7.1 or later, please
open a new ticket.

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

[rkward] [Bug 384921] FIXED in git: assignment of an object not possible

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=384921

Thomas Friedrichsmeier  changed:

   What|Removed |Added

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

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

[dolphin] [Bug 420966] After tab-completing to a path and hitting enter, Dolphin instead navigates to the first suggested subdirectory of that path

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420966

--- Comment #3 from andydecle...@gmail.com ---
I suppose then you'll tell me to also not type any final `/`s. That may be a
workaround, but IMO the new behavior is still incorrect and an unwelcome
change.

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

[rkward] [Bug 396691] on line search Crashed RKward

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=396691

Thomas Friedrichsmeier  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|CONFIRMED   |NEEDSINFO

--- Comment #3 from Thomas Friedrichsmeier 
 ---
Do you still see this issue with a more recently build of RKWard on Windows?
Esp. with RKWard 0.7.1?

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

[konversation] [Bug 411070] Konversation rejoins all chans

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=411070

kde...@mailnesia.com changed:

   What|Removed |Added

 CC||kde...@mailnesia.com

--- Comment #1 from kde...@mailnesia.com ---
Its kinda hard to figure out how this stuff is supposed to work if you use ZNC
’sticky chans’. It is a mystery to me...

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

[rkward] [Bug 414430] Moving Items to wastebin does not work

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=414430

Thomas Friedrichsmeier  changed:

   What|Removed |Added

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

--- Comment #2 from Thomas Friedrichsmeier 
 ---
Closing the ticket, as the underlying issue is fixed.

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

[rkward] [Bug 403689] RKWard crashes on startup

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=403689

Thomas Friedrichsmeier  changed:

   What|Removed |Added

 CC||thomas.friedrichsmeier@ruhr
   ||-uni-bochum.de
 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG

--- Comment #1 from Thomas Friedrichsmeier 
 ---
If this is still an issue: You will need to recompile RKWard for the newly
installed version of R. For Ubuntu, compiled packages for use with the most
recent version of R exist at
https://launchpad.net/~rkward-devel/+archive/ubuntu/rkward-stable-cran .

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

[dolphin] [Bug 420966] After tab-completing to a path and hitting enter, Dolphin instead navigates to the first suggested subdirectory of that path

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420966

--- Comment #2 from andydecle...@gmail.com ---
(In reply to JanKusanagi from comment #1)
> Just don't hit TAB, enter a few letters + enter, directly.

It is actually not necessary to hit TAB to trigger this bug. In the already
attached video demo, I am not using TAB when trying to navigate to ~/.

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

[konversation] [Bug 340857] Cannot connect to TLS v1.2 server

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=340857

kde...@mailnesia.com changed:

   What|Removed |Added

   Version Fixed In||1.7

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

[okular] [Bug 330364] presentation window raises upon gaining focus, does not obey window manager settings

2020-05-03 Thread Cristian Tibirna
https://bugs.kde.org/show_bug.cgi?id=330364

--- Comment #1 from Cristian Tibirna  ---
Still reproducible 6 years later.

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

[konversation] [Bug 340857] Cannot connect to TLS v1.2 server

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=340857

--- Comment #9 from kde...@mailnesia.com ---
(In reply to Andrew Crouthamel from comment #6)
> Could you help us out and re-test if the bug is valid in the latest version?  

it is gone in my May of 2020 report on Konvi 1.7 consider it FIXED

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

[dolphin] [Bug 420966] After tab-completing to a path and hitting enter, Dolphin instead navigates to the first suggested subdirectory of that path

2020-05-03 Thread JanKusanagi
https://bugs.kde.org/show_bug.cgi?id=420966

JanKusanagi  changed:

   What|Removed |Added

 CC||jan-b...@gmx.co.uk

--- Comment #1 from JanKusanagi  ---
Just don't hit TAB, enter a few letters + enter, directly.

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

[rkward] [Bug 380731] Don't auto-complete df$VAR to df[["VAR"]]

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=380731

Thomas Friedrichsmeier  changed:

   What|Removed |Added

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

--- Comment #3 from Thomas Friedrichsmeier 
 ---
Addressed for the script editor window in RKWard 0.7.1, and for the console in
the current development version.

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

[rkward] [Bug 414429] Speed up R Markdown preview (or make it seem faster)

2020-05-03 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=414429

Thomas Friedrichsmeier  changed:

   What|Removed |Added

   Severity|normal  |wishlist
Summary|Windows: Crash on startup:  |Speed up R Markdown preview
   |"Fatal Error: unable to |(or make it seem faster)
   |initialise the JIT" |

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

[konversation] [Bug 340857] Cannot connect to TLS v1.2 server

2020-05-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=340857

kde...@mailnesia.com changed:

   What|Removed |Added

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

--- Comment #8 from kde...@mailnesia.com ---
(In reply to João Eiras from comment #3)
>  irc.opera.com:6697 , secure connection enabled.

> The server supports tls1.2. When connecting to it, the server window will
> display "You are connected to irc-ams.opera.com with
> SSLv3-AES256-SHA-256bits". That is wrong, TLSv1.2 should be preferred.

with Konversation Version 1.7-master #5112 compiled from sources

I get:

-irc-ams.opera.com- *** You are connected to irc-ams.opera.com with
TLSv1.2-AES256-GCM-SHA384-256bits

TLS 1.2 as should be OK. seems the bug is gone. Ubuntu 20.04 focal with ZFS /

I put it to fixed in v1.7

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

  1   2   3   >