[systemsettings] [Bug 475854] There are 2 Window Decoration elements in Apperance

2023-10-19 Thread Antonio Rojas
https://bugs.kde.org/show_bug.cgi?id=475854

Antonio Rojas  changed:

   What|Removed |Added

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

--- Comment #1 from Antonio Rojas  ---
Crash is in the deepin style, please report this to deepin.

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

[Tokodon] [Bug 475370] Tokodon doesn't remember Window position or Size

2023-10-19 Thread Ikel Atomig
https://bugs.kde.org/show_bug.cgi?id=475370

--- Comment #5 from Ikel Atomig  ---
Created attachment 162441
  --> https://bugs.kde.org/attachment.cgi?id=162441=edit
A picture of Tokodon overflowing on startup

Just wanna make sure that you understand clearly. Whenever I open tokodon it
overflows like in the above image.

But it doesn't overflow when I change the system fonts to others such as Droid
Sans. If change the font and reopen tokodon. It doesn't overflow and is within
the screen.

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

[kdenlive] [Bug 475205] [UX/Perf] : UI freezes when handling big projects / adding lots of clips in the resource folder

2023-10-19 Thread Benoît Tarrade
https://bugs.kde.org/show_bug.cgi?id=475205

--- Comment #6 from Benoît Tarrade  ---
[And I cannot edit the later comment comment ... Damn it!]

So I was saying : 
In `documentchecker.cpp::hasErrorInProject()` with my dataset :

```

// Note, I renamed some steps so that the function is easier to understand, you
know, usual stuff :-)
Starting project checking process - Playlist checks"
* 6 ms

"Validating document producers"
* 65s

Validating document chains
* 22s

Checking luma files
* 6.5ms

Checking for missing transitions
* 6.4 ms

Checking for missing filter assets
* 6.8 ms

Checking for missing effects
* 6.4 ms
```

So, while the overall time is around 1 and half minute and might probably be
shortened, that's not where the full 4 minutes of project loading are coming
alone.
There might be other stuff happening here and there, I'll continue looking but
there is something going on here.

Also, I think you very well know how to do it but I strongly advocate to have
this kind of instrumented code in the codebase :
```
#include 

#define DECL_STOPWATCH(varname) \
std::chrono::_V2::system_clock::time_point varname;

#define STOPWATCH_TIME_NOW(stopwatch) \
stopwatch = std::chrono::system_clock::now();

#define LOG_DURATION(start,end) \
/* Convert Nanoseconds to seconds  */\
std::cout << "elapsed time: " << (end-start).count() / 10 << "s" <<
std::endl;

#define LOG(msg)\
std::cout << QFileInfo(__FILE__).baseName().toStdString()   \
  << "::" << __func__ <<"():line"   \
  << __LINE__ << ": " << msg << std::endl;




// And later in the code : 
DECL_STOPWATCH(start);
DECL_STOPWATCH(end);

STOPWATCH_TIME_NOW(start);
LOG("Starting project checking process - Playlist checks");
// Some heavy process to be measured
// ...
// ...

STOPWATCH_TIME_NOW(end);
LOG_DURATION(start, end);
```
Note that this is a naive monothreaded implementation, multithreaded impl would
be a tad bit trickier, involving multithreaded logs in the loop, but the idea
remains the same.

And this can be easily be disabled on releases builds with a conditional macro
like this :
```
#ifdef PERF_MONITORING
#define DECL_STOPWATCH(varname) \
blahblahblah
// ... Other macros

#else
// Do nothing macro ! 
#define DECL_STOPWATCH(varname) ()
// Variables are not even declared, so this is transparent to the final code

#endif // End of PERF_MONITORING macros.
```


# About logging 
[I have no lessons to give to anyone, I'm a software dev just like you and here
are a few personal thoughts about our common endeavour, I am not trying to rub
anyone the wrong way ^^ ]

