[KRdp] [Bug 488216] NVidia fallback to software rendering not working

2024-06-21 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=488216

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[plasmashell] [Bug 484216] System Tray popups close immediately when opened when using a bottom or right screen edge panel and "Application" or "Window" keyboard layout switching mode

2024-06-16 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=484216

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kommit] [Bug 486951] Crash when opening GIT repository with lightweight tags

2024-05-29 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #14 from Yaroslav Sidlovsky  ---
Looks good. Thanks!

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

[kommit] [Bug 486951] Crash when opening GIT repository with lightweight tags

2024-05-29 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #12 from Yaroslav Sidlovsky  ---
Also in my example it's this is taken into account and name is taken from ref
name `refs/tags/`:
```
mName = QString(refName).remove(QRegularExpression("^refs/tags/"));
```

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

[kommit] [Bug 486951] Crash when opening GIT repository with lightweight tags

2024-05-29 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #11 from Yaroslav Sidlovsky  ---
But it has name and displayed for example with `git log` or `tig`.

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

[kommit] [Bug 486951] Crash when opening GIT repository with lightweight tags

2024-05-29 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #9 from Yaroslav Sidlovsky  ---
Almost good but tag names is not displayed.
You can test it with this git repo:
```
1. mkdir /tmp/git && cd /tmp/git
2. git init
3. touch README.md && git add README.md && git commit -m 1
4. git tag some_tag

kommit /tmp/git
```

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

[kommit] [Bug 486951] Crash when opening GIT repository with lightweight tags

2024-05-15 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #7 from Yaroslav Sidlovsky  ---
If `git_tag_lookup` fails to find tag - you can use `git_commit_lookup` to get
commit info.
And later create `Tag` class instance from the commit, something like that:
```
Tag::Tag(const char *refName, git_commit *commit)
{
mName = QString(refName).remove(QRegularExpression("^refs/tags/"));
mMessage = git_commit_message(commit);
const auto author = git_commit_author(commit);
mTagger.reset(new Signature{author});
}
```

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

[kommit] [Bug 486951] Crash when opening GIT repository with lightweight tags

2024-05-15 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

Yaroslav Sidlovsky  changed:

   What|Removed |Added

Summary|Crash when opening GIT  |Crash when opening GIT
   |repository  |repository with lightweight
   ||tags

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

[kwin] [Bug 480171] With 225% scale on a 4k screen, right-side-tiled windows and full-screen video/image content are not fully adjacent to right screen edge

2024-05-14 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=480171

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kommit] [Bug 486951] Crash when opening GIT repository

2024-05-13 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #5 from Yaroslav Sidlovsky  ---
Some light on situation that `git_tag_lookup` is not working for all tags:

git_tag_lookup only works for annotated tags:
https://github.com/libgit2/libgit2/issues/5586 
> git_tag_lookup to emphasise that this will not work for all tags. that it 
> only works for annotated tags and not for lightweight tags

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

[kommit] [Bug 486951] Crash when opening GIT repository

2024-05-13 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #4 from Yaroslav Sidlovsky  ---
P.S. After applying the patch console shows this errors:
```
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
libgit2 error: the requested type does not match the type in the ODB
```

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

[kommit] [Bug 486951] Crash when opening GIT repository

2024-05-13 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

Yaroslav Sidlovsky  changed:

   What|Removed |Added

URL||https://bugzilla.redhat.com
   ||/show_bug.cgi?id=2280215

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

[kommit] [Bug 486951] Crash when opening GIT repository

2024-05-13 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #3 from Yaroslav Sidlovsky  ---
Created attachment 169431
  --> https://bugs.kde.org/attachment.cgi?id=169431=edit
kommit-fix-crash.patch

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

[kommit] [Bug 486951] Crash when opening GIT repository

2024-05-13 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #2 from Yaroslav Sidlovsky  ---
After some debugging it turns out that crash happens because return value from
function `git_tag_lookup` is ignored it is non zero.

I'm talking about this line of code:
https://invent.kde.org/sdk/kommit/-/blob/5954f99cf5e5db96c13a73fd1752e4ad2211fa1e/src/libkommit/gitmanager.cpp?page=2#L1266

Proposed patch:
```
diff --git a/src/libkommit/gitmanager.cpp b/src/libkommit/gitmanager.cpp
index c1b4244..8f8ce9f 100644
--- a/src/libkommit/gitmanager.cpp
+++ b/src/libkommit/gitmanager.cpp
@@ -1241,7 +1241,14 @@ void Manager::forEachTags(std::function cb)
 Q_UNUSED(name)
 auto w = reinterpret_cast(payload);
 git_tag *t;
-git_tag_lookup(, w->repo, oid_c);
+int ret = git_tag_lookup(, w->repo, oid_c);
+if (ret) {
+const auto err = git_error_last();
+if (err) {
+qWarning().noquote().nospace() << "libgit2 error: " <<
err->message;
+}
+return 0;
+}

 if (!t)
 return 0;
```

Macros PRINT_ERROR won't work here.

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

[kommit] [Bug 486951] Crash when opening GIT repository

2024-05-13 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

--- Comment #1 from Yaroslav Sidlovsky  ---
Created attachment 169430
  --> https://bugs.kde.org/attachment.cgi?id=169430=edit
GDB backtrace

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

[kommit] [Bug 486951] New: Crash when opening GIT repository

2024-05-13 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=486951

Bug ID: 486951
   Summary: Crash when opening GIT repository
Classification: Applications
   Product: kommit
   Version: unspecified
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: hamed.mas...@gmail.com
  Reporter: zawer...@gmail.com