There are tools here and there in kdenlive to perform some logging, albeit most
of the logs you see in the console is actually performed via qDebug.
I believe this is a hot topic in Kdenlive dev community (I can't see why it
wouldn't be!), it's probably due to a lack of resources and so much things to
work on already, pushing new features, etc...
However I believe having a proper logging system (and a bit enforced, be it
through macros to increase performances, or switches to enable/disable logging
systems if perfs are really an issue) is key for kdenlive stability.
In my opinion, Perf logging is really important, as well as error cases.
Logs should be filtered as well based on their criticality, etc... 
In our software industry, we always welcome detailed logs that actually tells
you what's going on before you even open the codebase :)

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

[kdenlive] [Bug 475205] [UX/Perf] : UI freezes when handling big projects / adding lots of clips in the resource folder

2023-10-19 Thread Benoît Tarrade
https://bugs.kde.org/show_bug.cgi?id=475205

--- Comment #5 from Benoît Tarrade  ---
Yo team guys !
I'm spamming again, I've done some testing and finally had the time to try the
stopwatches.

Here are my findings so far around the `documentchecker.cpp`  file, in  the
`hasError

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

[krita] [Bug 466840] Using the Move tool or the Transform tool on a cloned frame unlinks it from its source

2023-10-19 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=466840

Bug Janitor Service  changed:

   What|Removed |Added

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

--- Comment #3 from Bug Janitor Service  ---
Thanks for your comment!

Automatically switching the status of this bug to REPORTED so that the KDE team
knows that the bug is ready to get confirmed.

In the future you may also do this yourself when providing needed information.

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

[plasmashell] [Bug 474630] Battery plasmoid could fail to report current power profile

2023-10-19 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=474630

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.

[Spectacle] [Bug 472401] Spectacle crashed in SelectedActionWrapper::setEditAction() when I presed PrintScreen after successfully copying to the clipboard a previous screenshot

2023-10-19 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=472401

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- 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.

[krita] [Bug 475862] New: software crashes for unknown reasons

2023-10-19 Thread steve
https://bugs.kde.org/show_bug.cgi?id=475862

Bug ID: 475862
   Summary: software crashes for unknown reasons
Classification: Applications
   Product: krita
   Version: 5.2.0
  Platform: Android
OS: Android 13.x
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: * Unknown
  Assignee: krita-bugs-n...@kde.org
  Reporter: 1154117...@qq.com
  Target Milestone: ---

** Dumping backtrace **
Signal: 11 (SIGSEGV) (Code: 1) Time: Fri Oct 20 02:28:00 2023 GMT Version:
5.2.0
  #00 pc 0015c100 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libQt5Gui_arm64-v8a.so

** Dumping backtrace **
Signal: 11 (SIGSEGV) (Code: 1) Time: Fri Oct 20 02:30:00 2023 GMT Version:
5.2.0
  #00 pc 003f4914 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libQt5Core_arm64-v8a.so
(QCoreApplication::notifyInternal2(QObject*, QEvent*)+136)
  #01 pc 0042c474 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libQt5Core_arm64-v8a.so
(QTimerInfoList::activateTimers()+572)
  #02 pc 0042ab44 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libQt5Core_arm64-v8a.so
(QEventDispatcherUNIX::processEvents(QFlags)+424)
  #03 pc 0007f804 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libplugins_platforms_qtforandroid_arm64-v8a.so

** Dumping backtrace **
Signal: 7 (SIGBUS) (Code: 1) Time: Fri Oct 20 02:30:32 2023 GMT Version: 5.2.0
  #00 pc 003f4914 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libQt5Core_arm64-v8a.so
(QCoreApplication::notifyInternal2(QObject*, QEvent*)+136)
  #01 pc 0042c474 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libQt5Core_arm64-v8a.so
(QTimerInfoList::activateTimers()+572)
  #02 pc 0042ab44 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libQt5Core_arm64-v8a.so
(QEventDispatcherUNIX::processEvents(QFlags)+424)
  #03 pc 0007f804 
/data/app/~~obQDMvztMcjixa3AsJbkyQ==/org.krita-ijV2kUrxuRITlSVK4GPy8Q==/lib/arm64/libplugins_platforms_qtforandroid_arm64-v8a.so

** Dumping backtrace **
Signal: 11 (SIGSEGV) (Code: 2) Time: Fri Oct 20 02:32:22 2023 GMT Version:
5.2.0
  #00 pc 00392640  [anon:libc_malloc]

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

[plasma-mobile] [Bug 475861] qtvirtualkeyboard keyboard gitches

2023-10-19 Thread idoitprone
https://bugs.kde.org/show_bug.cgi?id=475861

--- Comment #1 from idoitprone  ---
I was attempting to reproduce this bug, but my behavior is different.
https://bugs.kde.org/show_bug.cgi?id=472074

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

[plasma-mobile] [Bug 475861] New: qtvirtualkeyboard keyboard gitches

2023-10-19 Thread idoitprone
https://bugs.kde.org/show_bug.cgi?id=475861

Bug ID: 475861
   Summary: qtvirtualkeyboard keyboard gitches
Classification: Plasma
   Product: plasma-mobile
   Version: unspecified
  Platform: openSUSE
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Shell
  Assignee: plasma-mobile-bugs-n...@kde.org
  Reporter: monkeyboy...@yahoo.com
CC: c...@carlschwan.eu
  Target Milestone: ---

Created attachment 162440
  --> https://bugs.kde.org/attachment.cgi?id=162440=edit
QT_IM_MODULE=qtvirtualkeyboard systemsettings

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***


STEPS TO REPRODUCE
1. QT_IM_MODULE=qtvirtualkeyboard systemsettings
2. 
3. 

OBSERVED RESULT

The keyboard is quite gitchy. The keyboard animates in and out. I only tested
plasma wayland

 QT_IM_MODULE=qtvirtualkeyboard systemsettings
qt.qpa.wayland: qtvirtualkeyboard currently is not supported at client-side,
use QT_IM_MODULE=qtvirtualkeyboard at compositor-side.
Using fontconfig file: "/home/doof/.fonts.conf"
kf.coreaddons: "Could not load plugin6.5.6-1-default (64-bit) from kcm_fcitx5:
The shared library was not found."
kf.coreaddons: "Could not load plugin from
/usr/share/kservices5/YaST-systemsettings.desktop:
'/usr/share/kservices5/YaST-systemsettings.desktop' is not an ELF object"
kf.coreaddons.desktopparser: Error: Failed to open 
"kcms//usr/share/kservices5/YaST-systemsettings.desktop"
QFileDevice::seek: IODevice is not open
kf.coreaddons: "Could not load plugin from
/home/doof/kcms/usr/share/kservices5/YaST-systemsettings.desktop: The shared
library was not found."
file:///usr/share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/CategoriesPage.qml:57:17:
QML ToolTip: Binding loop detected for property "contentWidth"
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ScrollablePage.qml:200:9: QML
MouseArea: Binding loop detected for property "width"
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ScrollablePage.qml:200:9: QML
MouseArea: Binding loop detected for property "width"
QQmlEngine::setContextForObject(): Object already has a QQmlContext
qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ApplicationItem.qml:106:
ReferenceError: bottomMargin is not defined
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ApplicationItem.qml:106:
ReferenceError: bottomMargin is not defined
qt.virtualkeyboard.hunspell: Hunspell dictionary is missing for "en_GB" .
Search paths ("/usr/share/qt5/qtvirtualkeyboard/hunspell",
"/usr/share/hunspell", "/usr/share/myspell/dicts")
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ApplicationItem.qml:106:
ReferenceError: bottomMargin is not defined
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ApplicationItem.qml:106:
ReferenceError: bottomMargin is not defined
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ApplicationItem.qml:106:
ReferenceError: bottomMargin is not defined
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ApplicationItem.qml:106:
ReferenceError: bottomMargin is not defined
file:///usr/lib64/qt5/qml/org/kde/kirigami.2/ApplicationItem.qml:0:
ReferenceError: bottomMargin is not defined


EXPECTED RESULT
??
I do not know what the intended behavior. My system is set to maliit on default
but I overrode it with qtvirtual keyboard.

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: 6.5.6-1-default (64-bit)
(available in About System)
KDE Plasma Version: 5.27.8/wayland
KDE Frameworks Version: 5.110.0
Qt Version: 5.15.11

> lsb_release -a
LSB Version:n/a
Distributor ID: openSUSE
Description:openSUSE Tumbleweed
Release:20231018
Codename:   n/a

ADDITIONAL INFORMATION
```
Repository priorities in effect:   
   (See 'zypper lr -P' for details)
  90 (raised priority)  :  4 repositories
  99 (default priority) : 10 repositories

#  | Alias| Name   
| Enabled | GPG Check | Refresh | URI
---+--+-+-+---+-+-
 1 | code | Visual Studio Code 
| Yes | (r ) Yes  | No  |
https://packages.microsoft.com/yumrepos/vscode
 2 | home_andresbs_plasma-mobile  | Plasma Mobile Apps
(openSUSE_Tumbleweed)| Yes | (r ) Yes  | No  |
https://download.opensuse.org/repositories/home:/andresbs:/plasma-mobile/openSUSE_Tumbleweed/
 3 | home_andresbs_plasma-mobile_extra| Additional Plasma 

[krita] [Bug 475860] New: Quick-ungrouping a group with a mask may lead to data loss

2023-10-19 Thread paleh
https://bugs.kde.org/show_bug.cgi?id=475860

Bug ID: 475860
   Summary: Quick-ungrouping a group with a mask may lead to data
loss
Classification: Applications
   Product: krita
   Version: 5.2.0
  Platform: Ubuntu
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Layer Stack
  Assignee: krita-bugs-n...@kde.org
  Reporter: paleh21...@proton.me
  Target Milestone: ---

SUMMARY
When ungrouping a group containing any mask (except a selection mask) the
layers located below the mask are correctly ungrouped, whereas the mask and the
all layers above are deleted.  Undoing this operation doesn't bring the mask
back, leading to a potential data loss. 


STEPS TO REPRODUCE
1. Create a group with at least one layer 
2. Create a mask (e.g. a transparency mask) inside the group, and place it
below a layer. The mask should be applied to the group itself, not the layer.   
3. Execute some operations on the mask (e.g. draw some strokes if it's a
transparency) 
4. Right click the group layer and do Group->Quick Ungroup
5. Press undo.
6. Press undo.

OBSERVED RESULT
After step 4, the layers above the mask have disappeared.
After step 5, the group is back, but it no longer contains the mask.
After step 6, which should undo the last operation done in step 3, nothing
happens, as there is no mask to apply the change to. If the user can undo until
step 1, then pressing "redo" enough times will bring the mask and all the work
back. However if the undo stack has been exceeded, all the work done in step 3
will be lost.

EXPECTED RESULT
When ungrouping, layers above the mask should not get lost.
Masks should be at least recoverable through undo and, ideally, available after
the ungrouping. For example filter and transparency mask could get converted to
filter and transparency layers (maybe this should happen whenever a mask is
created/dragged inside a group layer?). Alternatively, ungrouping could just
push the regular layers outside the group while keeping the group layer as the
container for the masks, if they are present.

SOFTWARE/OS VERSIONS
Linux: Ubuntu 22.04
Qt Version: 5.15.7

ADDITIONAL INFORMATION
also present in 5.1.5

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

[tellico] [Bug 475859] IMDB no longer retrieves TV episodes

2023-10-19 Thread Robby Stephenson
https://bugs.kde.org/show_bug.cgi?id=475859

Robby Stephenson  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED

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

[tellico] [Bug 475859] New: IMDB no longer retrieves TV episodes

2023-10-19 Thread Robby Stephenson
https://bugs.kde.org/show_bug.cgi?id=475859

Bug ID: 475859
   Summary: IMDB no longer retrieves TV episodes
Classification: Applications
   Product: tellico
   Version: 3.5.1
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: ro...@periapsis.org
  Reporter: ro...@periapsis.org
  Target Milestone: ---

The IMDB fetcher doesn't work for TV episodes. Need to update the code.

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

[lattedock] [Bug 475858] New: Latte Dock crash on startup, Plasma on Wayland, KWayland

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=475858

Bug ID: 475858
   Summary: Latte Dock crash on startup, Plasma on Wayland,
KWayland
Classification: Plasma
   Product: lattedock
   Version: 0.10.8
  Platform: Kubuntu
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: application
  Assignee: mvourla...@gmail.com
  Reporter: bog...@hlevca.com
  Target Milestone: ---

Application: latte-dock (0.10.8)

Qt Version: 5.15.10
Frameworks Version: 5.110.0
Operating System: Linux 6.5.0-9-generic x86_64
Windowing System: Wayland
Distribution: Ubuntu 23.10
DrKonqi: 5.27.8 [KCrashBackend]

-- Information about the crash:
It only happens at startup. When restarted later it works fine.  There was a
misallingment of the menus and  environment variable was set
export QT_WAYLAND_DISABLE_FIXED_POSITIONS=1

The crash can be reproduced every time.

-- Backtrace:
Application: Latte Dock (latte-dock), signal: Segmentation fault

[KCrash Handler]
#4  0x7f9ffc0c684d in KWayland::Client::PlasmaWindowManagement::windows()
const () from /lib/x86_64-linux-gnu/libKF5WaylandClient.so.5
#5  0x5637e326083e in Latte::WindowSystem::WaylandInterface::winIdFor
(this=0x5637e3ade660, appId=..., title=...) at
/software/software/utils/latte-dock/app/wm/waylandinterface.cpp:631
#6  0x5637e32140e5 in Latte::ViewPart::Positioner::updateWaylandId
(this=0x5637e3d49640) at
/software/software/utils/latte-dock/app/view/positioner.cpp:235
#7  0x5637e321e42c in QtPrivate::FunctorCall,
QtPrivate::List<>, void, void (Latte::ViewPart::Positioner::*)()>::call(void
(Latte::ViewPart::Positioner::*)(), Latte::ViewPart::Positioner*, void**)
(f=(void (Latte::ViewPart::Positioner::*)(class Latte::ViewPart::Positioner *
const)) 0x5637e3214022 ,
o=0x5637e3d49640, arg=0x7ffdefdce440) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:152
#8  0x5637e321e1c0 in QtPrivate::FunctionPointer::call, void>(void
(Latte::ViewPart::Positioner::*)(), Latte::ViewPart::Positioner*, void**)
(f=(void (Latte::ViewPart::Positioner::*)(class Latte::ViewPart::Positioner *
const)) 0x5637e3214022 ,
o=0x5637e3d49640, arg=0x7ffdefdce440) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:185
#9  0x5637e321de0f in QtPrivate::QSlotObject, void>::impl(int,
QtPrivate::QSlotObjectBase*, QObject*, void**, bool*) (which=1,
this_=0x5637e3d4c8d0, r=0x5637e3d49640, a=0x7ffdefdce440, ret=0x0) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:418
#10 0x7f9ff9906312 in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#11 0x7f9ff9f470c9 in QWindow::windowTitleChanged(QString const&) () from
/lib/x86_64-linux-gnu/libQt5Gui.so.5
#12 0x5637e322087a in operator() (__closure=0x5637e3d484f0) at
/software/software/utils/latte-dock/app/view/view.cpp:132
#13 0x5637e322bc1b in QtPrivate::FunctorCall,
QtPrivate::List<>, void, Latte::View::View(Plasma::Corona*, QScreen*,
bool):: >::call(struct {...} &, void **) (f=..., arg=0x7ffdefdce690)
at /usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:146
#14 0x5637e322b7f1 in QtPrivate::Functor, 0>::call, void>(struct {...} &,
void *, void **) (f=..., arg=0x7ffdefdce690) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:256
#15 0x5637e322ad46 in
QtPrivate::QFunctorSlotObject, 0, QtPrivate::List<>, void>::impl(int,
QtPrivate::QSlotObjectBase *, QObject *, void **, bool *) (which=1,
this_=0x5637e3d484e0, r=0x5637e3ca6440, a=0x7ffdefdce690, ret=0x0) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:443
#16 0x7f9ff9906312 in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#17 0x7f9ffc171354 in ?? () from
/lib/x86_64-linux-gnu/libKF5PlasmaQuick.so.5
#18 0x5637e311ca68 in Latte::Layout::GenericLayout::addView
(this=0x5637e39a3990, containment=0x5637e3aa6030, forceOnPrimary=false,
explicitScreen=-1, occupied=0x0) at
/software/software/utils/latte-dock/app/layout/genericlayout.cpp:943
#19 0x5637e311b049 in Latte::Layout::GenericLayout::addContainment
(this=0x5637e39a3990, containment=0x5637e3aa6030) at
/software/software/utils/latte-dock/app/layout/genericlayout.cpp:710
#20 0x5637e3129a21 in QtPrivate::FunctorCall,
QtPrivate::List, void, void
(Latte::Layout::GenericLayout::*)(Plasma::Containment*)>::call (f=(void
(Latte::Layout::GenericLayout::*)(class Latte::Layout::GenericLayout * const,
class Plasma::Containment *)) 0x5637e311ae30
,
o=0x5637e39a3990, arg=0x7ffdefdceac0) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:152
#21 0x5637e3129108 in QtPrivate::FunctionPointer::call,
void> (f=(void (Latte::Layout::GenericLayout::*)(class
Latte::Layout::GenericLayout * const, class Plasma::Containment *))
0x5637e311ae30
,
o=0x5637e39a3990, arg=0x7ffdefdceac0) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:185
#22 0x5637e3128009 in 

[kwin] [Bug 467061] XWayland apps have a slightly blurry mouse cursor when using scaling

2023-10-19 Thread Zamundaaa
https://bugs.kde.org/show_bug.cgi?id=467061

Zamundaaa  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 CC||xaver.h...@gmail.com
 Status|CONFIRMED   |RESOLVED

--- Comment #6 from Zamundaaa  ---
This should be fixed in Plasma 6 with
https://invent.kde.org/plasma/plasma-workspace/-/merge_requests/2792

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

[kwin] [Bug 422598] Aurorae window decorations' borders get thick when scaling the screen

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=422598

jonathansharp...@gmail.com changed:

   What|Removed |Added

 CC||jonathansharp...@gmail.com

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

[krita] [Bug 466840] Using the Move tool or the Transform tool on a cloned frame unlinks it from its source

2023-10-19 Thread paleh
https://bugs.kde.org/show_bug.cgi?id=466840

--- Comment #2 from paleh  ---
No, it doesn't happen in 5.2. Bug 466843 can be removed as well.

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

[krita] [Bug 475857] A tela apaga ao aproximar a caneta da mesa digitalizadora e volta ao normal ao tirar ( mouse também ); observação: fica assim, aparentemente, apenas ao se aproximar da tela branca

2023-10-19 Thread Noemi
https://bugs.kde.org/show_bug.cgi?id=475857

Noemi  changed:

   What|Removed |Added

URL||moreiradasilvanoemi@gmail.c
   ||om

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

[krita] [Bug 475857] New: A tela apaga ao aproximar a caneta da mesa digitalizadora e volta ao normal ao tirar ( mouse também ); observação: fica assim, aparentemente, apenas ao se aproximar da tela b

2023-10-19 Thread Noemi
https://bugs.kde.org/show_bug.cgi?id=475857

Bug ID: 475857
   Summary: A tela apaga ao aproximar a caneta da mesa
digitalizadora e volta ao normal ao tirar ( mouse
também ); observação: fica assim, aparentemente,
apenas ao se aproximar da tela branca onde se faz o
desenho.
Classification: Applications
   Product: krita
   Version: 5.2.0
  Platform: Compiled Sources
OS: All
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: CPU Canvas
  Assignee: krita-bugs-n...@kde.org
  Reporter: moreiradasilvano...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***


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.

[systemsettings] [Bug 475856] New: Enhance visibility while dragging icons into titlebar editor

2023-10-19 Thread Andres Betts
https://bugs.kde.org/show_bug.cgi?id=475856

Bug ID: 475856
   Summary: Enhance visibility while dragging icons into titlebar
editor
Classification: Applications
   Product: systemsettings
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: anditosan1...@gmail.com
  Target Milestone: ---

SUMMARY
When users go to the titlebar editor KCM and work on adding or removing buttons
from the titlebar, you drag one of the buttons from the selection area into the
titlebar. However, this becomes more difficult to see when users start the drag
and only the svg icon is being dragged. Seeing that we use just a lineart icon
that is already very thin, the icon can get lost visually while dragging.

This is a perception. The functionality works as expected. However, we show
these icons inside square containers. It would be great if users could drag the
whole thing into the titlebar editor and not just the icon.


STEPS TO REPRODUCE
1. Access Titlebar KCM
2. Drag icon into titlebar

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

[krita] [Bug 475855] New: Two finger tap is not working.

2023-10-19 Thread Karina
https://bugs.kde.org/show_bug.cgi?id=475855

Bug ID: 475855
   Summary: Two finger tap is not working.
Classification: Applications
   Product: krita
   Version: 5.1.5
  Platform: Compiled Sources
OS: Microsoft Windows
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: Resize/Scale Image/Layer
  Assignee: krita-bugs-n...@kde.org
  Reporter: shvetskarina2...@gmail.com
  Target Milestone: ---

Today, without changing anything in the settings, all functions that were
performed with two touches stopped working. Touch presses work, only zoom,
rotate, cancel an action, then what was done with two fingers does not work. I
checked the settings and reset them (I didn’t change anything in the settings
before), restarted the program, but nothing helps, the program does not react
in any way to touching with two fingers or dragging. I look forward to your
response and correction of the error. 
Thank you, 
Best regards, 
Victim.

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

[systemsettings] [Bug 475854] New: There are 2 Window Decoration elements in Apperance

2023-10-19 Thread Ps
https://bugs.kde.org/show_bug.cgi?id=475854

Bug ID: 475854
   Summary: There are 2 Window Decoration elements in Apperance
Classification: Applications
   Product: systemsettings
   Version: 5.27.8
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: psnod...@gmail.com
  Target Milestone: ---

Application: systemsettings (5.27.8)

Qt Version: 5.15.11
Frameworks Version: 5.110.0
Operating System: Linux 6.5.5-1-MANJARO x86_64
Windowing System: Wayland
Distribution: Manjaro Linux
DrKonqi: 5.27.8 [KCrashBackend]

-- Information about the crash:
There are 2 Window Decoration elements in Apperance, and once i click on any of
them system settings crash.

The crash can be reproduced every time.

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

[KCrash Handler]
#4  0x7f83a5839d97 in  () at
/usr/lib/qt/plugins/org.kde.kdecoration2/deepin_chameleon.so
#5  0x7f83a583cdab in  () at
/usr/lib/qt/plugins/org.kde.kdecoration2/deepin_chameleon.so
#6  0x7f83a5b09c8c in  () at
/usr/lib/qt/qml/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so
#7  0x7f83d86a4901 in
QQmlObjectCreator::finalize(QQmlInstantiationInterrupt&) () at
/usr/lib/libQt5Qml.so.5
#8  0x7f83d8650667 in
QQmlIncubatorPrivate::incubate(QQmlInstantiationInterrupt&) () at
/usr/lib/libQt5Qml.so.5
#9  0x7f83d8651016 in QQmlEnginePrivate::incubate(QQmlIncubator&,
QQmlContextData*) () at /usr/lib/libQt5Qml.so.5
#10 0x7f83d7b159c2 in  () at /usr/lib/libQt5QmlModels.so.5
#11 0x7f83d8d00259 in  () at /usr/lib/libQt5Quick.so.5
#12 0x7f83d8cf1c7a in  () at /usr/lib/libQt5Quick.so.5
#13 0x7f83d8cf9aa7 in  () at /usr/lib/libQt5Quick.so.5
#14 0x7f83d8cfea0d in  () at /usr/lib/libQt5Quick.so.5
#15 0x7f83d8cf90b2 in QQuickItemView::modelUpdated(QQmlChangeSet const&,
bool) () at /usr/lib/libQt5Quick.so.5
#16 0x7f83daad06a3 in  () at /usr/lib/libQt5Core.so.5
#17 0x7f83d7ae9a9b in QQmlInstanceModel::modelUpdated(QQmlChangeSet const&,
bool) () at /usr/lib/libQt5QmlModels.so.5
#18 0x7f83d7b0e6cd in  () at /usr/lib/libQt5QmlModels.so.5
#19 0x7f83d7b1134c in  () at /usr/lib/libQt5QmlModels.so.5
#20 0x7f83d7b176cb in QQmlDelegateModel::_q_modelReset() () at
/usr/lib/libQt5QmlModels.so.5
#21 0x7f83d7b1e603 in QQmlDelegateModel::qt_metacall(QMetaObject::Call,
int, void**) () at /usr/lib/libQt5QmlModels.so.5
#22 0x7f83daad011f in  () at /usr/lib/libQt5Core.so.5
#23 0x7f83daa58042 in
QAbstractItemModel::modelReset(QAbstractItemModel::QPrivateSignal) () at
/usr/lib/libQt5Core.so.5
#24 0x7f83daa83f2d in  () at /usr/lib/libQt5Core.so.5
#25 0x7f83daad06a3 in  () at /usr/lib/libQt5Core.so.5
#26 0x7f83daa58042 in
QAbstractItemModel::modelReset(QAbstractItemModel::QPrivateSignal) () at
/usr/lib/libQt5Core.so.5
#27 0x7f83a5d9c753 in  () at
/usr/lib/qt/plugins/kcms/deepin-kcm_kwindecoration.so
#28 0x7f83daac3024 in QObject::event(QEvent*) () at
/usr/lib/libQt5Core.so.5
#29 0x7f83db7788ff in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /usr/lib/libQt5Widgets.so.5
#30 0x7f83daa9b5b8 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() at /usr/lib/libQt5Core.so.5
#31 0x7f83daaa051b in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) () at /usr/lib/libQt5Core.so.5
#32 0x7f83daae6588 in  () at /usr/lib/libQt5Core.so.5
#33 0x7f83d910df19 in  () at /usr/lib/libglib-2.0.so.0
#34 0x7f83d916c2b7 in  () at /usr/lib/libglib-2.0.so.0
#35 0x7f83d910c112 in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#36 0x7f83daaea3cc in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib/libQt5Core.so.5
#37 0x7f83daa9a2c4 in
QEventLoop::exec(QFlags) () at
/usr/lib/libQt5Core.so.5
#38 0x7f83daa9b763 in QCoreApplication::exec() () at
/usr/lib/libQt5Core.so.5
#39 0x564420f93bd9 in  ()
#40 0x7f83da245cd0 in  () at /usr/lib/libc.so.6
#41 0x7f83da245d8a in __libc_start_main () at /usr/lib/libc.so.6
#42 0x564420f94575 in  ()
[Inferior 1 (process 2026) detached]

Reported using DrKonqi

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

[plasmashell] [Bug 475853] New: Panel crashed when configuring it

2023-10-19 Thread Sander Kvenild
https://bugs.kde.org/show_bug.cgi?id=475853

Bug ID: 475853
   Summary: Panel crashed when configuring it
Classification: Plasma
   Product: plasmashell
   Version: 5.27.5
  Platform: Debian stable
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: sanderkven...@gmail.com
CC: k...@davidedmundson.co.uk
  Target Milestone: 1.0

Application: plasmashell (5.27.5)

Qt Version: 5.15.8
Frameworks Version: 5.103.0
Operating System: Linux 6.1.0-13-amd64 x86_64
Windowing System: X11
Distribution: Debian GNU/Linux 12 (bookworm)
DrKonqi: 5.27.5 [CoredumpBackend]

-- Information about the crash:
I accidentally moved the panel to the right side of the display while trying
out different panel sizes. Then I hit configure panel, while Firefox, with a
YouTube video playing, was somehow still on screen while in edit mode. I have
hot corners enabled with a short delay.

The crash does not seem to be reproducible.

-- Backtrace:
Application: Plasma (plasmashell), signal: Segmentation fault

   PID: 1153 (plasmashell)
   UID: 1000 (sander)
   GID: 1000 (sander)
Signal: 11 (SEGV)
 Timestamp: Fri 2023-10-20 00:37:23 CEST (2min 29s ago)
  Command Line: /usr/bin/plasmashell --no-respawn
Executable: /usr/bin/plasmashell
 Control Group:
/user.slice/user-1000.slice/user@1000.service/session.slice/plasma-plasmashell.service
  Unit: user@1000.service
 User Unit: plasma-plasmashell.service
 Slice: user-1000.slice
 Owner UID: 1000 (sander)
   Boot ID: 81181c0389e74f569da0da386faedcc8
Machine ID: 04eb6204f3e14fc2ba933c624b9832e2
  Hostname: sander-komplettpc
   Storage:
/var/lib/systemd/coredump/core.plasmashell.1000.81181c0389e74f569da0da386faedcc8.1153.169775504300.zst
(present)
  Size on Disk: 31.3M
   Message: Process 1153 (plasmashell) of user 1000 dumped core.