CC: mon...@kde.org
  Target Milestone: ---

SUMMARY


STEPS TO REPRODUCE
1. Run `kommit ~/git/repo` in the console

OBSERVED RESULT
Crash

EXPECTED RESULT
No crash

SOFTWARE/OS VERSIONS
Operating System: Fedora Linux 40
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.2.0
Qt Version: 6.7.0
Kernel Version: 6.8.9-300.fc40.x86_64 (64-bit)
Graphics Platform: Wayland
Processors: 12 × 11th Gen Intel® Core™ i5-11600K @ 3.90GHz
Memory: 31.1 ГиБ of RAM
Graphics Processor: Mesa Intel® Graphics
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B560M DS3H V2

ADDITIONAL INFORMATION

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

[plasmashell] [Bug 485456] With Qt 6.7, System Tray popup is inappropriately resized to a tiny nub

2024-05-11 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=485456

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 482142] drag in drop files in Google Chrome renders Chrome unusable

2024-05-05 Thread Yaroslav Fedevych
https://bugs.kde.org/show_bug.cgi?id=482142

--- Comment #24 from Yaroslav Fedevych  ---
Can we be sure that it's kwin as such and not, say, Qt itself? There's so many
moving parts that thinking of trying to bisect it all is filling me with dread.

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

[krfb] [Bug 472453] krfb asserts in PWFrameBuffer::cursorPosition

2024-05-04 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=472453

--- Comment #13 from Yaroslav Sidlovsky  ---
(In reply to ian+bugs.kde.org from comment #12)
> Thought I'd check again after some other KDE updates, but still getting
> similar results:
> Garuda linux 
> 6.6.29-1-lts #1 SMP PREEMPT_DYNAMIC Sat, 27 Apr 2024 18:43:45 + x86_64
> GNU/Linux
> krfb-virtualmonitor 24.02.2
> [any other info required? please ask!]
> 
> ___
> > krfb-virtualmonitor --resolution 1024x768 --name ipad --password ipad 
> > --port 5900 --scale 1
> kpipewire_dmabuf_logging: eglChooseConfig returned this many configs: 1
> new client request
> kf.notifications: No event config could be found for event id
> "UserAcceptsConnection" under notifyrc file for app "krfb-virtualmonitor"
> /usr/include/c++/13.2.1/optional:477: constexpr _Tp&
> std::_Optional_base_impl<_Tp, _Dp>::_M_get() [with _Tp = PipeWireCursor; _Dp
> = std::_Optional_base]: Assertion
> 'this->_M_is_engaged()' failed.
> fish: Job 1, 'krfb-virtualmonitor --resolutio…' terminated by signal SIGABRT
> (Abort)
> ___
> 
> A concurrently running journalctl -f:
> 
> May 03 16:20:02 Garuda krfb-virtualmonitor[1728159]: Libgcrypt warning:
> missing initialization - please fix the application
> May 03 16:20:02 Garuda system[1]: Started Process Core Dump (PID 1729279/UID
> 0).
> May 03 16:20:02 Garuda systemd-coredump[1729280]: [] Process 1728159
> (krfb-virtualmon) of user 1000 dumped core.
> 
> Stack trace of thread 1728159:
> #0  0x7a63b7aab32c n/a (libc.so.6 + 0x8d32c)
> #1  0x7a63b7a5a6c8 raise (libc.so.6 + 0x3c6c8)
> #2  0x7a63b7a424b8 abort (libc.so.6 + 0x244b8)
> #3  0x7a63b7cd1d42 _ZSt21__glibcxx_assert_failPKciS0_S0_ (libstdc++.so.6
> + 0xd1d42)
> #4  0x7a63b0578e9c n/a (pw.so + 0x8e9c)
> #5  0x5bed95a59309 n/a (krfb-virtualmonitor + 0x13309)
> #6  0x7a63b8197679 n/a (libQt6Core.so.6 + 0x197679)
> #7  0x7a63b819cdf4 _ZN6QTimer10timerEventEP11QTimerEvent
> (libQt6Core.so.6 + 0x19cdf4)
> #8  0x7a63b81883f6 _ZN7QObject5eventEP6QEvent (libQt6Core.so.6 +
> 0x1883f6)
> #9  0x7a63b90fbfcb
> _ZN19QApplicationPrivate13notify_helperEP7QObjectP6QEvent
> (libQt6Widgets.so.6 + 0xfbfcb)
> #10 0x7a63b813db38
> _ZN16QCoreApplication15notifyInternal2EP7QObjectP6QEvent (libQt6Core.so.6 +
> 0x13db38)
> #11 0x7a63b82ab95d _ZN14QTimerInfoList14activateTimersEv
> (libQt6Core.so.6 + 0x2ab95d)
> #12 0x7a63b8385f8c n/a (libQt6Core.so.6 + 0x385f8c)
> #13 0x7a63b7175199 n/a (libglib-2.0.so.0 + 0x5a199)
> #14 0x7a63b71d43bf n/a (libglib-2.0.so.0 + 0xb93bf)
> #15 0x7a63b7174712 g_main_context_iteration (libglib-2.0.so.0 + 0x59712)
> #16 0x7a63b8383e64
> _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEvents
> FlagEE (libQt6Core.so.6 + 0x383e64)
> #17 0x7a63b8145cce _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE
> (libQt6Core.so.6 + 0x145cce)
> #18 0x7a63b8141738 _ZN16QCoreApplication4execEv (libQt6Core.so.6 +
> 0x141738)
> #19 0x5bed95a4e0ad n/a (krfb-virtualmonitor + 0x80ad)
> #20 0x7a63b7a43cd0 n/a (libc.so.6 + 0x25cd0)
> #21 0x7a63b7a43d8a __libc_start_main (libc.so.6 + 0x25d8a)
> #22 0x5bed95a4ed75 n/a (krfb-virtualmonitor + 0x8d75)
> 
> Stack trace of thread 1728177:
> #0  0x7a63b7b26e86 epoll_wait (libc.so.6 + 0x108e86)
> #1  0x7a63ab6b9cf9 n/a (libspa-support.so + 0x14cf9)
> #2  0x7a63ab6ab58d n/a (libspa-support.so + 0x658d)
> #3  0x7a639bf60162 n/a (libpipewire-0.3.so.0 + 0x1c162)
> #4  0x7a63b7aa955a n/a (libc.so.6 + 0x8b55a)
> #5  0x7a63b7b26a5c n/a (libc.so.6 + 0x108a5c)
> 
> Stack trace of thread 1728183:
> #0  0x7a63b7aa5ebe n/a (libc.so.6 + 0x87ebe)
> #1  0x7a63b7aa8750 pthread_cond_wait (libc.so.6 + 0x8a750)
> #2  0x7a63a94863fc n/a (radeonsi_dri.so + 0x863fc)
> #3  0x7a63a949ec2c n/a (radeonsi_dri.so + 0x9ec2c)
> #4  0x7a63b7aa955a n/a (libc.so.6 + 0x8b55a)
> #5  0x7a63b7b26a5c n/a (libc.so.6 + 0x108a5c)
> 
> Stack trace of thread 1728165:
> #0  0x7a63b7aa5ebe n/a (libc.so.6 + 0x87ebe)
> #1  0x7a63b7aa8750 pthread_cond_wait (libc.so.6 + 0x8a750)
> #2  0x7a63a94863fc n/a (radeonsi_dri.so + 0x863fc)
> #3  0x7a63a949ec2c n/a (radeonsi_dri.so + 0x9ec2c)
> #4  0x7a63b7aa955a n/a (libc.so.6 + 0x8b55a)
> #5  0x7a63b7b26a5c n/a (libc.so.6 + 0x108a5c)
> 
> Stack trace of thread 1728184:
> #0  0x7a63b7aa5ebe n/a (libc.so.6 + 0x87ebe)
> #1  0x7a63b7aa8750 pthread_cond_wait (libc.so.6 + 0x8a750)
> #2  0x7a63a94863fc n/a (radeonsi_dri.so + 0x863fc)
> #3  0x7a63a949ec2c n/a (radeonsi_dri.so + 0x9ec2c)
> #4  0x7a63b7aa955a n/a (

[kwin] [Bug 482142] drag in drop files in Google Chrome renders Chrome unusable

2024-04-28 Thread Yaroslav Fedevych
https://bugs.kde.org/show_bug.cgi?id=482142

Yaroslav Fedevych  changed:

   What|Removed |Added

 CC||yaros...@fedevych.name

--- Comment #19 from Yaroslav Fedevych  ---
I have whatever the very latest Fedora 40 + updates has, and it's happening
regardless whether Chrome is launched as a pure Wayland or an X11 client (!).

Any accidental dragging gesture at all (usually I'm butterfingering the
touchpad, or accidentally place a finger on the touchpad just as I'm making a
left click) makes left click stop working. What also stops working is trying to
invoke the main menu via keyboard shortcuts — Alt+F, for example. If I persist
in left-clicking long enough, Chrome will eventually crash.

The funniest thing is that I remember the bug being there before, and in some
5.2x version of Plasma it got fixed. Now it looks like a regression.

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

[kwin] [Bug 478556] Sometimes the stacking order is out of sync with Xorg

2024-04-25 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=478556

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[krfb] [Bug 458636] krfb-virtualmonitor crashes in Wayland with default or no config (~/.config/krfbrc)

2024-04-24 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=458636

--- Comment #12 from Yaroslav Sidlovsky  ---
Try to reset (delete) krfb config & try again.

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

[krfb] [Bug 472453] krfb asserts in PWFrameBuffer::cursorPosition

2024-04-22 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=472453

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/netw
   ||ork/krfb/-/commit/6e7a5ba56
   ||966ea1b67400be9ab7c82885abb
   ||76be

--- Comment #10 from Yaroslav Sidlovsky  ---
Git commit 6e7a5ba56966ea1b67400be9ab7c82885abb76be by Yaroslav Sidlovsky.
Committed on 22/04/2024 at 14:06.
Pushed by alexeymin into branch 'master'.

Fixed crash calling PWFrameBuffer::cursorPosition()

Return default QPoint when `d->cursor` is not set.

M  +6-1framebuffers/pipewire/pw_framebuffer.cpp

https://invent.kde.org/network/krfb/-/commit/6e7a5ba56966ea1b67400be9ab7c82885abb76be

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

[krfb] [Bug 472453] krfb asserts in PWFrameBuffer::cursorPosition

2024-04-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=472453

--- Comment #7 from Yaroslav Sidlovsky  ---
Created attachment 168711
  --> https://bugs.kde.org/attachment.cgi?id=168711=edit
krfb-fix-crash.patch

Simple fix for this crash, works for me.
d->cursor is std::optional and it can be unset in time of calling
PWFrameBuffer::cursorPosition().

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

[krfb] [Bug 458636] krfb-virtualmonitor crashes in Wayland with default or no config (~/.config/krfbrc)

2024-04-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=458636

--- Comment #10 from Yaroslav Sidlovsky  ---
Can't reproduce anymore with krfb-virtualmonitor version 24.02.1, Fedora 40.

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