Module libsystemd.so.0 from deb systemd-252.17-1~deb12u1.amd64
Module libudev.so.1 from deb systemd-252.17-1~deb12u1.amd64
Stack trace of thread 1153:
#0  0x7ff1990aec24 pthread_sigmask (libc.so.6 + 0x8fc24)
#1  0x7ff19905b1b9 sigprocmask (libc.so.6 + 0x3c1b9)
#2  0x7ff19b5f8e9b _ZN6KCrash15setCrashHandlerEPFviE
(libKF5Crash.so.5 + 0x4e9b)
#3  0x7ff19b5f9b3e _ZN6KCrash19defaultCrashHandlerEi
(libKF5Crash.so.5 + 0x5b3e)
#4  0x7ff19905afd0 n/a (libc.so.6 + 0x3bfd0)
#5  0x7ff19858c546 n/a (libKF5KIOWidgets.so.5 + 0xd9546)
#6  0x7ff19858ae2f _ZN3KIO15FileUndoManager4undoEv
(libKF5KIOWidgets.so.5 + 0xd7e2f)
#7  0x7ff1994e8f4f n/a (libQt5Core.so.5 + 0x2e8f4f)
#8  0x7ff19a15c782 _ZN7QAction9triggeredEb
(libQt5Widgets.so.5 + 0x15c782)
#9  0x7ff19a15f3ab _ZN7QAction8activateENS_11ActionEventE
(libQt5Widgets.so.5 + 0x15f3ab)
#10 0x7ff19a160153
_ZN7QAction11qt_metacallEN11QMetaObject4CallEiPPv (libQt5Widgets.so.5 +
0x160153)
#11 0x7ff19aac6c93 n/a (libQt5Qml.so.5 + 0x2c6c93)
#12 0x7ff19a9a20bd n/a (libQt5Qml.so.5 + 0x1a20bd)
#13 0x7ff19a9a53e0
_ZNK3QV413QObjectMethod12callInternalEPKNS_5ValueES3_i (libQt5Qml.so.5 +
0x1a53e0)
#14 0x7ff19a9a9fde n/a (libQt5Qml.so.5 + 0x1a9fde)
#15 0x7ff1994e8f4f n/a (libQt5Core.so.5 + 0x2e8f4f)
#16 0x7ff19a15c782 _ZN7QAction9triggeredEb
(libQt5Widgets.so.5 + 0x15c782)
#17 0x7ff19a15f3ab _ZN7QAction8activateENS_11ActionEventE
(libQt5Widgets.so.5 + 0x15f3ab)
#18 0x7ff191f728f1 n/a (plasma_appletscript_declarative.so
+ 0x198f1)
#19 0x7ff19a162fae
_ZN19QApplicationPrivate13notify_helperEP7QObjectP6QEvent (libQt5Widgets.so.5 +
0x162fae)
#20 0x7ff1994b16f8
_ZN16QCoreApplication15notifyInternal2EP7QObjectP6QEvent (libQt5Core.so.5 +
0x2b16f8)
#21 0x7ff19b06352f
_ZN19QQuickWindowPrivate15deliverKeyEventEP9QKeyEvent (libQt5Quick.so.5 +
0x26352f)
#22 0x55f7e362d791 n/a (plasmashell + 0x3a791)
#23 0x7ff1999493f5 _ZN7QWindow5eventEP6QEvent
(libQt5Gui.so.5 + 0x1493f5)
#24 0x7ff19a162fae
_ZN19QApplicationPrivate13notify_helperEP7QObjectP6QEvent (libQt5Widgets.so.5 +
0x162fae)
#25 0x7ff1994b16f8
_ZN16QCoreApplication15notifyInternal2EP7QObjectP6QEvent (libQt5Core.so.5 +
0x2b16f8)
#26 0x7ff199939129
_ZN22QGuiApplicationPrivate15processKeyEventEPN29QWindowSystemInterfacePrivate8KeyEventE
(libQt5Gui.so.5 + 0x139129)
#27 0x7ff199911cac

[plasma-mobile] [Bug 462530] Plasma mobile lockscreen does not have an alphanumeric virtual keyboard fallback

2023-10-19 Thread idoitprone
https://bugs.kde.org/show_bug.cgi?id=462530

--- Comment #12 from idoitprone  ---
Created attachment 162439
  --> https://bugs.kde.org/attachment.cgi?id=162439=edit
QT_IM_MODULE=qtvirtualkeyboard /usr/libexec/kscreenlocker_greet --testing

qt.qpa.wayland: qtvirtualkeyboard currently is not supported at client-side,
use QT_IM_MODULE=qtvirtualkeyboard at compositor-side.
Cyclic dependency detected between
"qrc:/org/kde/plasma/private/mobileshell/qml/dataproviders/AudioProvider.qml"
and "qrc:/org/kde/plasma/private/mobileshell/qml/osd/volume/VolumeOSD.qml"
Cyclic dependency detected between
"qrc:/org/kde/plasma/private/mobileshell/qml/dataproviders/AudioProvider.qml"
and "qrc:/org/kde/plasma/private/mobileshell/state/qml/HomeScreenControls.qml"
file:///usr/lib64/qt5/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5:
QML Heading: Binding loop detected for property "verticalAlignment"
No modems available
qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Error: DataSource type expected
Error: DataSource type expected
file:///usr/lib64/qt5/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5:
QML Heading: Binding loop detected for property "verticalAlignment"
file:///usr/share/plasma/look-and-feel/org.kde.plasma.phone/contents/lockscreen/LockScreen.qml:34:
TypeError: Cannot read property 'passwordBar' of null
file:///usr/lib64/qt5/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5:
QML Heading: Binding loop detected for property "verticalAlignment"
Error: DataSource type expected
Error: DataSource type expected
file:///usr/lib64/qt5/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5:
QML Heading: Binding loop detected for property "verticalAlignment"
file:///usr/share/plasma/look-and-feel/org.kde.plasma.phone/contents/lockscreen/LockScreen.qml:34:
TypeError: Cannot read property 'passwordBar' of null
Locked at 1697753509
qml: prompt secret: Password: 
qml: prompt secret: Password: 
Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
qml: prompt secret: Password: 
qml: prompt secret: Password: 
qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
qml: prompt secret: Password: 
qml: prompt secret: Password: 
qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
qml: prompt secret: Password: 

qml: prompt secret: Password: 
qt.virtualkeyboard.hunspell: Hunspell dictionary is missing for "en_GB" .
Search paths ("/usr/share/qt5/qtvirtualkeyboard/hunspell",
"/usr/share/hunspell", "/usr/share/myspell/dicts")
qml: prompt secret: Password: 
qml: prompt secret: Password: 
qml: login failed

org.kde.plasma.pulseaudio: No object for name
"alsa_output.pci-_04_00.1.pro-output-8"
org.kde.plasma.pulseaudio: No object for name
"alsa_output.pci-_04_00.1.pro-output-8"

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

[konsole] [Bug 475687] konsole crashes when changing input methods in ibus-typing-booster

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=475687

ninj...@gmail.com changed:

   What|Removed |Added

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

--- Comment #5 from ninj...@gmail.com ---
Already included on KDE's Qt5 patch collection
(https://community.kde.org/Qt5PatchCollection):

https://invent.kde.org/qt/qt/qtbase/-/commit/b41ede9d67856a605e7ed79d1ce751f80c4fa034

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

[kwalletmanager] [Bug 475852] New: Automate the generation of a GPG key

2023-10-19 Thread Henning
https://bugs.kde.org/show_bug.cgi?id=475852

Bug ID: 475852
   Summary: Automate the generation of a GPG key
Classification: Applications
   Product: kwalletmanager
   Version: unspecified
  Platform: unspecified
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: va...@kde.org
  Reporter: amanita+kdeb...@mailbox.org
  Target Milestone: ---

I have always used a Blowfish encrypted keystore, simply because it is
nontrivial for a GUI desktop user to create a gpg key.

Its not hard actually, and would improve UX drastically, automating this with
kdialog or something.

Currently I just suppose 90% of users will use Blowfish.

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

[plasma-mobile] [Bug 462530] Plasma mobile lockscreen does not have an alphanumeric virtual keyboard fallback

2023-10-19 Thread idoitprone
https://bugs.kde.org/show_bug.cgi?id=462530

--- Comment #11 from idoitprone  ---
sudo systemctl sddm

# /usr/lib/systemd/system/sddm.service
[Unit]
Description=Simple Desktop Display Manager
Documentation=man:sddm(1) man:sddm.conf(5)
Conflicts=getty@tty1.service
After=systemd-user-sessions.service getty@tty1.service plymouth-quit.service
systemd-logind.service
PartOf=graphical.target
StartLimitIntervalSec=30
StartLimitBurst=2

[Service]
ExecStart=/usr/bin/sddm
ExecStartPre=-/usr/bin/plymouth quit --retain-splash
Restart=always

[Install]
Alias=display-manager.service

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

[plasma-mobile] [Bug 462530] Plasma mobile lockscreen does not have an alphanumeric virtual keyboard fallback

2023-10-19 Thread idoitprone
https://bugs.kde.org/show_bug.cgi?id=462530

--- Comment #10 from idoitprone  ---
Created attachment 162438
  --> https://bugs.kde.org/attachment.cgi?id=162438=edit
sudo libinput list-devices

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

[plasma-mobile] [Bug 462530] Plasma mobile lockscreen does not have an alphanumeric virtual keyboard fallback

2023-10-19 Thread idoitprone
https://bugs.kde.org/show_bug.cgi?id=462530

--- Comment #9 from idoitprone  ---
I forgot I reported it ages ago. I might ask sddm

https://invent.kde.org/teams/plasma-mobile/issues/-/issues/238

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

[konsole] [Bug 475687] konsole crashes when changing input methods in ibus-typing-booster

2023-10-19 Thread Mike FABIAN
https://bugs.kde.org/show_bug.cgi?id=475687

--- Comment #4 from Mike FABIAN  ---
https://codereview.qt-project.org/c/qt/qtbase/+/464846/3/src/gui/platform/unix/qxkbcommon.cpp

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

[konsole] [Bug 475687] konsole crashes when changing input methods in ibus-typing-booster

2023-10-19 Thread Mike FABIAN
https://bugs.kde.org/show_bug.cgi?id=475687

--- Comment #3 from Mike FABIAN  ---
It is a Qt bug actually, this commit fixed it:

$ git show e68a0da0b90
commit e68a0da0b907af7980481a3cf30f6b4b97c06b6e
Author: Alexander Volkov 
Date:   Mon Mar 6 18:10:34 2023 +0300

Avoid crash when keysymToQtKey(keysym, Qt::ControlModifier) is called

For example when Ctrl+Home is sent by virtual keyboard on Wayland.

Pick-to: 6.6 6.5 6.2 5.15
Change-Id: I41f1d2a28c9091efa621d5826a3b9e3e0e481ceb
Reviewed-by: Liang Qi 

diff --git a/src/gui/platform/unix/qxkbcommon.cpp
b/src/gui/platform/unix/qxkbcommon.cpp
index d254aeecdc..162ba90efe 100644
--- a/src/gui/platform/unix/qxkbcommon.cpp
+++ b/src/gui/platform/unix/qxkbcommon.cpp
@@ -731,6 +731,8 @@ xkb_keysym_t QXkbCommon::lookupLatinKeysym(xkb_state
*state, xkb_keycode_t keyco
 {
 xkb_layout_index_t layout;
 xkb_keysym_t sym = XKB_KEY_NoSymbol;
+if (!state)
+return sym;
 xkb_keymap *keymap = xkb_state_get_keymap(state);
 const xkb_layout_index_t layoutCount =
xkb_keymap_num_layouts_for_key(keymap, keycode);
 // Look at user layouts in the order in which they are defined in system

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

[Discover] [Bug 473613] Crash when clicking on checkbox in "update" tab of Discover

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=473613

Nate Graham  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Discover] [Bug 473613] Crash when clicking on checkbox in "update" tab of Discover

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=473613

Nate Graham  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #6 from Nate Graham  ---
Please submit new bug reports for new issues, and also attach a backtrace of
the crash, or else it's useless and we can't do anything with it.

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

[konsole] [Bug 475687] konsole crashes when changing input methods in ibus-typing-booster

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=475687

--- Comment #2 from ninj...@gmail.com ---
Kate and tagainijisho also crash, seems like a bug in Qt's IBus support?

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

[konsole] [Bug 475687] konsole crashes when changing input methods in ibus-typing-booster

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=475687

ninj...@gmail.com changed:

   What|Removed |Added

 CC||ninj...@gmail.com

--- Comment #1 from ninj...@gmail.com ---
Repro pressing Ctrl+KP_Right:

#0  0x7f3275dc1e40 in xkb_state_get_keymap () from
/usr/lib64/libxkbcommon.so.0
#1  0x7f3274b6c9f0 in QXkbCommon::lookupLatinKeysym (state=state@entry=0x0,
keycode=keycode@entry=0)
at
/usr/src/debug/dev-qt/qtgui-5.15.8-r3/qtbase-everywhere-src-5.15.8/src/platformsupport/input/xkbcommon/qxkbcommon.cpp:758
#2  0x7f3274b6d501 in QXkbCommon::keysymToQtKey (hyperAsMeta=false,
superAsMeta=false, code=0, state=0x0, modifiers=..., keysym=65432)
at
/usr/src/debug/dev-qt/qtgui-5.15.8-r3/qtbase-everywhere-src-5.15.8/src/platformsupport/input/xkbcommon/qxkbcommon.cpp:528
#3  QXkbCommon::keysymToQtKey (keysym=65432, modifiers=...) at
/usr/src/debug/dev-qt/qtgui-5.15.8-r3/qtbase-everywhere-src-5.15.8/src/platformsupport/input/xkbcommon/qxkbcommon.cpp:508
#4  0x7f3274b62031 in QIBusPlatformInputContext::forwardKeyEvent
(this=, keyval=65432, keycode=85, state=4)
at
/usr/src/debug/dev-qt/qtgui-5.15.8-r3/qtbase-everywhere-src-5.15.8/src/plugins/platforminputcontexts/ibus/qibusplatforminputcontext.cpp:357
#5  0x7f327a790a78 in ?? () from /usr/lib64/libQt5Core.so.5
#6  0x7f3274b6bd8b in QIBusInputContextProxy::ForwardKeyEvent
(_t3=, _t2=, _t1=, this=) at .moc/moc_qibusinputcontextproxy.cpp:564
#7  QIBusInputContextProxy::qt_static_metacall (_o=0x56224c6fa3c0,
_c=, _id=, _a=0x7ffc98763810) at
.moc/moc_qibusinputcontextproxy.cpp:230
#8  0x7f3274b6c1d3 in QIBusInputContextProxy::qt_metacall
(this=0x56224c6fa3c0, _c=QMetaObject::InvokeMetaMethod, _id=6,
_a=0x7ffc98763810) at .moc/moc_qibusinputcontextproxy.cpp:512
#9  0x7f327943379c in ?? () from /usr/lib64/libQt5DBus.so.5
#10 0x7f327a78880e in QObject::event(QEvent*) () from
/usr/lib64/libQt5Core.so.5
#11 0x7f327b2865e2 in QApplicationPrivate::notify_helper (this=, receiver=0x56224c6fa3c0, e=0x7f3268010eb0)
at
/usr/src/debug/dev-qt/qtwidgets-5.15.8-r2/qtbase-everywhere-src-5.15.8/src/widgets/kernel/qapplication.cpp:3640
#12 0x7f327a75c138 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() from /usr/lib64/libQt5Core.so.5
#13 0x7f327a75f7a5 in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) () from /usr/lib64/libQt5Core.so.5
#14 0x7f327a7afa93 in ?? () from /usr/lib64/libQt5Core.so.5
#15 0x7f32789075cb in g_main_context_dispatch () from
/usr/lib64/libglib-2.0.so.0
#16 0x7f3278907868 in ?? () from /usr/lib64/libglib-2.0.so.0
#17 0x7f327890792f in g_main_context_iteration () from
/usr/lib64/libglib-2.0.so.0
#18 0x7f327a7af4e8 in
QEventDispatcherGlib::processEvents(QFlags) ()
from /usr/lib64/libQt5Core.so.5
#19 0x7f327a75aa23 in
QEventLoop::exec(QFlags) () from
/usr/lib64/libQt5Core.so.5
#20 0x7f327a7630cd in QCoreApplication::exec() () from
/usr/lib64/libQt5Core.so.5
#21 0x56224c250482 in ?? ()
#22 0x7f327a0de360 in __libc_start_call_main
(main=main@entry=0x56224c24fce0, argc=argc@entry=1,
argv=argv@entry=0x7ffc98763f68) at ../sysdeps/nptl/libc_start_call_main.h:58
#23 0x7f327a0de420 in __libc_start_main_impl (main=0x56224c24fce0, argc=1,
argv=0x7ffc98763f68, init=, fini=,
rtld_fini=, stack_end=0x7ffc98763f58)
at ../csu/libc-start.c:381
#24 0x56224c250935 in ?? ()

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