[frameworks-kcoreaddons] [Bug 427814] Problem with localization of KFormat

2024-04-07 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=427814

Yaroslav Sidlovsky  changed:

   What|Removed |Added

Version|5.248.0 |6.0.0
 CC||zawer...@gmail.com

--- Comment #5 from Yaroslav Sidlovsky  ---
Problem still persist with version 6.0.0:
```
Operating System: Fedora Linux 40
KDE Plasma Version: 6.0.3
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.2
Kernel Version: 6.8.4-300.fc40.x86_64 (64-bit)
Graphics Platform: Wayland
Processors: 16 × AMD Ryzen 7 5700X 8-Core Processor
Memory: 31.2 ГиБ of RAM
Graphics Processor: NVIDIA GeForce RTX 3070/PCIe/SSE2
Manufacturer: ASUS
```

Note `ГиБ` appears in text.

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

[okteta] [Bug 462703] Starting window size

2024-04-07 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=462703

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 459373] Maximized XWayland apps leave pixel gaps when using a fractional scaling factor

2024-04-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=459373

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kde] [Bug 479891] Some text glyphs in QML software are mis-aligned or squished when using a fractional scale factor

2024-03-22 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=479891

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[plasma-systemmonitor] [Bug 453368] searching for PID ,or any other info other than program name, in search bar of process tab doesn't show anything.

2024-03-18 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=453368

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 440386] High CPU use of kwin_wayland when video playing in firefox

2024-03-18 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=440386

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[plasmashell] [Bug 466414] Plasmashell and kwin_wayland processes exhibit have high CPU usage when no windows are drawn and using "Keep the selection and clipboard the same" and "Text selection: Alway

2024-03-18 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=466414

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[konsole] [Bug 482481] Konsole forces full hinting (hintfull) despite both fontconfig and KDE settings

2024-03-18 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=482481

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[qca] [Bug 482819] kwalletd6 sometimes crashed in QCA::PrivateKey::deriveKey when starting Proton VPN GUI

2024-03-18 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=482819

Yaroslav Sidlovsky  changed:

   What|Removed |Added

   See Also||https://bugzilla.redhat.com
   ||/show_bug.cgi?id=2270016
 CC||zawer...@gmail.com

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

[kwin] [Bug 482868] Broken rendering with OpenGL compositing on i915

2024-03-17 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=482868

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[Breeze] [Bug 482338] Extra lines when using color schemes without a header

2024-03-06 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=482338

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 465937] Split does not reset to its original value once "adjacent quick-tiled windows" configuration ceases to exist

2024-02-22 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=465937

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 472369] Please allow disabling resize-both-windows when quick tiling

2024-02-22 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=472369

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[neon] [Bug 478172] Applets like the application launcher, notifications menu, KRunner, etc. open in the center of the screen

2023-12-07 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=478172

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[okular] [Bug 477500] Crash when opening DJVU from a folder that contains Cyrillic "i" in the name.

2023-11-27 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=477500

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

--- Comment #2 from Yaroslav Sidlovsky  ---
Cyrillic I: "і".

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

[kwin] [Bug 477069] `print` dbus signal doesn't work

2023-11-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=477069

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 445058] kwin interactive console does not work

2023-11-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=445058

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[frameworks-kservice] [Bug 430157] KDE .desktop parser complains about files that have Type= "Application" but no Exec line, although this situation is normal.

2023-11-12 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=430157

Yaroslav Sidlovsky  changed:

   What|Removed |Added

Version|5.111.0 |5.112.0

--- Comment #15 from Yaroslav Sidlovsky  ---
FYI: warning is still on it's place for version 5.112.0

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

[kdeconnect] [Bug 476513] New: Cannot turn off automatic share from the device

2023-11-03 Thread Yaroslav
https://bugs.kde.org/show_bug.cgi?id=476513

Bug ID: 476513
   Summary: Cannot turn off automatic share from the device
Classification: Applications
   Product: kdeconnect
   Version: unspecified
  Platform: macOS (DMG)
OS: macOS
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: macos-application
  Assignee: turx2...@gmail.com
  Reporter: yarok...@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. Enable Clipboard
2. Open Clipboard options
3. Remove flag from "Automatically share the clipboard from this device" and
click OK
4. Try to copy something,

OBSERVED RESULT

The clipboard data will be sent to the device

EXPECTED RESULT

The clipboard data should bot be sent to the device implicitly

SOFTWARE/OS VERSIONS
Windows: 
macOS: 13.6
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.

[frameworks-kservice] [Bug 430157] KDE .desktop parser complains about files that have Type= "Application" but no Exec line, although this situation is normal.

2023-11-01 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=430157

--- Comment #13 from Yaroslav Sidlovsky  ---
This code has been already included in latest kf5-kservice release (5.111.0),
http://download.kde.org/stable/frameworks/5.111/kservice-5.111.0.tar.xz.

```
$ grep -Fr 'but has no Exec field'
kservice-5.111.0/src/services/kservice.cpp:qCWarning(SERVICES) << "The
desktop entry file" << entryPath() << "has Type=" << d->m_strType << "but has
no Exec field.";
```

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

[kwin] [Bug 454354] nvidia: Java programs running in Plasma Wayland / Xwayland show massive flickering

2023-11-01 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=454354

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[frameworks-kservice] [Bug 430157] KDE .desktop parser complains about files that have Type= "Application" but no Exec line, although this situation is normal.

2023-10-31 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=430157