[Discover] [Bug 473613] Crash when clicking on checkbox in "update" tab of Discover

2023-10-19 Thread Henning
https://bugs.kde.org/show_bug.cgi?id=473613

Henning  changed:

   What|Removed |Added

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

--- Comment #5 from Henning  ---
uhm, its not crashing in that case, but crashing nonetheless. Using CLI worked
again, Discover crashed.

Poorly I have no log

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

[Discover] [Bug 475851] Rethink the concept of labeling content as "mild, "moderate", and "intense"

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475851

--- Comment #2 from Nate Graham  ---
Created attachment 162437
  --> https://bugs.kde.org/attachment.cgi?id=162437=edit
Is this really intense content?

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

[Discover] [Bug 475851] Rethink the concept of labeling content as "mild, "moderate", and "intense"

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475851

--- Comment #1 from Nate Graham  ---
Created attachment 162436
  --> https://bugs.kde.org/attachment.cgi?id=162436=edit
Is this really mild content?

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

[Discover] [Bug 475851] New: Rethink the concept of labeling content as "mild, "moderate", and "intense"

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475851

Bug ID: 475851
   Summary: Rethink the concept of labeling content as "mild,
"moderate", and "intense"
Classification: Applications
   Product: Discover
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Keywords: usability
  Severity: normal
  Priority: NOR
 Component: discover
  Assignee: plasma-b...@kde.org
  Reporter: n...@kde.org
CC: aleix...@kde.org
  Target Milestone: ---

To me these labels suggest stuff like violence and adult situations. But we use
them just to indicate the highest level of rated content. The results are often
nonsensical. For example "checking for the latest app version" makes the app
say "Mild content", while offering text, audio, or video chat is "Intense
content". I don't think they're very accurate or useful. Maybe we can just
remove them.

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

[kdenlive] [Bug 470456] kdenlive crashes 24% into loading project clips with a segmentation fault

2023-10-19 Thread farid
https://bugs.kde.org/show_bug.cgi?id=470456

farid  changed:

   What|Removed |Added

 CC||snd.no...@gmail.com
 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from farid  ---
This issue has been fixed in latest version. Can you test?

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

[neon] [Bug 475582] libappstream5 is missing from the repositories - Discover depends on libappstream5

2023-10-19 Thread The Feren OS Dev
https://bugs.kde.org/show_bug.cgi?id=475582

The Feren OS Dev  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|REPORTED|RESOLVED

--- Comment #4 from The Feren OS Dev  ---
Ok, this is plain weird - after updating APT cache again, plasma-discover no
longer has a dependency issue, so... I guess it got RESOLVED since...?

Guess I'll just...

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

[Discover] [Bug 448690] Discover's search is slow if you use it immediately after launching the app

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448690

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||6.0
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from Nate Graham  ---
This is fixed for me with Plasma 6.0. Maybe the newer 1.0 version of AppStream
has helped too.

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

[kdenlive] [Bug 474362] Segmentation fault on opening a project

2023-10-19 Thread farid
https://bugs.kde.org/show_bug.cgi?id=474362

farid  changed:

   What|Removed |Added

  Flags||performance+

--- Comment #8 from farid  ---
(In reply to Maksim K. from comment #3)
> Have the same problem with new projects - kdenlive crashes (sometime hangs)
> on startup after some number of open-edit-save-close "cycles" of editing.
> 
> OS: FreeBSD 13.2-RELEASE-p3
> 
> kdenlive-23.08.1 (installed from ports)
> mlt7-7.18.0
> 
> There was not such problem with kdenlive-22.12.0 & mlt7-7.10.0 which I uses
> previously

The recommended MLT version is 7.20.

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

[kdenlive] [Bug 474362] Segmentation fault on opening a project

2023-10-19 Thread farid
https://bugs.kde.org/show_bug.cgi?id=474362

farid  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO
 CC||snd.no...@gmail.com

--- Comment #7 from farid  ---
Are you able to reproduce this issue with latest version?

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

[Discover] [Bug 468792] When uninstalling application label says Downloading

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=468792

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||6.0
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Nate Graham  ---
This is fixed for Plasma 6

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

[Discover] [Bug 445652] /var/lib/PackageKit/offline-update-action file not deleted automatically, causing Discover to always suggest a reboot

2023-10-19 Thread Ovidiu-Florin BOGDAN
https://bugs.kde.org/show_bug.cgi?id=445652

--- Comment #13 from Ovidiu-Florin BOGDAN  ---
I'm not closing it myself since there were more people reporting this besides
me. I'll leave this to the devs to decide.

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

[kdenlive] [Bug 475205] [UX/Perf] : UI freezes when handling big projects / adding lots of clips in the resource folder

2023-10-19 Thread farid
https://bugs.kde.org/show_bug.cgi?id=475205

farid  changed:

   What|Removed |Added

  Flags||performance+

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

[kdenlive] [Bug 416139] Crash on startup running Kdenlive without pulseaudio

2023-10-19 Thread farid
https://bugs.kde.org/show_bug.cgi?id=416139

farid  changed:

   What|Removed |Added

 CC||snd.no...@gmail.com
 Resolution|--- |WAITINGFORINFO
 Status|REOPENED|NEEDSINFO

--- Comment #9 from farid  ---
Can you still reproduce in latest version?

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

[digikam] [Bug 475840] Theme icons and text have gone dark on a dark background

2023-10-19 Thread Leon Loberman
https://bugs.kde.org/show_bug.cgi?id=475840

--- Comment #2 from Leon Loberman  ---
Thanks Maik

Setting that and Icons to Breeze seems to have done the trick. Looking better
now.

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

[Discover] [Bug 445652] /var/lib/PackageKit/offline-update-action file not deleted automatically, causing Discover to always suggest a reboot

2023-10-19 Thread Ovidiu-Florin BOGDAN
https://bugs.kde.org/show_bug.cgi?id=445652

--- Comment #12 from Ovidiu-Florin BOGDAN  ---
I have not experienced this for quite some time now. I have changed laptops and
reinstalled Fedora several times since, with newer versions. IMHO we can close
this.

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

[yakuake] [Bug 475702] Yakuake sticky option does not work (at least as default from its settings)

2023-10-19 Thread Jure Repinc
https://bugs.kde.org/show_bug.cgi?id=475702

Jure Repinc  changed:

   What|Removed |Added

 CC||j...@holodeck1.com

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

[kdenlive] [Bug 450454] Crash when previewing online resource from Freesound

2023-10-19 Thread farid
https://bugs.kde.org/show_bug.cgi?id=450454

farid  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REOPENED|NEEDSINFO
 CC||snd.no...@gmail.com

--- Comment #8 from farid  ---
Can you please try latest appimage version?

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

[digikam] [Bug 379402] Reuse filter settings after adding geolocation information [patch]

2023-10-19 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=379402

--- Comment #16 from Maik Qualmann  ---
Git commit 3eb484deb2307fcdefe2cc157732c0fa25eca0ac by Maik Qualmann.
Committed on 19/10/2023 at 22:52.
Pushed by mqualmann into branch 'master'.

use the cancel button instead of the close button

M  +9-9   
core/dplugins/generic/metadata/geolocationedit/dialog/geolocationedit.cpp
M  +1-1   
core/dplugins/generic/metadata/geolocationedit/dialog/geolocationedit.h

https://invent.kde.org/graphics/digikam/-/commit/3eb484deb2307fcdefe2cc157732c0fa25eca0ac

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

[digikam] [Bug 475840] Theme icons and text have gone dark on a dark background

2023-10-19 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=475840

Maik Qualmann  changed:

   What|Removed |Added

 CC||metzping...@gmail.com

--- Comment #1 from Maik Qualmann  ---
This could be a duplicate of Bug 472083.
Please try to use the Breeze widget style in the digiKam settings under
Miscellaneous->Appearance.

Maik

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

[Tokodon] [Bug 475370] Tokodon doesn't remember Window position or Size

2023-10-19 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=475370

Joshua Goins  changed:

   What|Removed |Added

   Version Fixed In||23.12

--- Comment #4 from Joshua Goins  ---
This will show up in the next major release, 23.12 :)

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