--- Comment #11 from Yaroslav Sidlovsky  ---
Example output from journalctl:
```
Oct 31 12:36:38 rapidus kactivitymanagerd[4618]: kf.service.services: The
desktop entry file "/usr/share/applications/org.freedesktop.Xwayland.desktop"
has Type= "Application" but has no Exec field.
Oct 31 12:36:38 rapidus kactivitymanagerd[4618]: kf.service.services: The
desktop entry file "/usr/share/applications/bookmarks.desktop" has Type=
"Application" but has no Exec field.
Oct 31 12:36:38 rapidus kactivitymanagerd[4618]: kf.service.services: The
desktop entry file "/usr/share/applications/qemu.desktop" has Type=
"Application" but has no Exec field.
...
```

I've counted 684 of this warnings logged in 1 second, it looks like too much
for me.

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

[frameworks-kservice] [Bug 430157] KDE .desktop parser complains about files that have Type= "Application" but no Exec line, although this situation is normal.

2023-10-31 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=430157

Yaroslav Sidlovsky  changed:

   What|Removed |Added

Version|5.76.0  |5.111.0

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

[frameworks-kservice] [Bug 430157] KDE .desktop parser complains about files that have Type= "Application" but no Exec line, although this situation is normal.

2023-10-31 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=430157

Yaroslav Sidlovsky  changed:

   What|Removed |Added

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

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

[frameworks-kservice] [Bug 430157] KDE .desktop parser complains about files that have Type= "Application" but no Exec line, although this situation is normal.

2023-10-31 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=430157

--- Comment #10 from Yaroslav Sidlovsky  ---
It still spams as hell after fix from this line:
https://invent.kde.org/frameworks/kservice/-/blob/25917d20effad77ac6976a672430a3aac19575d2/src/services/kservice.cpp#L939

Also not only qemu.desktop affected, both
/usr/share/applications/bookmarks.desktop and
/usr/share/applications/org.freedesktop.Xwayland.desktop gives such message
too.

(/usr/share/applications/bookmarks.desktop goes with konqueror).

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

[frameworks-kservice] [Bug 430157] KDE .desktop parser complains about files that have Type= "Application" but no Exec line, although this situation is normal.

2023-10-31 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=430157

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[systemsettings] [Bug 475470] New: LayoutLoopCount/spare layout does not work

2023-10-11 Thread Yaroslav
https://bugs.kde.org/show_bug.cgi?id=475470

Bug ID: 475470
   Summary: LayoutLoopCount/spare layout does not work
Classification: Applications
   Product: systemsettings
   Version: 5.27.8
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: kcm_keyboard
  Assignee: plasma-b...@kde.org
  Reporter: k...@ys.lc
CC: butir...@gmail.com
  Target Milestone: ---

SUMMARY
"Spare layouts" setting does not work. 
I do see that `systemsettings5` updates `~/.config/kxkbrc` file:

[$Version]
update_info=kxkb_variants.upd:split-variants,kxkb.upd:remove-empty-lists,kxkb.upd:add-back-resetoptions

[Layout]
DisplayNames=,,
LayoutList=us,ru,ua
LayoutLoopCount=2
Options=grp:lalt_lshift_toggle
ResetOldOptions=true
ShowFlag=false
ShowLabel=true
ShowLayoutIndicator=true
ShowSingle=false
SwitchMode=Window
Use=true
VariantList=,,

But nothing happens after, I still see all three languages in my loop.

STEPS TO REPRODUCE
1. Open system settings
2. Add 3+ (us,ru,ua) layouts to your keyboard settings
3. Select "Spare layouts", and ensure that your "main layout count" set to 2.
4. At this step you should have two (us,ru) main layouts, and one (ua)
additional.

OBSERVED RESULT
All three languages could be switched using the main shortcut.


EXPECTED RESULT
Only the first two (us,ru) must be available through the main shortcut.


SOFTWARE/OS VERSIONS
Fedora 39, KDE/Wayland
KDE 5.27.8
KDE frameworks 5.110.0
Qt 5.15.10
Linux 6.5.6
AMD Ryzen 5 PRO 5650U with Radeon Graphics

ADDITIONAL INFORMATION

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

[plasma-pa] [Bug 474089] Incorrect volume change handling after switching audio output

2023-09-23 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=474089

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[Akonadi] [Bug 470820] Unable to configure Google Calendar

2023-09-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=470820

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

--- Comment #8 from Yaroslav Sidlovsky  ---
 Carl Schwan: FYI, can't apply patch from
c99afc75a503fff6ca83df2f47a5d5d951579524 to kdepim-runtime-23.08.1,
googleconfig.cpp is missing in that version.
Maybe I'm doing something wrong?

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

[plasmashell] [Bug 469016] Plasma panel visually (but not functionally) freezing on Wayland with Basic render loop and Non-Intel GPU when Task Manager previews are turned on

2023-09-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=469016

--- Comment #81 from Yaroslav Sidlovsky  ---
> Search for "plasma renderer" in KRunner or Kickoff and launch it. In that 
> window, switch to the "Threaded" option for the "Render Loop" combobox.

It can be started with command `kcmshell5 kcm_qtquicksettings` from the
console.

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

[kleopatra] [Bug 450824] crash when closing kleopatra

2023-08-28 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=450824

--- Comment #7 from Yaroslav Sidlovsky  ---
Gpgme line where assert is triggered:
https://github.com/gpg/gpgme/blob/3f297387bf401475385c458e4d1d95b3eefaf3d8/src/wait-global.c#L125C3-L125C15

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

[kleopatra] [Bug 450824] crash when closing kleopatra

2023-08-28 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=450824

--- Comment #6 from Yaroslav Sidlovsky  ---
Created attachment 161241
  --> https://bugs.kde.org/attachment.cgi?id=161241=edit
More detailed stacktrace from gdb

More detailed stacktrace.

Output from console:
---
org.kde.pim.kleopatra: Running SCD SERIALNO --all failed: Service is not
running (code: 318, source: SCD)
org.kde.pim.kleopatra: SmartCardWidget::Private::cardAddedOrChanged: App  is
not supported
kleopatra: wait-global.c:125: ctx_done: Assertion `li' failed.
KCrash: Application 'kleopatra' crashing...
The Wayland connection experienced a fatal error: Bad file descriptor
---

I think that this line is interesting: `kleopatra: wait-global.c:125: ctx_done:
Assertion `li' failed.`

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

[kleopatra] [Bug 450824] crash when closing kleopatra

2023-08-28 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=450824

--- Comment #5 from Yaroslav Sidlovsky  ---
Created attachment 161240
  --> https://bugs.kde.org/attachment.cgi?id=161240=edit
New crash information added by DrKonqi

kleopatra (3.1.28.230800 (23.08.0)) using Qt 5.15.10

Crashing on exit

-- Backtrace (Reduced):
#9  0x7f68ab180cc5 in _gpgme_wait_global_event_cb () from
/lib64/libgpgme.so.11
#10 0x7f68ab1b3fb4 in _gpgme_cancel_with_err () from /lib64/libgpgme.so.11
#11 0x7f68ab1b4166 in gpgme_cancel () from /lib64/libgpgme.so.11
#12 0x7f68ab1eff8c in GpgME::Context::cancelPendingOperationImmediately()
() from /lib64/libgpgmepp.so.6
#13 0x557b4c973041 in Kleo::DeviceInfoWatcher::Worker::~Worker
(this=, this=) at
/usr/src/debug/kleopatra-23.08.0-1.fc38.x86_64/src/smartcard/deviceinfowatcher.cpp:37

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

[kwin] [Bug 460840] KWin doesn't respect sub-pixel rendering setting for window titles

2023-08-10 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=460840

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[krfb] [Bug 472453] krfb-virtualmonitor asserts when a client connects

2023-08-08 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=472453

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[krfb] [Bug 458636] krfb-virtualmonitor crashes in Wayland with default or no config (~/.config/krfbrc)

2023-08-08 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=458636

Yaroslav Sidlovsky  changed:

   What|Removed |Added

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

--- Comment #5 from Yaroslav Sidlovsky  ---
Looks like this bug is gone.
It's still crashing after connect but with different stack trace.

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

[plasmashell] [Bug 463323] Clipboard history sometimes does not work on wayland

2023-08-08 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=463323

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 459389] Copy and paste do not work in Wayland when using some text editors in konsole and some applications

2023-08-08 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=459389

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[frameworks-kio] [Bug 464409] File selection dialog list view shows visual glitches when enabling preview panel

2023-08-07 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=464409

--- Comment #5 from Yaroslav Sidlovsky  ---
Spotted same issue on Firefox with Intel video card.
Some info:
---
Operating System: Fedora Linux 38
KDE Plasma Version: 5.27.7
KDE Frameworks Version: 5.108.0
Qt Version: 5.15.10
Kernel Version: 6.4.4-200.fc38.x86_64 (64-bit)
Graphics Platform: Wayland
Processors: 12 × 11th Gen Intel® Core™ i5-11600K @ 3.90GHz
Memory: 31.1 ГиБ of RAM
Graphics Processor: Mesa Intel® Graphics
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B560M DS3H V2

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

[frameworks-kio] [Bug 464409] File selection dialog list view shows visual glitches when enabling preview panel

2023-08-07 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=464409

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 15329] Save and remember positions of all windows

2023-08-03 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=15329

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 455526] Blur glitches started to appear in wayland again

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=455526

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[plasmashell] [Bug 469016] Plasma panel visually (but not functionally) freezing with Wayland+Nvidia

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=469016

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 446389] [WAYLAND] Kwin doesn't differentiate Meta+Num+1 from Meta+1

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=446389

--- Comment #5 from Yaroslav Sidlovsky  ---
Nate, could you add please this bug to 15 minutes bugs list?
It's very frustrating that simple keybindings not working as intended in
Wayland session.

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

[kwin] [Bug 446389] [WAYLAND] Kwin doesn't differentiate Meta+Num+1 from Meta+1

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=446389

Yaroslav Sidlovsky  changed:

   What|Removed |Added

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

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

[systemsettings] [Bug 471093] Numpad shortcuts not recognised under Wayland / Regression

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=471093

Yaroslav Sidlovsky  changed:

   What|Removed |Added

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

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

[frameworks-kglobalaccel] [Bug 453423] Numpad shortcuts don't work in wayland sessions.

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=453423

Yaroslav Sidlovsky  changed:

   What|Removed |Added

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

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

[kwin] [Bug 446389] [WAYLAND] Kwin doesn't differentiate Meta+Num+1 from Meta+1

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=446389

Yaroslav Sidlovsky  changed:

   What|Removed |Added

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

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

[kwin] [Bug 446389] [WAYLAND] Kwin doesn't differentiate Meta+Num+1 from Meta+1

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=446389

--- Comment #4 from Yaroslav Sidlovsky  ---
Same bug on plasma 5.27.7.
Maybe related bugs: https://bugs.kde.org/show_bug.cgi?id=453423,
https://bugs.kde.org/show_bug.cgi?id=471093

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

[kwin] [Bug 446389] [WAYLAND] Kwin doesn't differentiate Meta+Num+1 from Meta+1

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=446389

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com
Version|5.24.4  |5.27.7

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