[Discover] [Bug 475849] Unnecessarily long size strings

2023-10-19 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=475849

Bug Janitor Service  changed:

   What|Removed |Added

 Status|REPORTED|ASSIGNED
 Ever confirmed|0   |1

--- Comment #1 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/plasma/discover/-/merge_requests/663

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

[Discover] [Bug 475849] Unnecessarily long size strings

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475849

Nate Graham  changed:

   What|Removed |Added

Summary|Unnecessarily long version  |Unnecessarily long size
   |strings |strings

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

[digikam] [Bug 471269] Application crashes when album contains avif file

2023-10-19 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=471269

--- Comment #16 from Maik Qualmann  ---
We should try to reactivate some SSE optimizations so as not to cause a
significant drop in performance.

Maik

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

[PlasmaTube] [Bug 475850] New: Flatpak build produces permission error on attempt to play video

2023-10-19 Thread geisserml
https://bugs.kde.org/show_bug.cgi?id=475850

Bug ID: 475850
   Summary: Flatpak build produces permission error on attempt to
play video
Classification: Applications
   Product: PlasmaTube
   Version: 23.08.2
  Platform: Flatpak
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: l...@kaidan.im
  Reporter: geisse...@gmail.com
CC: espi...@gmail.com
  Target Milestone: ---

SUMMARY
Video playback doesn't seem to work with the flatpak package.

STEPS TO REPRODUCE
1. flatpak run org.kde.plasmatube 

OBSERVED RESULT
```
qrc:/videoplayer/VideoControls.qml:237:5: QML Dialog: Binding loop detected for
property "implicitHeight"
qrc:/videoplayer/VideoControls.qml:237:5: QML Dialog: Binding loop detected for
property "implicitHeight"
qrc:/components/Sidebar.qml:9:1: QML Sidebar: Binding loop detected for
property "contentHeight"
file:///usr/lib/qml/org/kde/kirigami.2/ScrollablePage.qml:200:9: QML MouseArea:
Binding loop detected for property "implicitHeight"
file:///usr/lib/qml/org/kde/kirigami.2/ScrollablePage.qml:200:9: QML MouseArea:
Binding loop detected for property "implicitHeight"
file:///usr/lib/qml/org/kde/kirigami.2/ContextDrawer.qml:135:9: QML ListView:
Binding loop detected for property "topMargin"
Cannot load libcuda.so.1
file:///usr/lib/qml/org/kde/kirigami.2/ScrollablePage.qml:200:9: QML MouseArea:
Binding loop detected for property "implicitHeight"
file:///usr/lib/qml/org/kde/kirigami.2/ScrollablePage.qml:200:9: QML MouseArea:
Binding loop detected for property "implicitHeight"
[ffmpeg] https: HTTP error 403 Forbidden
Failed to open
https://rr1---sn-h0jeened.googlevideo.com/videoplayback?expire=1697768291=A48xZYawCarA6dsPxpSLiA4=2003%3Ad3%3A8707%3A8d00%3Ada09%3A449b%3Af0f5%3Af44a=o-AMsBeWhw8GNf7Vf9AfKZa8-fiszcpaFgbX6iqjSE5SbE=22=youtube=yes=Xp=31%2C26=sn-h0jeened%2Csn-4g5edndz=au%2Conr=m=1=43=de=1452500=UWF9fwP2hOGM6KMqeeDZP2f71cMrF4Asn_dUsPCosg=1=1=video%2Fmp4=14=yes=501.643=1592541062827497=1697746390=3=24007246=24350018=ANDROID=2316222=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cgcr%2Cspc%2Cvprv%2Csvpuc%2Cmime%2Ccnr%2Cratebypass%2Cdur%2Clmt=AGM4YrMwRQIgPaPMBHnS5cx-qtYTRzPP--3imwGpwfzyvHRdZyZUn9sCIQDH3BaBMySTiCYPVgjjd5pjqUsJ2u9Vv6yqOssRgo1DlQ%3D%3D=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps=AK1ks_kwRgIhAKJka4U50q4PR4bury-4nwBc6OZM4VN4Oml5HAwMNUabAiEAoccVz8MPnNVJ3H8GLcfS9k-U_sdgO4Wc5Gxpu95Yw9k%3D.
[ytdl_hook] ERROR: [generic] None: Unable to download webpage: HTTP Error 403:
Forbidden (caused by ); please report this issue on
 https://github.com/yt-dlp/yt-dlp/issues?q= , filling out the appropriate issue
template. Confirm you are on the latest version using  yt-dlp -U 
[ytdl_hook] youtube-dl failed: unexpected error occurred 
[ffmpeg] https: HTTP error 403 Forbidden
Failed to open
https://rr1---sn-h0jeened.googlevideo.com/videoplayback?expire=1697768291=A48xZYawCarA6dsPxpSLiA4=2003%3Ad3%3A8707%3A8d00%3Ada09%3A449b%3Af0f5%3Af44a=o-AMsBeWhw8GNf7Vf9AfKZa8-fiszcpaFgbX6iqjSE5SbE=22=youtube=yes=Xp=31%2C26=sn-h0jeened%2Csn-4g5edndz=au%2Conr=m=1=43=de=1452500=UWF9fwP2hOGM6KMqeeDZP2f71cMrF4Asn_dUsPCosg=1=1=video%2Fmp4=14=yes=501.643=1592541062827497=1697746390=3=24007246=24350018=ANDROID=2316222=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cgcr%2Cspc%2Cvprv%2Csvpuc%2Cmime%2Ccnr%2Cratebypass%2Cdur%2Clmt=AGM4YrMwRQIgPaPMBHnS5cx-qtYTRzPP--3imwGpwfzyvHRdZyZUn9sCIQDH3BaBMySTiCYPVgjjd5pjqUsJ2u9Vv6yqOssRgo1DlQ%3D%3D=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps=AK1ks_kwRgIhAKJka4U50q4PR4bury-4nwBc6OZM4VN4Oml5HAwMNUabAiEAoccVz8MPnNVJ3H8GLcfS9k-U_sdgO4Wc5Gxpu95Yw9k%3D.
```

EXPECTED RESULT
Working playback

SOFTWARE/OS VERSIONS
Flatpak

ADDITIONAL INFORMATION
Used instance: https://yt.artemislena.eu/

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

[Tokodon] [Bug 475370] Tokodon doesn't remember Window position or Size

2023-10-19 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=475370

Joshua Goins  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/netw
   ||ork/tokodon/-/commit/9faa02
   ||75539b782697372f962619dea50
   ||adec0c8
 Status|ASSIGNED|RESOLVED

--- Comment #3 from Joshua Goins  ---
Git commit 9faa0275539b782697372f962619dea50adec0c8 by Joshua Goins.
Committed on 19/10/2023 at 22:22.
Pushed by redstrate into branch 'master'.

Add support for saving and restoring window size/position

We previously restored the size/position, but there was no way to
actually save it. Now this saves it!

M  +2-0src/CMakeLists.txt
M  +24   -0src/content/ui/Main.qml
M  +10   -4src/main.cpp
A  +36   -0src/utils/windowcontroller.cpp [License: LGPL(v2.0+)]
A  +27   -0src/utils/windowcontroller.h [License: LGPL(v2.0+)]

https://invent.kde.org/network/tokodon/-/commit/9faa0275539b782697372f962619dea50adec0c8

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

[Discover] [Bug 475849] New: Unnecessarily long version strings

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475849

Bug ID: 475849
   Summary: Unnecessarily long version strings
Classification: Applications
   Product: Discover
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Keywords: usability
  Severity: minor
  Priority: NOR
 Component: Flatpak Backend
  Assignee: plasma-b...@kde.org
  Reporter: n...@kde.org
CC: aleix...@kde.org, jgrul...@redhat.com,
trav...@redhat.com
  Target Milestone: ---

For Flatpak apps, Discover shows the download size as well as the
installed-on-disk size. This presents a few issues:
- Most of the time the numbers are similar, or at least not different enough to
meaningfully matter
- It takes up a lot of room on the header, and looks awkward
- It's inconsistent with the PackageKit backend, which doesn't do this even
though the download size also differs from the installed size

So let's consider not showing the download size.

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

[Discover] [Bug 475849] Unnecessarily long version strings

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475849

Nate Graham  changed:

   What|Removed |Added

   Assignee|plasma-b...@kde.org |n...@kde.org

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

[digikam] [Bug 379402] Reuse filter settings after adding geolocation information [patch]

2023-10-19 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=379402

Maik Qualmann  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/grap
   ||hics/digikam/-/commit/930b0
   ||d5df0414e259923ff94387843c9
   ||ecebf102
 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED
   Version Fixed In||8.2.0

--- Comment #15 from Maik Qualmann  ---
Git commit 930b0d5df0414e259923ff94387843c9ecebf102 by Maik Qualmann.
Committed on 19/10/2023 at 22:26.
Pushed by mqualmann into branch 'master'.

same behavior for the Geolocation Editor as the Metadata Editor
- OK button, save geolocation and close
- Apply button, save geolocation and don't close
- Close Button, ignore all changes and close
- Window close ask the user for save geolocation
FIXED-IN: 8.2.0

M  +29   -1   
core/dplugins/generic/metadata/geolocationedit/dialog/geolocationedit.cpp
M  +2-0   
core/dplugins/generic/metadata/geolocationedit/dialog/geolocationedit.h

https://invent.kde.org/graphics/digikam/-/commit/930b0d5df0414e259923ff94387843c9ecebf102

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

[Discover] [Bug 473613] Crash when clicking on checkbox in "update" tab of Discover

2023-10-19 Thread Henning
https://bugs.kde.org/show_bug.cgi?id=473613

Henning  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #4 from Henning  ---
not able to reproduce this, a lot has changed.

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

[Tokodon] [Bug 475370] Tokodon doesn't remember Window position or Size

2023-10-19 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=475370

Bug Janitor Service  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|ASSIGNED

--- Comment #2 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/network/tokodon/-/merge_requests/387

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

[Discover] [Bug 475848] New: Inconsistent UI elements used to open web links and in-app popups

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475848

Bug ID: 475848
   Summary: Inconsistent UI elements used to open web links and
in-app popups
Classification: Applications
   Product: Discover
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Keywords: usability
  Severity: normal
  Priority: NOR
 Component: discover
  Assignee: plasma-b...@kde.org
  Reporter: n...@kde.org
CC: aleix...@kde.org
  Target Milestone: ---

See attached screenshot. The red circled UI elements open links, while the
blue-circled UI elements open in-app popups.

We should make sure that underlined links only open remote URLs in the web
browser, and to open a pop-up in the app, we should use a button of some sort.
Not the reverse.

It makes me sad to say this, because I designed the UI that I'm trashing now,
but I think the inconsistency is a problem and makes it hard to predict what
will happen when any of these things are clicked on.

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

[kwin] [Bug 475847] New: KWin scripts should be able to subscribe to DBus signals

2023-10-19 Thread jade
https://bugs.kde.org/show_bug.cgi?id=475847

Bug ID: 475847
   Summary: KWin scripts should be able to subscribe to DBus
signals
Classification: Plasma
   Product: kwin
   Version: 5.27.8
  Platform: Archlinux
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: scripting
  Assignee: kwin-bugs-n...@kde.org
  Reporter: k...@lfcode.ca
  Target Milestone: ---

SUMMARY
I would like to be able to subscribe to DBus signals from a KWin script, which
seems to not be something that is possible (last time I looked at least).
Alternatively, it could equally be accomplished by being able to create DBus
services from a script, either way would work.