[frameworks-kglobalaccel] [Bug 453423] Numpad shortcuts don't work in wayland sessions.

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=453423

Yaroslav Sidlovsky  changed:

   What|Removed |Added

Version|5.95.0  |5.108.0
 CC||zawer...@gmail.com

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

[systemsettings] [Bug 471093] Numpad shortcuts not recognised under Wayland / Regression

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=471093

Yaroslav Sidlovsky  changed:

   What|Removed |Added

Version|5.27.4  |5.27.7

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

[systemsettings] [Bug 471093] Numpad shortcuts not recognised under Wayland / Regression

2023-08-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=471093

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kate] [Bug 469406] Kate 23.04.0 crashing at start on macOS Ventura 13.3.1

2023-07-19 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=469406

--- Comment #10 from Yaroslav Sidlovsky  ---
Can confirm that Kate installed from "kate-master-1978-macos-clang-x86_64.dmg"
works fine.

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

[partitionmanager] [Bug 422877] SMART status is not working on NVMe drives

2023-07-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=422877

--- Comment #28 from Yaroslav Sidlovsky  ---
Forgot to mention corresponding line in KPMCore:
https://invent.kde.org/system/kpmcore/-/blob/3d2c3960117d049ec73a6e6b52600a2a883e16c9/src/core/smartparser.cpp#L144

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

[partitionmanager] [Bug 422877] SMART status is not working on NVMe drives

2023-07-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=422877

--- Comment #27 from Yaroslav Sidlovsky  ---
Created attachment 160047
  --> https://bugs.kde.org/attachment.cgi?id=160047=edit
smartctl JSON for NVMe drive

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

[partitionmanager] [Bug 422877] SMART status is not working on NVMe drives

2023-07-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=422877

--- Comment #26 from Yaroslav Sidlovsky  ---
FYI: kpmcore relies on "ata_smart_attributes" JSON object from smartctl output.
It's absent for NVME drives.

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

[partitionmanager] [Bug 422877] SMART status is not working on NVMe drives

2023-07-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=422877

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[systemsettings] [Bug 455431] Spare layout not working on Wayland

2023-06-26 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=455431

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 455532] kwin_wayland_drm: Failed to find a working setup for new outputs!

2023-05-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=455532

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kate] [Bug 469406] Kate 23.04.0 crashing at start on macOS Ventura 13.3.1

2023-05-10 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=469406

--- Comment #2 from Yaroslav Sidlovsky  ---
Just tried latest build (kate-23.04.0-1938-macos-clang-x86_64.dmg) - still
broken.

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

[kate] [Bug 469406] Kate 23.04.0 crashing at start on macOS Ventura 13.3.1

2023-05-06 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=469406

--- Comment #1 from Yaroslav Sidlovsky  ---
Old Kate version (22.12.2) works fine without crashes.

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

[kate] [Bug 469406] Kate 23.04.0 crashing at start on macOS Ventura 13.3.1

2023-05-06 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=469406

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 OS|Other   |macOS
   Platform|Other   |macOS (DMG)

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

[kate] [Bug 469406] New: Kate 23.04.0 crashing at start on macOS Ventura 13.3.1

2023-05-06 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=469406

Bug ID: 469406
   Summary: Kate 23.04.0 crashing at start on macOS Ventura 13.3.1
Classification: Applications
   Product: kate
   Version: 23.04.0
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: application
  Assignee: kwrite-bugs-n...@kde.org
  Reporter: zawer...@gmail.com
  Target Milestone: ---

Created attachment 158735
  --> https://bugs.kde.org/attachment.cgi?id=158735=edit
crash.log

Kate has been installed from this url:
https://binary-factory.kde.org/view/MacOS/job/Kate_Release_macos/lastSuccessfulBuild/artifact/kate-23.04.0-1934-macos-clang-x86_64.dmg

Nightly build crashing too
(https://binary-factory.kde.org/view/MacOS/job/Kate_Nightly_macos/lastSuccessfulBuild/artifact/kate-master-1905-macos-clang-x86_64.dmg).

Stack trace:

Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   CoreFoundation  0x7ff805e9c8e6 _CFGetNonObjCTypeID
+ 10
1   CoreFoundation  0x7ff805d932e6
CFNotificationCenterAddObserver + 55
2   CoreFoundation  0x7ff805e8aa1a
___CFNotificationCenterInitializeDependentNotificationIfNecessary_block_invoke
+ 212
3   libdispatch.dylib   0x7ff805b53033
_dispatch_client_callout + 8
4   libdispatch.dylib   0x7ff805b54267
_dispatch_once_callout + 20
5   CoreFoundation  0x7ff805e8a93f
_CFNotificationCenterInitializeDependentNotificationIfNecessary + 374
6   CoreFoundation  0x7ff805d903b8
_CFLocaleCopyCurrentGuts + 2254
7   QtCore 0x10a483528
QSystemLocale::fallbackUiLocale() const + 536
8   QtCore 0x10a44212b systemData() + 203
9   QtCore 0x10a44e4dc (anonymous
namespace)::Q_QGS_defaultLocalePrivate::innerFunction() + 108
10  QtCore 0x10a44293f QLocale::QLocale() +
15
11  QtCore 0x10a4fa021
QResourceFileEnginePrivate::QResourceFileEnginePrivate() + 65
12  QtCore 0x10a4f8e55
QResourceFileEngine::QResourceFileEngine(QString const&) + 37
13  QtCore 0x10a512041
_q_resolveEntryAndCreateLegacyEngine_recursive(QFileSystemEntry&,
QFileSystemMetaData&, QAbstractFileEngine*&, bool) + 225
14  QtCore 0x10a511e76
QFileSystemEngine::resolveEntryAndCreateLegacyEngine(QFileSystemEntry&,
QFileSystemMetaData&) + 102
15  QtCore 0x10a4e6447
QFileInfo::exists(QString const&) + 71
16  QtCore 0x10a3c6513
QLibraryInfoPrivate::findConfiguration() + 35
17  QtCore 0x10a3c62c7
QLibrarySettings::load() + 23
18  QtCore 0x10a3c7c56
QLibraryInfoPrivate::configuration() + 150
19  QtCore 0x10a3c6bbe
QLibraryInfo::location(QLibraryInfo::LibraryLocation) + 46
20  QtCore 0x10a598d7c
QCoreApplication::libraryPathsLocked() + 1020
21  QtCore 0x10a59569b
QCoreApplication::libraryPaths() + 43
22  QtCore 0x10a584d94
QFactoryLoader::update() + 36
23  QtCore 0x10a586650
QFactoryLoader::QFactoryLoader(char const*, QString const&,
Qt::CaseSensitivity) + 224
24  QtGui  0x109842842
QGlobalStatic::operator()() + 178
25  QtGui  0x109842b92
QPlatformIntegrationFactory::keys(QString const&) + 674
26  QtGui  0x10984feec
QGuiApplicationPrivate::createPlatformIntegration() + 1724
27  QtGui  0x1098513cb
QGuiApplicationPrivate::createEventDispatcher() + 27
28  QtCore 0x10a59516f
QCoreApplicationPrivate::init() + 1151
29  QtGui  0x10984bb69
QGuiApplicationPrivate::init() + 57
30  QtWidgets  0x1091e141a
QApplicationPrivate::init() + 26
31  kate   0x10779b3cc 0x107788000 + 78796
32  kate   0x1077944b4 0x107788000 + 50356
33  dyld0x7ff80599a41f start + 1903

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

[yakuake] [Bug 435544] Application focus issue

2023-04-23 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=435544

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[konsole] [Bug 468259] High CPU usage during intensive scrolling

2023-04-07 Thread Yaroslav
https://bugs.kde.org/show_bug.cgi?id=468259

--- Comment #1 from Yaroslav  ---
I can repro the same issue with qterminal , but with smaller performance hit
(CPU usage hovers in 20% to 50%, which is still too much compared with
VTE-based terminals). Highest CPU consumer is the same (alphargbblend_argb32 )

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

[konsole] [Bug 468259] New: High CPU usage during intensive scrolling

2023-04-07 Thread Yaroslav
https://bugs.kde.org/show_bug.cgi?id=468259

Bug ID: 468259
   Summary: High CPU usage during intensive scrolling
Classification: Applications
   Product: konsole
   Version: 22.12.3
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: konsole-de...@kde.org
  Reporter: yaroslav.rastri...@gmail.com
  Target Milestone: ---

SUMMARY
***
scrolling a lot of text incurs large performance overhead. konsole is consuming
up to 65% of a single core if I'm doing, f.e. , `tail` -f of a quickly updating
log file
***


STEPS TO REPRODUCE
1. induce scrolling . easiest way is to run 'while [ 1 ] ; do echo
'testtesttesttesttest' ; done 
2. open `top` or run another performance monitor 

OBSERVED RESULT
high cpu usage, over 50% of a single core

EXPECTED RESULT
negligible cpu usage, as with other terminal emulation software

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
KDE Plasma Version: kde-frameworks/plasma-5.104.0:5/5.104
KDE Frameworks Version: 5.104
Qt Version: 5.15.8

ADDITIONAL INFORMATION
I have tested this with both Gentoo packages built from source by myself  , and
precompiled Arch linux packages. 
During investigation I've compiled konsole and QtGui with debugging symbols,
and ran `perf record` + `perf report` dwhile reproducing the issue. The culprit
seems to be incorrect or excessive usage of alphargbblend_argb32
 37.13% 0.00%  konsole libQt5Gui.so.5.15.8 [.]
QtSharedPointer::ExternalRefCountWithCustomDeleter::deleter
|
---QtSharedPointer::ExternalRefCountWithCustomDeleter::deleter
   0x5645ea71a9c0
   |  
   |--31.87%--alphargbblend_argb32
   |  
--5.26%--qt_alphargbblit_argb32

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

[plasmashell] [Bug 466362] 10+ MB leak every second after new display added

2023-03-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=466362

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[plasmashell] [Bug 467284] plasmashell - Unbound memory leaks and high cpu usage on deactivation of secondary screen using xrandr

2023-03-20 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=467284

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[kwin] [Bug 466655] Wayland: Red and blue channels are swapped when screencasting in certain applications

2023-03-03 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=466655

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[plasmashell] [Bug 427214] Add ability to paste Klipper's contents on selection

2023-03-02 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=427214

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[dolphin] [Bug 451755] Can't use RSA identity key file with sftp Network Folder

2023-03-01 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=451755

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[Powerdevil] [Bug 462695] Power management sometimes stops working

2023-02-19 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=462695

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[plasma-systemmonitor] [Bug 462512] [NVIDIA] Missing sensor information after driver update

2023-01-07 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=462512

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

[Haruna] [Bug 463868] Haruna does not autoplay next video in playlist

2023-01-05 Thread Yaroslav Sidlovsky
https://bugs.kde.org/show_bug.cgi?id=463868

Yaroslav Sidlovsky  changed:

   What|Removed |Added

 CC||zawer...@gmail.com

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

  1   2   3   4   5   6   >