As far as I can tell the current state is that it is hard to send any sort of
programmatic message to an installed KWin script.

The essential use case here is being able to invoke KWin actions from another
application. For example, a use for this would be to raise a window by PID
using a command line tool: you create a script which stays resident in KWin and
then you invoke a DBus service to send a message to the script when you want to
raise the window.

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

[Tokodon] [Bug 474125] Tokodon crash while idle

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=474125

--- Comment #4 from rexbin...@icloud.com ---
Created attachment 162435
  --> https://bugs.kde.org/attachment.cgi?id=162435=edit
New crash information added by DrKonqi

tokodon (23.08.2) using Qt 5.15.11

Seems it has creashed again while idle

-- Backtrace (Reduced):
#11 0x7fb0bf11a015 in QObjectPrivate::connectImpl(QObject const*, int,
QObject const*, void**, QtPrivate::QSlotObjectBase*, Qt::ConnectionType, int
const*, QMetaObject const*) () from /lib64/libQt5Core.so.5
#12 0x7fb0bf11a545 in QObject::connectImpl(QObject const*, void**, QObject
const*, void**, QtPrivate::QSlotObjectBase*, Qt::ConnectionType, int const*,
QMetaObject const*) () from /lib64/libQt5Core.so.5
#13 0x7fb0c0544871 in QNetworkReply::QNetworkReply(QNetworkReplyPrivate&,
QObject*) () from /lib64/libQt5Network.so.5
[...]
#15 0x7fb0c0530cd8 in
QNetworkAccessManager::createRequest(QNetworkAccessManager::Operation,
QNetworkRequest const&, QIODevice*) () from /lib64/libQt5Network.so.5
#16 0x7fb0c052d7e5 in QNetworkAccessManager::get(QNetworkRequest const&) ()
from /lib64/libQt5Network.so.5

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

[Discover] [Bug 475846] New: System/Session bus permissions strings are incomprehensible

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475846

Bug ID: 475846
   Summary: System/Session bus permissions strings are
incomprehensible
Classification: Applications
   Product: Discover
   Version: 5.27.8
  Platform: Other
OS: Linux
Status: REPORTED
  Keywords: usability
  Severity: normal
  Priority: NOR
 Component: Flatpak Backend
  Assignee: plasma-b...@kde.org
  Reporter: n...@kde.org
CC: aleix...@kde.org, jgrul...@redhat.com,
trav...@redhat.com
  Target Milestone: ---

Created attachment 162434
  --> https://bugs.kde.org/attachment.cgi?id=162434=edit
Incomprehensible text

See attached screenshot. No regular user will understand what any of this
means.

I think we have two options here:
- Implement a mapping of known DBus services to user-friendly strings, and
substitute them
- Don't list the specific services at all

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

[digikam] [Bug 471797] DigiKam crashes on startup at 74% on Finding New Files

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471797

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

   What|Removed |Added

   Version Fixed In||8.2.0
 Resolution|DUPLICATE   |FIXED

--- Comment #23 from caulier.gil...@gmail.com ---
Fixed with 471269

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

[digikam] [Bug 471269] Application crashes when album contains avif file

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471269

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

   What|Removed |Added

 Resolution|--- |FIXED
   Version Fixed In||8.2.0
 Status|REPORTED|RESOLVED

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

[Discover] [Bug 475845] New: Progress feedback UI appears on the other side of the app from what you clicked on to make it appear

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475845

Bug ID: 475845
   Summary: Progress feedback UI appears on the other side of the
app from what you clicked on to make it appear
Classification: Applications
   Product: Discover
   Version: 5.27.8
  Platform: Other
OS: Linux
Status: REPORTED
  Keywords: usability
  Severity: normal
  Priority: NOR
 Component: discover
  Assignee: plasma-b...@kde.org
  Reporter: n...@kde.org
CC: aleix...@kde.org
  Target Milestone: ---

When you click the Install or Update buttons, the progress feedback UI appears
in the sidebar. However the feedback UI is in the bottom-left corner while the
buttons you click to make it appear are in the top-right corner!

This makes it easy to miss that it appeared, since your eyes won't be looking
there. The problem becomes more significant the larger the window is.

We should consider moving the progress feedback UI into the top-right corner
somehow, so it appears where you're looking for it.

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

[digikam] [Bug 471269] Application crashes when album contains avif file

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471269

--- Comment #15 from philip_ram...@hotmail.com ---
I'm happy to report that bug report 471797 appears to be resolved in
digiKam-8.2.0-20231019T170231-Win64.exe.

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

[Discover] [Bug 475844] New: Does not find GIMP when searching for "gimp"

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475844

Bug ID: 475844
   Summary: Does not find GIMP when searching for "gimp"
Classification: Applications
   Product: Discover
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Keywords: usability
  Severity: normal
  Priority: NOR
 Component: discover
  Assignee: plasma-b...@kde.org
  Reporter: n...@kde.org
CC: aleix...@kde.org
  Target Milestone: ---

Plasma 6 git master, Wayland.

When searching for "gimp", Discover finds some GIMP plugins but not GIMP. See
attached screenshot.

However `appstreamcli search gimp` finds it, as well as a lot more stuff:

appstreamcli search gimp
Identifier: org.gimp.GIMP.Plugin.Lensfun [addon]
Name: GimpLensfun
Summary: GimpLensfun is a Gimp plugin to correct lens distortion using the
lensfun library and database.
Bundle: flatpak:runtime/org.gimp.GIMP.Plugin.Lensfun/x86_64/2-3.36
Homepage: https://seebk.github.io/GIMP-Lensfun/
---
Identifier: org.gimp.GIMP.Manual [addon]
Name: GIMP User Manual
Summary: GIMP User Manual
Bundle: flatpak:runtime/org.gimp.GIMP.Manual/x86_64/2.10
Homepage: https://gimp.org/
---
Identifier: gimp-data-extras [addon]
Name: Extra files for GIMP
Summary: Patterns, gradients, and other extra files for GIMP
Homepage: https://www.gimp.org/
---
Identifier: org.gimp.GIMP.Plugin.Resynthesizer [addon]
Name: Resynthesizer
Summary: Set of GIMP plug-ins that heal (in-paint), synthesize texture, theme
an image, and more
Bundle: flatpak:runtime/org.gimp.GIMP.Plugin.Resynthesizer/x86_64/2-3.36
Homepage: http://logarithmic.net/pfh/resynthesizer
---
Identifier: org.gimp.GIMP.Plugin.BIMP [addon]
Name: BIMP
Summary: 
  Batch Image Manipulation Program, a GIMP plugin to apply a set of
manipulations to an entire
  group of images!
Bundle: flatpak:runtime/org.gimp.GIMP.Plugin.BIMP/x86_64/2-3.36
Homepage: https://alessandrofrancesconi.it/projects/bimp/
---
Identifier: org.gimp.GIMP.Plugin.Fourier [addon]
Name: Fourier
Summary: A simple GIMP plug-in to do fourier transform on your image.
Bundle: flatpak:runtime/org.gimp.GIMP.Plugin.Fourier/x86_64/2-3.36
Homepage: https://www.lprp.fr/gimp_plugin_en/
---
Identifier: org.gimp.GIMP [desktop-application]
Name: GNU Image Manipulation Program
Summary: Create images and edit photographs
Bundle: flatpak:app/org.gimp.GIMP/x86_64/beta
Homepage: https://www.gimp.org/
Icon: org.gimp.GIMP.png
---
Identifier: org.gimp.GIMP [desktop-application]
Name: GNU Image Manipulation Program
Summary: Create images and edit photographs
Bundle: flatpak:app/org.gimp.GIMP/x86_64/stable
Homepage: https://www.gimp.org/
Icon: org.gimp.GIMP.png
---
Identifier: org.gimp.GIMP [desktop-application]
Name: GNU Image Manipulation Program
Summary: Create images and edit photographs
Homepage: https://www.gimp.org/
Icon: gimp
---
Identifier: org.gimp.GIMP.Plugin.FocusBlur [addon]
Name: FocusBlur
Summary: Focus Blur plug-in crete a blurring effect similar to Depth of Field.
Bundle: flatpak:runtime/org.gimp.GIMP.Plugin.FocusBlur/x86_64/2-3.36
Homepage: https://github.com/JMoerman/gimp-focusblur-plugin
---
Identifier: org.gimp.GIMP.Plugin.GMic [addon]
Name: G'MIC
Summary: GREYC's Magic for Image Computing
Bundle: flatpak:runtime/org.gimp.GIMP.Plugin.GMic/x86_64/2-3.36
Homepage: https://gmic.eu/
---
Identifier: org.gimp.GIMP.Plugin.GMic [addon]
Name: G'MIC
Summary: GREYC's Magic for Image Computing
Bundle: flatpak:runtime/org.gimp.GIMP.Plugin.GMic/x86_64/3
Homepage: https://gmic.eu/
---
Identifier: org.gimp.GIMP.Plugin.LiquidRescale [addon]
Name: LiquidRescale
Summary: 
  LiquidRescale plugin to resize pictures non uniformly while preserving their
features, i.e.
  avoiding distortion of the important parts.
Bundle: flatpak:runtime/org.gimp.GIMP.Plugin.LiquidRescale/x86_64/2-3.36
Homepage: http://liquidrescale.wikidot.com/
---
Identifier: org.glimpse_editor.Glimpse [desktop-application]
Name: Glimpse
Summary: Create images and edit photographs
Bundle: flatpak:app/org.glimpse_editor.Glimpse/x86_64/beta
Homepage: https://glimpse-editor.github.io
Icon: org.glimpse_editor.Glimpse.png
---
Identifier: org.gabmus.swatch [desktop-application]
Name: Swatch
Summary: Color palette manager
Bundle: flatpak:app/org.gabmus.swatch/x86_64/stable
Homepage: https://swatch.gabmus.org
Icon: org.gabmus.swatch.png
---
Identifier: com.github.unrud.djpdf [desktop-application]
Name: Scans to PDF
Summary: Create small, searchable PDFs from scanned documents
Bundle: flatpak:app/com.github.unrud.djpdf/x86_64/stable
Homepage: https://github.com/Unrud/djpdf
Icon: com.github.unrud.djpdf.png

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

[Tokodon] [Bug 474696] Cannot upload images on Todokon, server error: Unprocessable Entity

2023-10-19 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=474696

Joshua Goins  changed:

   What|Removed |Added

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

--- Comment #2 from Joshua Goins  ---
Still waiting for info, and I'm asking around other people who I know use
Tokodon on Android and see if they can reproduce it

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

[Tokodon] [Bug 473787] Accounts do not persist on software restart

2023-10-19 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=473787

Joshua Goins  changed:

   What|Removed |Added

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

--- Comment #5 from Joshua Goins  ---
Can you see if you experience this issue still with 23.08.2? I'm restarting my
Flatpak here constantly, and can't get it to log out without me explicitly
doing so. I suspect that it's asking you to log in again because of an invalid
token/other issue, which is something that will be clearer in the next release.

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

[kdenlive] [Bug 475843] New: CMYK Adjust effect values for Reds, Yellow, and Magentas are inverted (negatives increase, positives decrease intensity)

2023-10-19 Thread Bernd
https://bugs.kde.org/show_bug.cgi?id=475843

Bug ID: 475843
   Summary: CMYK Adjust effect values for Reds, Yellow, and
Magentas are inverted (negatives increase, positives
decrease intensity)
Classification: Applications
   Product: kdenlive
   Version: 23.08.1
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Effects & Transitions
  Assignee: j...@kdenlive.org
  Reporter: bern...@yahoo.com
  Target Milestone: ---

SUMMARY
CMYK Adjust effect (avfilter.selectivecolor) values for Reds, Yellows and
Magentas are inverted: positive values reduce the color intensity/saturation,
negative values increase it

STEPS TO REPRODUCE
1. Create a red, a yellow and a magenta color clip
2. Apply a CMYK effect and change the values for Reds, Yellows, and Magentas,
respectively

OBSERVED RESULT
Positive values decrease saturation, negative values increase

EXPECTED RESULT
the other way around

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Pop!_OS 22.04
KDE Frameworks Version: 5.92
Qt Version: 5.15.3

ADDITIONAL INFORMATION
MLT 7.20.0

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

[Tokodon] [Bug 473969] Dark Icons on Dark Themes, resulting in poor contrast

2023-10-19 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=473969

Joshua Goins  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED
   Version Fixed In||23.12

--- Comment #7 from Joshua Goins  ---
I cannot reproduce on 23.08.2 anymore, at least with the Flatpak (Breeze or
Breeze Dark icons). However, I suggest sticking to "Breeze" and not "Breeze
Dark" as icons should color automatically.

In the next major release, all of the icon bugginess _should_ go away and icons
should show the same behavior as other KDE applications. Unfortunately that's
all I can really do as my bandwidth is limited :( If more people experience
this issue, I might backport our fix early and see how that works.

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

[Tokodon] [Bug 473620] Unable to authenticate

2023-10-19 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=473620

Joshua Goins  changed:

   What|Removed |Added

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

--- Comment #2 from Joshua Goins  ---
This is technically no longer an issue now that the authorization happens from
within Tokodon. I'll reinvestigate if and when we allow opening the
authorization link externally again (although to be fair, Angelfish should
really fix that on their end too :D)

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

[digikam] [Bug 379402] Reuse filter settings after adding geolocation information [patch]

2023-10-19 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=379402

--- Comment #14 from Maik Qualmann  ---
Git commit 7f4e2265696971d41374d149656aa9865c1e025d by Maik Qualmann.
Committed on 19/10/2023 at 21:49.
Pushed by mqualmann into branch 'master'.

fix update item filter after change item geolocation

M  +1-0core/libs/database/models/itemfiltermodel.cpp

https://invent.kde.org/graphics/digikam/-/commit/7f4e2265696971d41374d149656aa9865c1e025d

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

[Discover] [Bug 474660] Discover does not load the screenshot(s) of certain apps from flathub

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=474660

Nate Graham  changed:

   What|Removed |Added

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

--- Comment #1 from Nate Graham  ---
Right now with Plasma 6, I can reproduce this 100% when the app's source is
Flathub beta, but 0% when the source is the normal Flathub stable repo (bug
475842). Are you able to reproduce that too?

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

[Discover] [Bug 449074] Sometimes fails to load screenshots and loading spinners are shown forever

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=449074

Nate Graham  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
   Version Fixed In||6.0
 Resolution|--- |FIXED

--- Comment #2 from Nate Graham  ---
A lot of improvements have been made here for Plasma 6 and I'm no longer bale
to reproduce the general random issue of screenshots not loading; now I can
only reproduce specific issues like screenshots never loading from Flathub
beta; see Bug 475842 for that.

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

[Discover] [Bug 475842] Screenshots never loading from Flathub beta

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475842

--- Comment #1 from Nate Graham  ---
Created attachment 162433
  --> https://bugs.kde.org/attachment.cgi?id=162433=edit
Screenshots on Flathub user

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

[Discover] [Bug 475842] New: Screenshots never loading from Flathub beta

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=475842

Bug ID: 475842
   Summary: Screenshots never loading from Flathub beta
Classification: Applications
   Product: Discover
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Flatpak Backend
  Assignee: plasma-b...@kde.org
  Reporter: n...@kde.org
CC: aleix...@kde.org, jgrul...@redhat.com,
trav...@redhat.com
  Target Milestone: ---

Created attachment 162432
  --> https://bugs.kde.org/attachment.cgi?id=162432=edit
No screenshots on Flathub beta

Plasma 6 git master, Wayland, 200% scale.


STEPS TO REPRODUCE
1. Install repos for Flathub user and Flathub beta
2. Restart the system just to be sure
3. Launch Discover
4. Find an app that's on both Flathub user and Flathub beta (e.g. Olive)
5. Switch source to Flathub beta


OBSERVED RESULT
All screenshot thumbnails fail to load


EXPECTED RESULT
All screenshots are there, just as if you were looking at it from the Flathub
user source

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

[kmymoney] [Bug 475841] New: payees with different case not recognized until asking

2023-10-19 Thread Jeremy Whiting
https://bugs.kde.org/show_bug.cgi?id=475841

Bug ID: 475841
   Summary: payees with different case not recognized until asking
Classification: Applications
   Product: kmymoney
   Version: git (master)
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: ux-ui
  Assignee: kmymoney-de...@kde.org
  Reporter: jpwhit...@kde.org
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***
If you enter a new transaction, but type the payee with slightly different case
a popup asks if you want to add a new payee (but already has any existing
payee's case in the question). If you click Yes, it adds a new payee with [1]
at the end of the name.

STEPS TO REPRODUCE
1. Enter a transaction with an existing payee with one letter case changed.
I.e. bank instead of Bank
2. Watch when the gui asks if you want to add "Bank" as a new payee.
3. Click Yes

OBSERVED RESULT
"Bank [1]" added to the list of payees.

EXPECTED RESULT
Either or both of:
1. Bank payee left alone, no new payee added.
2. bank corrected to Bank and no question about payee asked.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma:  Archlinux
(available in About System)
KDE Plasma Version: Plasma6 built from git
KDE Frameworks Version: KF5 from arch packages, 5.110.0-1 currently
Qt Version: 5.15.11-1 from arch packages.

ADDITIONAL INFORMATION

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

[Discover] [Bug 423344] Group items on "Installed" page by high-level categories

2023-10-19 Thread soredake
https://bugs.kde.org/show_bug.cgi?id=423344

soredake  changed:

   What|Removed |Added

 CC|broaden_acid002@simplelogin |
   |.com|

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

[Discover] [Bug 455304] Small screenshot thumbnails are hard to visually parse and understand

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=455304

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||6.0
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Nate Graham  ---
Screenshot thumbnails are now a bit larger in Plasma 6, and further
improvements to the screenshot UX are going to be merged shortly!

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

[Discover] [Bug 444103] Description page of an app does not scroll vertically while I hover over the only screenshot available

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=444103

Nate Graham  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Version Fixed In||6.0
 Status|CONFIRMED   |RESOLVED

--- Comment #3 from Nate Graham  ---
This is fixed for Plasma 6 now.

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

[Discover] [Bug 474334] Home page changes after navigating to About page and then back to it

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=474334

Nate Graham  changed:

   What|Removed |Added

Summary|Inconsistent Home page  |Home page changes after
   ||navigating to About page
   ||and then back to it

--- Comment #5 from Nate Graham  ---
Ok, thanks! Must be a Qt 6.6 regression.

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

[Discover] [Bug 474334] Inconsistent Home page

2023-10-19 Thread Ismael Asensio
https://bugs.kde.org/show_bug.cgi?id=474334

Ismael Asensio  changed:

   What|Removed |Added

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

--- Comment #4 from Ismael Asensio  ---
I can reproduce the issue on Qt6.6

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

[Discover] [Bug 445652] /var/lib/PackageKit/offline-update-action file not deleted automatically, causing Discover to always suggest a reboot

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=445652

Nate Graham  changed:

   What|Removed |Added

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

--- Comment #11 from Nate Graham  ---
Various changed went into both PackageKit and Discover to improve the situation
here. Is anyone still experiencing it in Plasma 5.27 with PackageKit 1.2.5 or
newer?

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

[frameworks-ktexteditor] [Bug 447740] Crash in QAccessible::queryAccessibleInterface

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=447740

--- Comment #26 from doc.ev...@gmail.com ---
(In reply to Waqar Ahmed from comment #25)

> 
> Allow enabling/disabling accessibility
> 
> On Manjaro KDE (and possibly others) it seems that accessibility is
> always enabled for some reason. Lately it has been causing a lot of
> crashes in KDevelop and in general it is really bad for performance

So I am quite puzzled by the above. I obviously have KDE installed, otherwise I
could not be using kdevelop. But I'm not actually running KDE as a desktop
environment on either of the machines here that exhibit the problem. So is
there some KDE-related config file somewhere that I should edit in order to be
sure that accessibility support is turned off when I run kdevelop?

(FWIW, on one machine I simply ssh into the machine and run kdevelop over the
network, so there is no desktop environment at all; on the other machine I am
using Trinity as the desktop environment.)

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

[Discover] [Bug 466205] Discover crashes in KNSCore::Engine::addProvider() while checking for updates

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=466205

--- Comment #9 from Nate Graham  ---
The KNS backend has gotten a lot of updates for Plasma 6, so it's possible that
the issue is already fixed now.

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

[kwin] [Bug 467061] XWayland apps have a slightly blurry mouse cursor when using scaling

2023-10-19 Thread Hexagon
https://bugs.kde.org/show_bug.cgi?id=467061

Hexagon  changed:

   What|Removed |Added

Version|5.27.2  |5.27.8

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

[kwin] [Bug 467061] XWayland apps have a slightly blurry mouse cursor when using scaling

2023-10-19 Thread Hexagon
https://bugs.kde.org/show_bug.cgi?id=467061

--- Comment #5 from Hexagon  ---
Created attachment 162431
  --> https://bugs.kde.org/attachment.cgi?id=162431=edit
Video of the blurry cursor on xWayland windows compared to Wayland-native
windows

The problem is still present on Plasma 5.27.8. This video shows the problem
more clearly than the previous screenshots. The bottom is the Wayland-native
Plasma panel where the cursor is sharp. The top is Discord running in xWayland
where the cursor is blurry / in low resolution.

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

[Discover] [Bug 474723] Group items into "user-installed" and "system-installed" sections

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=474723

Nate Graham  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=423344

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

[Discover] [Bug 423344] Group items on "Installed" page by high-level categories

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=423344

Nate Graham  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=474723

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

[Discover] [Bug 423344] Group items on "Installed" page by high-level categories

2023-10-19 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=423344

Nate Graham  changed:

   What|Removed |Added

Summary|Group items on "Installed"  |Group items on "Installed"
   |page by category|page by high-level
   ||categories

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

[krita] [Bug 472705] 5.2 Android: App crashes shortly after transforming multiple layers or at random moments

2023-10-19 Thread AppTest
https://bugs.kde.org/show_bug.cgi?id=472705

--- Comment #44 from AppTest  ---
To have all this information in one post, I gathered a list of devices with
confirmed crashing so far:

Motorola Edge 30 Fusion, Android 13
Samsung Galaxy S23 Ultra, Android 13
Samsung Galaxy Tab S6 Lite (
https://krita-artists.org/t/i-think-i-found-a-bug-on-the-5-2-0-version-of-krita/76281
)
Samsung Galaxy Tab S7+
Samsung Galaxy Tab S8+, Android 13
Samsung Galaxy Tab S9 Ultra, Android 13 (
https://krita-artists.org/t/krita-5-2-release-candidate-is-out-please-help-us-in-another-round-of-testing/74137/110
)
Lenovo M10 Pro, Android 12

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

[digikam] [Bug 471269] Application crashes when album contains avif file

2023-10-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471269

--- Comment #14 from caulier.gil...@gmail.com ---
Hi,

The new digiKam 8.2.0 pre-release with the last fixes to test :

https://files.kde.org/digikam/

Best

Gilles Caulier

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

  1   2   3   >