[filelight] [Bug 375324] Do not scan folders function
https://bugs.kde.org/show_bug.cgi?id=375324 wor...@gmail.com changed: What|Removed |Added CC||wor...@gmail.com --- Comment #1 from wor...@gmail.com --- Confirming that on freshly updated Arch Linux. I have two volumes, which are mounted in /run/media/myusername, and both of them are scanned when I choose to scan / , and this happens regardless of whether I select any of these paths to not to scan: /run, /run/, /run/media, /run/media/, /run/media/myusername, /run/media/myusername/, /run/media/myusername/vol1, /run/media/myusername/vol1/, /run/media/myusername/vol2, /run/media/myusername/vol2/. -- You are receiving this mail because: You are watching all bug changes.
[ksshaskpass] [Bug 376318] Regression: passwords no longer remembered, asks every time I open a shell
https://bugs.kde.org/show_bug.cgi?id=376318 --- Comment #8 from Moritz Bunkus --- I've tried the following with 5.9.2: [0 mbunkus@chai-latte ~/tmp/askpass] export QT_LOGGING_RULES='ksshaskpass.*=true' [0 mbunkus@chai-latte ~/tmp/askpass] ksshaskpass wuff ksshaskpass: Unable to extract keyFile from phrase "wuff" Pass a valid window to KWallet::Wallet::openWallet(). miau% [0 mbunkus@chai-latte ~/tmp/askpass] At the same time I had "journalctl -f" open as root. No message was written to the journal either. A regular syslog daemon is not running; I'm solely using systemd's journal for that. Still completely useless. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 376826] assign windows to Activities in task manager unriable
https://bugs.kde.org/show_bug.cgi?id=376826 --- Comment #3 from Eike Hein --- I didn't look into this at all yet, but FWIW from my experience in this code it's usually some scoping/closure related code where some captured variable has an outdated value or something isn't actually reachable and something else hides the ReferenceError. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 375053] enabling global menu breaks copy/paste shortcuts in qupzilla
https://bugs.kde.org/show_bug.cgi?id=375053 --- Comment #6 from David Rosca --- Because it disables those actions in aboutToShow, and when the aboutToShow is not called, these actions are duplicated and it results in that warning dialog. Also, why is the dialog shown in Qt-only application? -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376661] When importing ~200,000 video files Digikam crashes in about 2-5 seconds of starting.
https://bugs.kde.org/show_bug.cgi?id=376661 --- Comment #15 from Mario Frank --- Hi again, This will be a quite long text - sorry. But I want to make the problems as clear as possible. I thought about the fuzzy search for videos a bit more during my train travel. In fact, even the first non-plain frame is worthless. If a user really wants to use digiKam as catalog for videos (which is not the scope of digiKam in first place IMHO), he will potentially have videos that have the same beginning, i.e. intro but are different videos. Thus, also the first non-plain frame will potentially lead to rubbish. I remember that I found some tools to find video duplicates. The process they applied was to take the first n images of a video and compare it to all others. A quite bad process IMO as with m videos you generate n*m images and then have to make a comparison. This is awfully bad from the view of complexity theory. And in practice, this process is, as can be expected, awfully slow. Nevertheless, the process is the probably best way to really recognise duplicate videos. So, a way could be to generate a fingerprint over the first or last n images (slows down fingerprint generation extremely). This still is not robust as many videos may have the same intro (at least the first m seconds, e.g. about m*25 frames. Usual intros take many seconds. So a *rather* stable approach would be to take 1000 frames. As you can imagine, this is a big amount of data to compute fingerprints for. Just imagine your 200,000 videos. Fingerprinting them would mean to generate 200,000,000 images. Every image must be generated which is no const-time process but at least linear time. So, even with 1000 videos, i would expect computation time to be in measure of hours, not minutes. Let's take a look from the other side, outros are far more distinct than intros. So, a lower number n can be taken, e.g. 100. This reduces the time quite a lot. But is probably still not satisfying. If no or only short intros/outros are there, only few images should be sufficient and the process could work quite good. But we cannot estimate, how the videos are structured. The FPS count may/will differ from video to video. So, woking on frames explicitly may again lead to low-quality results. So, the best way would be to take the n first/last seconds and then the complexity cannot really be estimated here. Also, I think, users should decide themselves, how many seconds are taken (configuration) and if beginning or ending should be taken (configuration again). So, *if* this feature should be implemented, I see the following options for users: 1) Take the first non-plain frame for fingerprinting (fast, probable not suitable for e.g. cinema movies) 2) Take the n first seconds for fingerprinting (probably awfully slow, may be suitable for e.g. cinema movies, overkill for self-produced movies) 3) Take the n last seconds for fingerprinting (probably slow, probably suitable for e.g. cinema movies, less overkill for self-produced movies) In a more precise algorithmic way, we would need an adoption of the fingerprints maintenance stage: Option 1: take the first non-plain frame for video fingerprints Option 2: take the Option(number n) Option(first,last) seconds for video fingerprinting. Changing the current options *must* trigger delete the current fingerprints of videos as otherwise, different fingerprintings would coexist which leads to wrong results - except rebuild all fingerprints is chosen. Then, the fuzzy search could probably work without adoptions - but I am not completely sure if it would work out of the box. Best, Mario -- You are receiving this mail because: You are watching all bug changes.
[kdevelop] [Bug 376833] Crashing with %{PROJECTDIR} as Custom BuildSystem argument
https://bugs.kde.org/show_bug.cgi?id=376833 Kevin Funk changed: What|Removed |Added Version Fixed In||5.1.0 -- You are receiving this mail because: You are watching all bug changes.
[kate] [Bug 368377] Add shortcut for Search and Replace
https://bugs.kde.org/show_bug.cgi?id=368377 --- Comment #2 from Gregor Mi --- Thanks for the hint. I rephrase the suggestion: "There is no _default_ shortcut for the search within all files or projects. It feels arduous to tell each new user to manually assign a shortcut for this commonly used feature." -- You are receiving this mail because: You are watching all bug changes.
[kdevplatform] [Bug 376854] patchreview/purpose integration: result dialog doesn't provide review URL
https://bugs.kde.org/show_bug.cgi?id=376854 Kevin Funk changed: What|Removed |Added CC||aleix...@gmail.com -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376359] Sort by Image Quality (assign quality tags) ignores many images
https://bugs.kde.org/show_bug.cgi?id=376359 --- Comment #3 from Mario Frank --- (In reply to Jens from comment #2) > great, thank you! Jens, I merged the branch into master. But we will have to wait for the AppImage. I remember Gilles writing somewhere that this will probably not be done before next week. So, you will have to wait for the AppImage or, if you can, compile the current master branch state on your system. Just to warn you, the exiv version used in most linux distros is 0.25 which has many bugs. 0.26 resolves over 200 bugs but is sadly not yet released. Some of the bugs in 0.25 lead to crashes. Thats one reason why we use AppImages. There we have a stable basis. -- You are receiving this mail because: You are watching all bug changes.
[krunner] [Bug 372635] do not follow mousepointer when accessing krunner via keyboard
https://bugs.kde.org/show_bug.cgi?id=372635 xdmx changed: What|Removed |Added CC||x...@email.it --- Comment #7 from xdmx --- This. Please. It happens to me as well at least 5 times each day, it's very frustrating :( -- You are receiving this mail because: You are watching all bug changes.
[krunner] [Bug 372635] do not follow mousepointer when accessing krunner via keyboard
https://bugs.kde.org/show_bug.cgi?id=372635 --- Comment #8 from Kai Uwe Broulik --- >From what I can tell Qt now processes mouse events even if the item moves underneath the mouse without the mouse moving. While this is a good thing in principle, it causes this side-effect as items show up under the mouse and then it fires a hover event. I'm still looking for a good way to fix this, other than randomly adding timers... -- You are receiving this mail because: You are watching all bug changes.
[basket] [Bug 376872] New: kolourpaint hardcoded for image editing in basket?
https://bugs.kde.org/show_bug.cgi?id=376872 Bug ID: 376872 Summary: kolourpaint hardcoded for image editing in basket? Product: basket Version: unspecified Platform: Archlinux Packages OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general Assignee: kel...@ieee.org Reporter: mk...@posteo.de Target Milestone: --- I am using basket 1.81 on Arch (antergos) When I try to open a picture via the context menu right click > open or F9, basket complains that kolourpaint is missing which is in fact not installed I would prefer to use GIMP which is set as standard on my system. Expected behaviour would be that images are opened with in my case gimp or the standard application which is used when opening an image from dolphin. -- You are receiving this mail because: You are watching all bug changes.
[valgrind] [Bug 376869] unhandled syscall: 531
https://bugs.kde.org/show_bug.cgi?id=376869 --- Comment #3 from benkasminbull...@gmail.com --- Apparently this bug had already been reported: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212697 -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376661] When importing ~200,000 video files Digikam crashes in about 2-5 seconds of starting.
https://bugs.kde.org/show_bug.cgi?id=376661 --- Comment #16 from caulier.gil...@gmail.com --- Mario, In my office we capture Infrared plan sequence of events in a Tokamak to catch physical dysfunctions while experience. video can take more than 2 minutes in HD, no more. More than 20 experiences can be done in a day. All video are lossless stored in a database. There is no camera movements. Only the plasma inside the machine change the contents. Depending of the experience parameters, the video contents willbe different. We have a process to recognize similar video into the database. It written in Matlab. As i know the process cut the first frames where there is nothing (black hole) until the light begin. After that a wavelets fingerprints is computed with a flat image taken from some frames inside the video. Not whole video is analyzed, but the algorithm try to detect the edge of change and adjust the fingerprint, by parsing a section of the movie. This is how the spacial (temporal) dimension is processed. For each file, the fingerprint can give the average of similarity of video comparing to others. When physicians want to look in experiences, they just compare a video made with Tokamak settings and look if another one is similar. The goal is to see if physical events are similar even if parameters are different. Of course, it's a special use case, as video are static plan with changing contents, but i think the process is not too bad if we want to apply it on a small section of DSC movies. Note : I know just the theory. The code is not available of course. -- You are receiving this mail because: You are watching all bug changes.
[systemsettings] [Bug 376712] Formats module is asking the user to relogin after pressing the Apply button
https://bugs.kde.org/show_bug.cgi?id=376712 --- Comment #3 from Sebastian Kügler --- I wrote the code, so yes. -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376359] Sort by Image Quality (assign quality tags) ignores many images
https://bugs.kde.org/show_bug.cgi?id=376359 caulier.gil...@gmail.com changed: What|Removed |Added CC||caulier.gil...@gmail.com --- Comment #4 from caulier.gil...@gmail.com --- Yes, i come back at home this week end. I will start AppImage computation while the night. They will be available next Monday. Gilles -- You are receiving this mail because: You are watching all bug changes.
[gwenview] [Bug 359786] No RW2 support on version 15.08.3
https://bugs.kde.org/show_bug.cgi?id=359786 Christoph Feck changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|--- |WORKSFORME --- Comment #2 from Christoph Feck --- Yes, you need the KF5 version of the kdegraphics thumbnailers. -- You are receiving this mail because: You are watching all bug changes.
[KScreen] [Bug 376562] Dual screen: 2nd screen does not wake up
https://bugs.kde.org/show_bug.cgi?id=376562 --- Comment #1 from Sebastian Kügler --- Hi Christian, thanks for the bug report! Is that the modesetting or the native intel driver? When did this problem start occurring? This sounds really like a graphics driver problem, judging by the symptoms. So let's look into that, first. -- You are receiving this mail because: You are watching all bug changes.
[kdevelop] [Bug 376835] KDevelop crashes when exitting with a Purpose plugin open
https://bugs.kde.org/show_bug.cgi?id=376835 --- Comment #5 from Christoph Feck --- We have a binary->product mappings file in DrKonqi: https://cgit.kde.org/plasma-workspace.git/tree/drkonqi/data/mappings -- You are receiving this mail because: You are watching all bug changes.
[KScreen] [Bug 374687] Allow per display Screen Scalinng (individually)
https://bugs.kde.org/show_bug.cgi?id=374687 Sebastian Kügler changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|--- |DUPLICATE --- Comment #4 from Sebastian Kügler --- No, it needs to be implemented. We're working on it though. I'll mark this as dupe of the original. *** This bug has been marked as a duplicate of bug 222428 *** -- You are receiving this mail because: You are watching all bug changes.
[kde] [Bug 222428] Wish for KDE recognize/compute DPI settings by different plugged screens
https://bugs.kde.org/show_bug.cgi?id=222428 Sebastian Kügler changed: What|Removed |Added CC||dev-laptan...@yandex.ru --- Comment #6 from Sebastian Kügler --- *** Bug 374687 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[systemsettings] [Bug 348066] Font style reverts from medium to regular
https://bugs.kde.org/show_bug.cgi?id=348066 Sebastian Kügler changed: What|Removed |Added Resolution|--- |UPSTREAM Status|UNCONFIRMED |RESOLVED --- Comment #3 from Sebastian Kügler --- What's KDE 5.10? I'm confused. Could you please test against a more recent Qt release, so we don't waste time on something that has long been fixed in Qt? If the problem persists, please reopen this bug report with config files attached. -- You are receiving this mail because: You are watching all bug changes.
[Akonadi] [Bug 358559] akonadi_imap_resource incorrectly handles RFC 5464
https://bugs.kde.org/show_bug.cgi?id=358559 --- Comment #3 from Alexander --- (In reply to Daniel Vrátil from comment #2) > Could you please run the following in terminal: > > export KIMAP_LOGFILE=/tmp/kimap.log > akonadictl restart > > > Then reproduce the issue again (wait until you see the error in terminal). > After that look into /tmp folder, you should see several files starting with > kimap.log - find the one that contains the error line and paste it here. > Please also include a few (5 or so) lines above the error. If there are any > sensitive information (folder names for instance), you can sanitize them. Done as you suggested + ctrl-l in kmail to fetch emails. Content of kimap.log.32676.1: C: A04 CAPABILITY S: * CAPABILITY IMAP4rev1 CHILDREN ENABLE ID IDLE LIST-EXTENDED LIST-STATUS LITERAL+ MOVE NAMESPACE QUOTA SASL-IR SORT SPECIAL-USE THREAD=ORDEREDSUBJECT UIDPLUS UNSELECT WITHIN APPENDLIMIT=14000 S: A04 OK CAPABILITY completed C: A05 NAMESPACE S: * NAMESPACE ( ("" "/") ) ( ) ( ) S: A05 OK NAMESPACE completed C: A06 ID ("name" "Kontact IMAP Resource") S: A06 OK ID completed C: A07 LIST "" * S: * LIST ( \Drafts \HasNoChildren ) / Entw&APw-rfe S: * LIST ( \Sent \HasNoChildren ) / Gesendete Objekte S: * LIST ( \HasNoChildren ) / INBOX S: * LIST ( \Trash \HasNoChildren ) / Papierkorb S: * LIST ( \HasNoChildren ) / Safe S: * LIST ( \Junk \HasNoChildren ) / Spam S: * LIST ( \HasNoChildren ) / Versendet S: A07 OK LIST completed C: A08 SELECT "INBOX" S: * 332 EXISTS S: * 0 RECENT S: * FLAGS ( \Answered \Flagged \Deleted \Seen \Draft $FORWARDED ) S: * OK Unlimited [ PERMANENTFLAGS ( \Answered \Flagged \Draft \Deleted \Seen $FORWARDED \* ) ] S: * OK Predicted next UID [ UIDNEXT 6075 ] S: * OK UIDs valid [ UIDVALIDITY 1320704810 ] S: A08 OK SELECT completed [ READ-WRITE ] C: A09 IDLE S: + idling === And on the console window (in this case: yakuake): AW@linux-k2bd:~> export KIMAP_LOGFILE=/tmp/kimap.log AW@linux-k2bd:~> akonadictl restart & [1] 32598 AW@linux-k2bd:~> Settings(0x19c3500) Settings(0x1b92050) org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_pop3_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_archivemail_agent' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_ical_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_ical_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_notes_agent' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_birthdays_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_followupreminder_agent' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_contacts_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_akonotes_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_migration_agent' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_imap_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_ical_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_newmailnotifier_agent' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_contacts_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_ical_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_ical_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_sendlater_agent' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_akonotes_resource' exited normally... org.kde.pim.akonadicontrol: ProcessControl: Application "/usr/bin/akonadi_indexing_agent" stopped unexpectedly ( "Process crashed" ) org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_indexing_agent' crashed. No restart! org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_mailfilter_agent' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_maildispatcher_agent' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_pop3_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_imap_resource' exited normally... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadi_maildir_resource' exited normally... KCrash: Application 'akonadiserver' crashing... KCrash: Attempting to start /usr/lib64/libexec/drkonqi from kdeinit sock_file=/run/user/1000/kdeinit5__0 QSocketNotifier: Invalid socket 65 and type 'Read', disabling... QSocketNotifier: Invalid socket 69 and type 'Read', disabling... QSocketNotifier: Invalid socket 73 and type 'Read', disabling... QSocketNotifier: Invalid socket 76 and type 'Read', disabling... QSocketNotifier: Invalid socket 67 and type 'Read', disabling.
[kdevelop] [Bug 376835] KDevelop crashes when exitting with a Purpose plugin open
https://bugs.kde.org/show_bug.cgi?id=376835 --- Comment #6 from RJVB --- That would be a good way to initialise the combobox I suggested ;) Seriously, isn't that something you could re-utilise from KCrash? In the meantime I'll try to remember patching that mapping mechanism locally so it also works for executables with an appended 5. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 376873] New: Plasmoids do not obey set scrolling speed.
https://bugs.kde.org/show_bug.cgi?id=376873 Bug ID: 376873 Summary: Plasmoids do not obey set scrolling speed. Product: plasmashell Version: 5.9.2 Platform: Archlinux Packages OS: Linux Status: UNCONFIRMED Severity: minor Priority: NOR Component: general Assignee: k...@davidedmundson.co.uk Reporter: kishor...@gmail.com CC: bhus...@gmail.com, plasma-b...@kde.org Target Milestone: 1.0 In the popups opened by plasmoids (till now, I have checked in the folderview plasmoid (i.e. when the plasmoid is placed in a panel and acts a button to open a folderview popup) and in klipper) scrolling is very slow, and does not seem to follow the scrolling speed set in the 'input devices' KCM. In details view, one click of the mouse wheel moves about half the text height, which makes it very cumbersome to scroll using the mouse wheel. It needs to behave like the details view in dolphin, where it follows the number of lines per click set in the 'input devices' KCM, or at the very least, have a separately configurable scrolling speed. I am unsure which componenet is responsible, so I have assigned this to general -- You are receiving this mail because: You are watching all bug changes.
[systemsettings] [Bug 376712] Formats module is asking the user to relogin after pressing the Apply button
https://bugs.kde.org/show_bug.cgi?id=376712 --- Comment #4 from Jan Ziak (http://atom-symbol.net) <0xe2.0x9a.0...@gmail.com> --- (In reply to Sebastian Kügler from comment #3) > I wrote the code, so yes. Just because some decades ago somebody temporarily solved a problem at hand by storing locale information in environment variables doesn't necessarily imply that it is the right thing to do from a long-term perspective. I can change the behavior of the getenv() function to anything I like on my machines - the standard immutability of LC_* variables is an issue I can overcome if necessary. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 376873] Plasmoids do not obey set scrolling speed.
https://bugs.kde.org/show_bug.cgi?id=376873 --- Comment #1 from kishor...@gmail.com --- Or, to alleviate the problem referred to in bug #170651, it can be set to scroll the set number of lines, or one page height, whichever is less. -- You are receiving this mail because: You are watching all bug changes.
[frameworks-kconfigwidgets] [Bug 373764] `KColorScheme::adjustBackground` and other methods ignore effects of `KColorSchemeManager::activateScheme`
https://bugs.kde.org/show_bug.cgi?id=373764 Francis Herne changed: What|Removed |Added Version Fixed In||5.32.0 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 367524] Switch for Auto Frame Mode: dublicate last frame (like now) or add new empty frame with last stroke only.
https://bugs.kde.org/show_bug.cgi?id=367524 anim...@gmail.com changed: What|Removed |Added CC||anim...@gmail.com --- Comment #1 from anim...@gmail.com --- A switch keeping current way of working as default could be ok. But the way it works right now actually cover all different needs already in this way: The thing is the new frame content depends on the action made to create it. -Need to keep all of previous drawing? Start drawing to add on top of previous frame. -Need to keep only a part of previous drawing? Start drawing with the eraser to create a frame with remaining of previous frame (this can actually also be common on regular frame-by-frame animation to save some time) -Need a new empty frame? Press delete to create a frame. See that this way there's a logic and all cases are possible depending on the action, without using a specific option to switch the way auto-frame works. -- You are receiving this mail because: You are watching all bug changes.
[Bluedevil] [Bug 376773] Receiving file (when asking for confirmation) cancels immediately, nothing is received
https://bugs.kde.org/show_bug.cgi?id=376773 David Rosca changed: What|Removed |Added Version Fixed In||5.8.7 Latest Commit||https://commits.kde.org/blu ||edevil/def41978a6330097ddb1 ||91328185fa79a1d63df4 Status|CONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #3 from David Rosca --- Git commit def41978a6330097ddb191328185fa79a1d63df4 by David Rosca. Committed on 24/02/2017 at 10:44. Pushed by drosca into branch 'Plasma/5.8'. ReceiveFileJob: Don't cancel the request right after accepting it KNotification::closed is emitted also when one of the notification actions was triggered. FIXED-IN: 5.8.7 Differential Revision: https://phabricator.kde.org/D4744 M +3-1src/kded/receivefilejob.cpp M +1-0src/kded/receivefilejob.h https://commits.kde.org/bluedevil/def41978a6330097ddb191328185fa79a1d63df4 -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 376826] assign windows to Activities in task manager unriable
https://bugs.kde.org/show_bug.cgi?id=376826 --- Comment #4 from achat1...@free.fr --- Should status be changed to confirmed? (who is supposed to changed status btw? Is it the person who opened the ticket or the person who is actually trying to solve the problem...I wish my programming skills would be better btw so I could be helpful in actually solving issues I report!) -- You are receiving this mail because: You are watching all bug changes.
[KScreen] [Bug 376562] Dual screen: 2nd screen does not wake up
https://bugs.kde.org/show_bug.cgi?id=376562 --- Comment #2 from Christian Saemann --- Thanks for your reply. My Xorg.0.log contains the following line: [10.354] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20160711 I'm on kernel 4.8.11-1-default. Please let me know if there's anything else you'd like to know. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376874] New: enable shortcuts for "insert 1 frame" and "remove 1 frame"
https://bugs.kde.org/show_bug.cgi?id=376874 Bug ID: 376874 Summary: enable shortcuts for "insert 1 frame" and "remove 1 frame" Product: krita Version: unspecified Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- Hi, I've seen there is a contextual menu when right-clicking on the top of the timeline (where frame numbers are); but we need to be able to assign a shortcut for "insert 1 frame" and "remove 1 frame"; it's a must-have when timing animations. Also; maybe there could be two different functions : "layer > insert 1 frame" & "layer > remove 1 frame" "timeline > insert 1 frame" & "timeline> remove 1 frame" This could be great for the workflow (it's a pain to always select all layers) Thanks ! -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376874] enable shortcuts for "insert 1 frame" and "remove 1 frame"
https://bugs.kde.org/show_bug.cgi?id=376874 gordie.lacha...@gmail.com changed: What|Removed |Added Version|unspecified |3.1.2 Platform|Other |unspecified OS|Linux |unspecified -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376875] New: [anim] play/pause button behaves like a play/stop button
https://bugs.kde.org/show_bug.cgi?id=376875 Bug ID: 376875 Summary: [anim] play/pause button behaves like a play/stop button Product: krita Version: 3.1.2 Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- I know the animation button is named "play/pause", but it actually behaves like a "play/stop" button (and have a "stop" icon) : the playhead starts again from the beginning of the timeline when hitting play. I suggest that the default behaviour of the button would be to play from where the playhead is (play/pause). Maybe there could be a combination (eg. SHIFT + click on the button) to force playing back from the beginning - the icon would switch when hovered, too. Thanks ! -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376876] New: Sound not working properlyon mac OS X
https://bugs.kde.org/show_bug.cgi?id=376876 Bug ID: 376876 Summary: Sound not working properlyon mac OS X Product: krita Version: 3.1.2 Platform: Mac OS X Disk Images OS: OS X Status: UNCONFIRMED Severity: major Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- Hi guys ! Running OS X El Capitan (10.11) here, with Krita 3.1.2. I'm trying the new sound feature, but it's not working properly. I first thought the sound "engine" wasn't loading, but then I made an erroneous manipulation and was able to hear a "chunk" of the sound (about half a second, like if it was scrubbling) Here's how I did but it still acts randomly : 1/ select a bunch of frames by shift + dragging on the top of the timeline (where frame numbers are) 2/ hit play 3/ click (a lot) on some buttons of your wacom tablet (not the pen) - maybe it works with a mouse (got none here) but it does not with a trackpad. Maybe this can help to debug ! -- You are receiving this mail because: You are watching all bug changes.
[valgrind] [Bug 373574] valgrind: m_syswrap/syswrap-main.c:1938 (vgPlain_client_syscall): Assertion '0 == (sci->flags & ~(SfPollAfter | SfYieldAfter | SfNoWriteResult))' failed.
https://bugs.kde.org/show_bug.cgi?id=373574 --- Comment #1 from kuj...@9livesdata.com --- Hello valgrind people, what is the status of this bug? Can we expect someone will look at this (or maybe also fix this)? Radek -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 376877] New: Apparent crash of Plasma shell
https://bugs.kde.org/show_bug.cgi?id=376877 Bug ID: 376877 Summary: Apparent crash of Plasma shell Product: plasmashell Version: 5.8.5 Platform: Fedora RPMs OS: Linux Status: UNCONFIRMED Keywords: drkonqi Severity: crash Priority: NOR Component: general Assignee: k...@davidedmundson.co.uk Reporter: m...@vowleyfarm.co.uk CC: bhus...@gmail.com, plasma-b...@kde.org Target Milestone: 1.0 Application: plasmashell (5.8.5) Qt Version: 5.6.2 Frameworks Version: 5.29.0 Operating System: Linux 4.9.10-100.fc24.x86_64 x86_64 Distribution: "Fedora release 24 (Twenty Four)" -- Information about the crash: - What I was doing when the application crashed: I had opened four or five pdf documents in Okular for printing, and minimised them while they were doing it. Printing having finished I wanted to close them, the (autohiding) menu bar showed only one item for all of them (several other applications were open), but the context menu showed "close". Hoping this would close all at once, I selected it. All closed, but the crash occurred. - Unusual behavior I noticed: The screen went black, the wallpaper appeared to have gone, but the only other window viisble remained. The autohide menu would not display. After perhaps ten seconds the wallpaper returned, the menu became available again, all previous applications except the Okular instances I'd closed were still running. Everything seems fine. The crash reporter appearing was the only indication that something had gone wrong. -- Backtrace: Application: Plasma (plasmashell), signal: Segmentation fault Using host libthread_db library "/lib64/libthread_db.so.1". [Current thread is 1 (Thread 0x7fda04480940 (LWP 11137))] Thread 8 (Thread 0x7fd94be58700 (LWP 11805)): #0 0x7fda0e5d6038 in g_main_context_prepare () from /lib64/libglib-2.0.so.0 #1 0x7fda0e5d692b in g_main_context_iterate.isra () from /lib64/libglib-2.0.so.0 #2 0x7fda0e5d6b1c in g_main_context_iteration () from /lib64/libglib-2.0.so.0 #3 0x7fda13ca375b in QEventDispatcherGlib::processEvents(QFlags) () from /lib64/libQt5Core.so.5 #4 0x7fda13c5281a in QEventLoop::exec(QFlags) () from /lib64/libQt5Core.so.5 #5 0x7fda13ab1353 in QThread::exec() () from /lib64/libQt5Core.so.5 #6 0x7fd94d5f72e7 in KCupsConnection::run() () from /lib64/libkcupslib.so #7 0x7fda13ab59ba in QThreadPrivate::start(void*) () from /lib64/libQt5Core.so.5 #8 0x7fda121f85ca in start_thread () from /lib64/libpthread.so.0 #9 0x7fda12ea90ed in clone () from /lib64/libc.so.6 Thread 7 (Thread 0x7fd95e2d3700 (LWP 11606)): #0 0x7fffbada4b12 in clock_gettime () #1 0x7fda12eb76f6 in clock_gettime () from /lib64/libc.so.6 #2 0x7fda13b51da3 in qt_gettime() () from /lib64/libQt5Core.so.5 #3 0x7fda13ca1d59 in QTimerInfoList::updateCurrentTime() () from /lib64/libQt5Core.so.5 #4 0x7fda13ca2155 in QTimerInfoList::timerWait(timespec&) () from /lib64/libQt5Core.so.5 #5 0x7fda13ca32bc in timerSourcePrepareHelper(GTimerSource*, int*) () from /lib64/libQt5Core.so.5 #6 0x7fda13ca3385 in timerSourcePrepare(_GSource*, int*) () from /lib64/libQt5Core.so.5 #7 0x7fda0e5d5f59 in g_main_context_prepare () from /lib64/libglib-2.0.so.0 #8 0x7fda0e5d692b in g_main_context_iterate.isra () from /lib64/libglib-2.0.so.0 #9 0x7fda0e5d6b1c in g_main_context_iteration () from /lib64/libglib-2.0.so.0 #10 0x7fda13ca375b in QEventDispatcherGlib::processEvents(QFlags) () from /lib64/libQt5Core.so.5 #11 0x7fda13c5281a in QEventLoop::exec(QFlags) () from /lib64/libQt5Core.so.5 #12 0x7fda13ab1353 in QThread::exec() () from /lib64/libQt5Core.so.5 #13 0x7fda17715d56 in QQuickPixmapReader::run() () from /lib64/libQt5Quick.so.5 #14 0x7fda13ab59ba in QThreadPrivate::start(void*) () from /lib64/libQt5Core.so.5 #15 0x7fda121f85ca in start_thread () from /lib64/libpthread.so.0 #16 0x7fda12ea90ed in clone () from /lib64/libc.so.6 Thread 6 (Thread 0x7fd9e7fff700 (LWP 11594)): #0 0x7fda121fdbd0 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x7fda195c51a4 in QTWTF::TCMalloc_PageHeap::scavengerThread() () from /lib64/libQt5Script.so.5 #2 0x7fda195c51e9 in QTWTF::TCMalloc_PageHeap::runScavengerThread(void*) () from /lib64/libQt5Script.so.5 #3 0x7fda121f85ca in start_thread () from /lib64/libpthread.so.0 #4 0x7fda12ea90ed in clone () from /lib64/libc.so.6 Thread 5 (Thread 0x7fd9f2397700 (LWP 11591)): #0 0x7fffbada4b12 in clock_gettime () #1 0x7fda12eb76f6 in clock_gettime () from /lib64/libc.so.6 #2 0x7fda13b51da3 in qt_gettime() () from /lib64/libQt5Core.so.5 #3 0x7fda13ca1d59 in QTimerInfoList::updateCurrentTime() () from /lib64/libQt5Core.so.5 #4 0x7fda13ca2155 in QTimerInfoList::timerWait(timespec&) () from /lib64/libQt5Core.so.5 #5 0x7fd
[dolphin] [Bug 371822] Dolphin should not toggle the terminal panel if Konsole is not installed
https://bugs.kde.org/show_bug.cgi?id=371822 --- Comment #3 from Elvis Angelaccio --- (In reply to Don Nguyen from comment #2) > > But I agree that Dolphin should not show an empty dock widget (upon pressing > > F4) if Konsole is not installed (thus I'm changing the title). > > I'd like to present some options related to the Terminal Panel when Konsole > is not installed and give you my analysis. > > 1) Do not show the Terminal Panel option in the menu when Konsole is not > installed. > 2) Disable(gray out) the Terminal Panel option in the menu when Konsole is > not installed. > 3) Pop up an information dialog to inform the user that Konsole is not > installed when the user tries to invoke the Terminal Panel. > 4) Display a message inside the Terminal Panel indicating that Konsole is > not installed when the user invokes the Terminal Panel. > > Option 1 hides the fact that we have this feature if Konsole is not > installed. Option 2 shows that we have such a feature but does not tell the > user why it's disabled - the user will have to search for why this is > disabled. Option 3 gives the user information about this feature and why > it's missing and how to enable it, but it seems a bit intrusive to me. My > preferred choice is option 4. It mimics normal behavior except that instead > of having a working Terminal Panel, it lets the user know why the feature is > missing and how to enable it. +1, nice analysys! -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376874] enable shortcuts for "insert 1 frame" and "remove 1 frame"
https://bugs.kde.org/show_bug.cgi?id=376874 anim...@gmail.com changed: What|Removed |Added Status|UNCONFIRMED |CONFIRMED Severity|normal |wishlist CC||anim...@gmail.com Ever confirmed|0 |1 --- Comment #1 from anim...@gmail.com --- I confirm this would be a good thing to add, at least some shortcuts for the actions in the contextual menu of the timeline header. The other part about adding similar actions for all layers is another step that could be discussed. -- You are receiving this mail because: You are watching all bug changes.
[kopete] [Bug 376878] New: Stay logged in in a chat group when close the window
https://bugs.kde.org/show_bug.cgi?id=376878 Bug ID: 376878 Summary: Stay logged in in a chat group when close the window Product: kopete Version: unspecified Platform: openSUSE RPMs OS: Linux Status: UNCONFIRMED Severity: wishlist Priority: NOR Component: Main Application Assignee: kopete-bugs-n...@kde.org Reporter: dmitriew...@gmail.com Target Milestone: --- It is nice to have an option to stay logged in a group chat (for instance, conference for jabber) when you close the chat window. For example, this feature is implemented in Pidgin client. The problem is that I need to keep the chat window opened as long as I want to receive messages from this group chat. Sometime it is really annoying, because I can close the window with all chats and I well be automatically logged out from all group chats as well. Of course it will require log-out button in the context menu for group chats as well. P.S. Unfortunately I couldn't find any settings for group chats (except log-in with starting the app). -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 376879] New: Plasma Crashed
https://bugs.kde.org/show_bug.cgi?id=376879 Bug ID: 376879 Summary: Plasma Crashed Product: plasmashell Version: 5.9.2 Platform: Archlinux Packages OS: Linux Status: UNCONFIRMED Keywords: drkonqi Severity: crash Priority: NOR Component: general Assignee: k...@davidedmundson.co.uk Reporter: umareka...@gmail.com CC: bhus...@gmail.com, plasma-b...@kde.org Target Milestone: 1.0 Application: plasmashell (5.9.2) Qt Version: 5.8.0 Frameworks Version: 5.31.0 Operating System: Linux 4.4.48-1-MANJARO x86_64 Distribution: "Manjaro Linux" -- Information about the crash: - What I was doing when the application crashed: I was downloading contents from web. Plasma suddenly crashed -- Backtrace: Application: Plasma (plasmashell), signal: Segmentation fault Using host libthread_db library "/usr/lib/libthread_db.so.1". [Current thread is 1 (Thread 0x7f533a529800 (LWP 862))] Thread 18 (Thread 0x7f5238ff9700 (LWP 8667)): #0 0x7f53331ad10f in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0 #1 0x7f53342dd58b in QWaitCondition::wait(QMutex*, unsigned long) () at /usr/lib/libQt5Core.so.5 #2 0x7f527ac351d0 in ThreadWeaver::Weaver::takeFirstAvailableJobOrSuspendOrWait(ThreadWeaver::Thread*, bool, bool, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #3 0x7f527ac399d8 in () at /usr/lib/libKF5ThreadWeaver.so.5 #4 0x7f527ac34263 in ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #5 0x7f527ac39a32 in () at /usr/lib/libKF5ThreadWeaver.so.5 #6 0x7f527ac34263 in ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #7 0x7f527ac39a32 in () at /usr/lib/libKF5ThreadWeaver.so.5 #8 0x7f527ac34263 in ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #9 0x7f527ac39a32 in () at /usr/lib/libKF5ThreadWeaver.so.5 #10 0x7f527ac34263 in ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #11 0x7f527ac37249 in ThreadWeaver::Thread::run() () at /usr/lib/libKF5ThreadWeaver.so.5 #12 0x7f53342dc6d8 in () at /usr/lib/libQt5Core.so.5 #13 0x7f53331a7454 in start_thread () at /usr/lib/libpthread.so.0 #14 0x7f5333bf17df in clone () at /usr/lib/libc.so.6 Thread 17 (Thread 0x7f52397fa700 (LWP 8666)): #0 0x7f53331ad10f in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0 #1 0x7f53342dd58b in QWaitCondition::wait(QMutex*, unsigned long) () at /usr/lib/libQt5Core.so.5 #2 0x7f527ac351d0 in ThreadWeaver::Weaver::takeFirstAvailableJobOrSuspendOrWait(ThreadWeaver::Thread*, bool, bool, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #3 0x7f527ac399d8 in () at /usr/lib/libKF5ThreadWeaver.so.5 #4 0x7f527ac34263 in ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #5 0x7f527ac39a32 in () at /usr/lib/libKF5ThreadWeaver.so.5 #6 0x7f527ac34263 in ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #7 0x7f527ac37249 in ThreadWeaver::Thread::run() () at /usr/lib/libKF5ThreadWeaver.so.5 #8 0x7f53342dc6d8 in () at /usr/lib/libQt5Core.so.5 #9 0x7f53331a7454 in start_thread () at /usr/lib/libpthread.so.0 #10 0x7f5333bf17df in clone () at /usr/lib/libc.so.6 Thread 16 (Thread 0x7f5239ffb700 (LWP 8665)): #0 0x7f53331ad10f in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0 #1 0x7f53342dd58b in QWaitCondition::wait(QMutex*, unsigned long) () at /usr/lib/libQt5Core.so.5 #2 0x7f527ac351d0 in ThreadWeaver::Weaver::takeFirstAvailableJobOrSuspendOrWait(ThreadWeaver::Thread*, bool, bool, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #3 0x7f527ac399d8 in () at /usr/lib/libKF5ThreadWeaver.so.5 #4 0x7f527ac34263 in ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #5 0x7f527ac39a32 in () at /usr/lib/libKF5ThreadWeaver.so.5 #6 0x7f527ac34263 in ThreadWeaver::Weaver::applyForWork(ThreadWeaver::Thread*, bool) () at /usr/lib/libKF5ThreadWeaver.so.5 #7 0x7f527ac37249 in ThreadWeaver::Thread::run() () at /usr/lib/libKF5ThreadWeaver.so.5 #8 0x7f53342dc6d8 in () at /usr/lib/libQt5Core.so.5 #9 0x7f53331a7454 in start_thread () at /usr/lib/libpthread.so.0 #10 0x7f5333bf17df in clone () at /usr/lib/libc.so.6 Thread 15 (Thread 0x7f523a7fc700 (LWP 8664)): #0 0x7f53331ad10f in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0 #1 0x7f53342dd58b in QWaitCondition::wait(QMutex*, unsigned long) () at /usr/lib/libQt5Core.so.5 #2 0x7f527ac351d0 in ThreadWeaver::Weaver::takeFirstAvailableJobOrSuspendOrWait(ThreadWeaver::Thread*, bool, bool, bool) ()
[choqok] [Bug 376880] New: No way to get all tweets since last time
https://bugs.kde.org/show_bug.cgi?id=376880 Bug ID: 376880 Summary: No way to get all tweets since last time Product: choqok Version: 1.6 Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Twitter Assignee: mehrdad.mom...@gmail.com Reporter: ke...@kde.org CC: scarp...@kde.org Target Milestone: --- No matter how high you set "Number of posts to show in timelines" I only seem to get about the last 200 tweets. It would be great to have a setting to get all tweets since your last read one/last time choqok was running. -- You are receiving this mail because: You are watching all bug changes.
[choqok] [Bug 313546] When new tweets load, scroll position does not stay with the tweets you're looking at
https://bugs.kde.org/show_bug.cgi?id=313546 Kenny Duffus changed: What|Removed |Added CC||ke...@kde.org Ever confirmed|0 |1 Status|UNCONFIRMED |CONFIRMED -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376844] Freeze at channel switching
https://bugs.kde.org/show_bug.cgi?id=376844 Michael Zapf changed: What|Removed |Added CC||forum...@mizapf.de --- Comment #2 from Michael Zapf --- I have the same problem. As I learned, kaffeine has switched from xine to vlc, and so I tried to watch TV on vlc directly. When I use VDPAU, VLC freezes at some occasions when switching channels. When I change the output to "OpenGL GLX video output", I never experienced a freeze when switching channels. (Freeze: The video/audio output stops, but the program is still responsive. In Kaffeine, however, when I press the stop button, the button seems to freeze as well in that occasion.) Now in Kaffeine, there is a setting for libVLC. But although I added the parameter "--vout=glx_xcb", there are still freezes for Kaffeine. So maybe I did it wrong, but I think I read somewhere that the vout parameter is ignored at that point. Also, I found that when I stop DVB in kaffeine with the Stop button, I can avoid freezes for most of the time; they sometimes still occur, but rarely. -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376881] New: Image-Rename on Windows UNC-Path failed
https://bugs.kde.org/show_bug.cgi?id=376881 Bug ID: 376881 Summary: Image-Rename on Windows UNC-Path failed Product: digikam Version: 5.4.0 Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general Assignee: digikam-de...@kde.org Reporter: heiko.boerin...@woerth.de Target Milestone: --- Created attachment 104202 --> https://bugs.kde.org/attachment.cgi?id=104202&action=edit failed rename operation on dfs Dear Digicam-Team, Client: Windows 7 Server: Windows 2012R2 digikam 5.4.0 on digikam 5.4.1 file rename operation (F2) failes while rename a file on a DFS-Share (\\rvmo\daten\Bilder-Bibliothek_Sachb). On a local directory (C:\_Gruppen\Bilder-Bibliothek_Sachb) rename operation works fine. kind regards, Heiko Böringer City Administration of Woerth am Rhein Mozartstraße 2 76744 Wörth Germany -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376881] Image-Rename on Windows UNC-Path failed
https://bugs.kde.org/show_bug.cgi?id=376881 --- Comment #1 from Heiko Boeringer --- Created attachment 104203 --> https://bugs.kde.org/attachment.cgi?id=104203&action=edit faild rename operation 2 -- You are receiving this mail because: You are watching all bug changes.
[krunner] [Bug 372635] do not follow mousepointer when accessing krunner via keyboard
https://bugs.kde.org/show_bug.cgi?id=372635 --- Comment #9 from Martin Steigerwald --- Kai, thank you for thinking on a fix. Whatever the fix may be: Please consider to backport it to Plasma 5.8 LTS, cause this way it can still be integrated in distributions – giving much relief to users how would otherwise be stuck with this really annoying bug for years. I am volunteering to hint Debian Qt/KDE team at a fix thats usable in Plasma 5.8 LTS. -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376882] New: DVB-S: FE_SET_PROPERTY: Invalid argument
https://bugs.kde.org/show_bug.cgi?id=376882 Bug ID: 376882 Summary: DVB-S: FE_SET_PROPERTY: Invalid argument Product: kaffeine Version: unspecified Platform: openSUSE RPMs OS: Linux Status: UNCONFIRMED Severity: grave Priority: NOR Component: general Assignee: mchehab+...@kernel.org Reporter: forum...@mizapf.de Target Milestone: --- Since 2017-02-23, when trying to tune in a DVB-S (non-HD) channel, the console output appears: 24-02-17 13:08:56.902 [Critical] FE_SET_PROPERTY: Invalid argument 24-02-17 13:08:56.903 [Warning ] ioctl FE_SET_PROPERTY failed for frontend /dev/dvb/adapter0/frontend0 and no output is shown. Kaffeine is still working, but only HD channels can be watched. This is a regression on 2017-02-23. VLC is still working with the same settings. Kaffeine Version: 2.0.5 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376883] New: Paste on (same) layer
https://bugs.kde.org/show_bug.cgi?id=376883 Bug ID: 376883 Summary: Paste on (same) layer Product: krita Version: 3.1.2 Platform: Other OS: unspecified Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- Hi, There is a "Paste" and "Paste into New image" commands, but it would be great to be have "Paste into Layer". It would paste the buffer into the selected layer. This is especially useful for animation; because actually a new layer is added each time you copy / paste something. -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376881] Image-Rename on Windows UNC-Path failed
https://bugs.kde.org/show_bug.cgi?id=376881 caulier.gil...@gmail.com changed: What|Removed |Added Component|general |AdvancedRename CC||caulier.gil...@gmail.com -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376884] New: Active layer in the Timeline and Layers docks should be synced
https://bugs.kde.org/show_bug.cgi?id=376884 Bug ID: 376884 Summary: Active layer in the Timeline and Layers docks should be synced Product: krita Version: 3.1.2 Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- Hi, The active layer from the Timeline and Layers docks should be synced. For now, if copy/paste a selection from within a timeline's frame; it's not the content of timeline layer which is copied, but the content of the layer selected in the Layers dock; which is not logicial. Thanks ! -- You are receiving this mail because: You are watching all bug changes.
[kmail2] [Bug 374056] ctrl++ does not allow zoom in
https://bugs.kde.org/show_bug.cgi?id=374056 --- Comment #3 from Laurent Montel --- I use thunbleweed, french keyboard. -- You are receiving this mail because: You are watching all bug changes.
[kmail2] [Bug 373843] kmail 5.4.0 "Act on new/unread mail in this folder" option not working
https://bugs.kde.org/show_bug.cgi?id=373843 Laurent Montel changed: What|Removed |Added Version Fixed In||5.4.2 CC||mon...@kde.org Resolution|--- |FIXED Status|UNCONFIRMED |RESOLVED --- Comment #3 from Laurent Montel --- Fixed in 5.4.2 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376883] Paste on active layer
https://bugs.kde.org/show_bug.cgi?id=376883 gordie.lacha...@gmail.com changed: What|Removed |Added Summary|Paste on (same) layer |Paste on active layer -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376885] New: The setting 'Always show original images' cannot be disabled in 5.5.0
https://bugs.kde.org/show_bug.cgi?id=376885 Bug ID: 376885 Summary: The setting 'Always show original images' cannot be disabled in 5.5.0 Product: digikam Version: 5.5.0 Platform: Mac OS X Disk Images OS: OS X Status: UNCONFIRMED Severity: normal Priority: NOR Component: Versioning Assignee: digikam-de...@kde.org Reporter: g0ra...@gmail.com Target Milestone: --- I was testing Digikam 5.4.0 and the setting 'Preferences > Versioning > Always show original images' worked correctly. I could disable it and it would hide old versions of images. After upgrading to 5.5.0 (a pre-version bundle to get around Unique ID bug 375483 for Samsung phones) I noticed that I can no longer disable the 'Always show original images' setting. It always stays enabled, even though other controls in preferences are able to be saved. I've tried 2 releases of 5.5.0, one on 05/02/17 and one on 24/02/17 (today), both have this bug. Downgrading to 5.4.0 makes this work again, but of course bug 375483 is back. Thanks. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 376826] assign windows to Activities in task manager unriable
https://bugs.kde.org/show_bug.cgi?id=376826 David Edmundson changed: What|Removed |Added Ever confirmed|0 |1 Status|UNCONFIRMED |CONFIRMED -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376885] The setting 'Always show original images' cannot be disabled in 5.5.0
https://bugs.kde.org/show_bug.cgi?id=376885 g0rak changed: What|Removed |Added CC||g0ra...@gmail.com -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 364162] Copy Paste to Frame
https://bugs.kde.org/show_bug.cgi?id=364162 gordie.lacha...@gmail.com changed: What|Removed |Added CC||gordie.lacha...@gmail.com --- Comment #2 from gordie.lacha...@gmail.com --- Totally agree, highly required ! Which also means the current "Copy Frame" command should be renamed to "Clone Current Frame" or something like that. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376883] Paste on active layer
https://bugs.kde.org/show_bug.cgi?id=376883 --- Comment #1 from gordie.lacha...@gmail.com --- Related to https://bugs.kde.org/show_bug.cgi?id=364162 -- You are receiving this mail because: You are watching all bug changes.
[kmymoney4] [Bug 328050] KDE language, number and time option
https://bugs.kde.org/show_bug.cgi?id=328050 Chris changed: What|Removed |Added CC||camel.christo...@gmail.com --- Comment #5 from Chris --- Is there any progress on this issue ? I'm french, and I used to have a space as group separator for numbers. Currently, kmymoney 4.8.0 (running with KDE 4.14.29 on Linux Arch 4.9.11-1) is not able to be configured this way. Thx. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376886] New: "insert 1 frame" and "remove 1 frame" should be available for layers
https://bugs.kde.org/show_bug.cgi?id=376886 Bug ID: 376886 Summary: "insert 1 frame" and "remove 1 frame" should be available for layers Product: krita Version: 3.1.2 Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- There is a contextual command "insert n frame left" and "insert n frame right" when right-clicking the top of the Timeline dock. 1 / I don't think two commands are useful for this, we could get rid of "insert n frame left" and rename "insert n frame right" to "insert n columns" (to match the existing "remove n column" command) 2 / This command should also be available when right-clicking a frame - and thud extend/reduce only the frames of a layer, not of the whole timeline. This is very important to help timing animations Thanks ! -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 364984] group not editable at new window view.
https://bugs.kde.org/show_bug.cgi?id=364984 Jörn PM changed: What|Removed |Added CC||webmas...@ionflux.org --- Comment #7 from Jörn PM --- Also happens consistently with current build from git on Ubuntu 16.10. First, I have to open the new window before I open or create any new document, otherwise nothing happens at all if I click open new window (or view), with no errors given. If I open the new window first and then open a document, I get the "group not editable" message. I do not even have to create a new view into the document for this to happen. Also, I cannot create or delete any new layers after opening the new window. It will work again after closing the second window. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376887] New: layer icon for "show in timeline"
https://bugs.kde.org/show_bug.cgi?id=376887 Bug ID: 376887 Summary: layer icon for "show in timeline" Product: krita Version: 3.1.2 Platform: Other OS: Windows CE Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- Hi, it would be great to have a layer icon for the "show in timeline" option; so you can visually see which are the layers enabled/disabled in the timeline. Thanks ! -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376874] enable shortcuts for "insert 1 frame" and "remove 1 frame"
https://bugs.kde.org/show_bug.cgi?id=376874 --- Comment #2 from gordie.lacha...@gmail.com --- I filled a bug for the layer commands : https://bugs.kde.org/show_bug.cgi?id=376886 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376883] Paste on active layer
https://bugs.kde.org/show_bug.cgi?id=376883 Boudewijn Rempt changed: What|Removed |Added Status|UNCONFIRMED |CONFIRMED Severity|normal |wishlist CC||b...@valdyas.org Ever confirmed|0 |1 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376888] New: visually distinguish empty and non empty keyframes (and other frames types)
https://bugs.kde.org/show_bug.cgi?id=376888 Bug ID: 376888 Summary: visually distinguish empty and non empty keyframes (and other frames types) Product: krita Version: 3.1.2 Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- Created attachment 104204 --> https://bugs.kde.org/attachment.cgi?id=104204&action=edit types of frames in Adobe's Flash Hi, we need more visual "grammar" for frames in the timelines, so you can see quickly of what your animation is made. Actually, frames and keyframes looks different in Krita : frames looks like "transparent" rectangles while keyframes looks like colored rectangles. It should also distinguish empty and non-empty keyframes. Speaking of this, since Krita now supports tweening, better have also something that shows a frame is tweened. Well, Flash, the old man of wisdom, did this perfectly. See attached file. -- You are receiving this mail because: You are watching all bug changes.
[kdeconnect] [Bug 376803] Cannot use KDE Connect on connected wifi using the proxy (squid)
https://bugs.kde.org/show_bug.cgi?id=376803 --- Comment #1 from raka.li...@gmail.com --- Also, KDE connect cannot use on public captive wifi. I'm tried it on McDonalds WiFi. -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376844] Freeze at channel switching
https://bugs.kde.org/show_bug.cgi?id=376844 --- Comment #3 from Mauro Carvalho Chehab --- (In reply to Michael Zapf from comment #2) > I have the same problem. As I learned, kaffeine has switched from xine to > vlc, and so I tried to watch TV on vlc directly. > > When I use VDPAU, VLC freezes at some occasions when switching channels. > When I change the output to "OpenGL GLX video output", I never experienced a > freeze when switching channels. Ah! That could very likely be due to GPU driver issues, specially if you're using some proprietary driver. If this is a GPU driver issue, I guess there's not much we can do at Kaffeine side. > > (Freeze: The video/audio output stops, but the program is still responsive. > In Kaffeine, however, when I press the stop button, the button seems to > freeze as well in that occasion.) Hmm... libVLC sometimes don't synchronize with a mpeg-TS screen, with causes it to fail parsing it. That happens even with recorded videos when played on vlc. There are some improvements on it at version 3.0 (although "version 3.0" is actually a rolling version, as its final release didn't happen yet - so results may vary, depending on the patches applied to it). > > Now in Kaffeine, there is a setting for libVLC. But although I added the > parameter "--vout=glx_xcb", there are still freezes for Kaffeine. So maybe I > did it wrong, but I think I read somewhere that the vout parameter is > ignored at that point. You need to restart Kaffeine for it to use --vout. This parameter is passed when Kaffeine starts the libVLC backend, so it should not be ignored. Unfortunately, even on current versions of libVLC, there's no way to configure the vout in runtime. I've been discussing with VLC developers for a while about adding a way to better control vout and mouse events passed to it, in order to fix BZ#373814. > Also, I found that when I stop DVB in kaffeine with the Stop button, I can > avoid freezes for most of the time; they sometimes still occur, but rarely. Not sure if, currently, changing channels makes libvlc to stop/restart, but I guess it doesn't. I'll take deeper a look, but such kind of change may slow down channel changes and cause issues with pause. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376889] New: "Show in Timeline" : layers should inherit their parents for this option
https://bugs.kde.org/show_bug.cgi?id=376889 Bug ID: 376889 Summary: "Show in Timeline" : layers should inherit their parents for this option Product: krita Version: 3.1.2 Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- Hi ! The option "show in timeline" for layers should inherit the value of their parents (if they have one). Let's say I have this structure : -Group01 [X] Show in timeline --layer 1 [ ] Show in timeline --layer 2 [X] Show in timeline Now if I uncheck "Show in timeline" for Group01, layer 1 and layer 2 should be hidden from timeline too. Of course, if I check Group01 again, they should return to their previous state. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 371221] Restored maximized windows can't be minimized
https://bugs.kde.org/show_bug.cgi?id=371221 Gabriel C changed: What|Removed |Added Product|ksmserver |kwin Version|5.8.2 |5.9.2 Assignee|l.lu...@kde.org |kwin-bugs-n...@kde.org Component|general |general CC||nix.or@gmail.com -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 376890] New: onion skin for layer should be hidden if layer is not listed in the timeline
https://bugs.kde.org/show_bug.cgi?id=376890 Bug ID: 376890 Summary: onion skin for layer should be hidden if layer is not listed in the timeline Product: krita Version: 3.1.2 Platform: Other OS: All Status: UNCONFIRMED Severity: normal Priority: NOR Component: Animation Assignee: krita-bugs-n...@kde.org Reporter: gordie.lacha...@gmail.com Target Milestone: --- Well, the title says it all : onion skin for a layer should be hidden if that layer is not listed in the timeline :) Thanks -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376882] DVB-S: FE_SET_PROPERTY: Invalid argument
https://bugs.kde.org/show_bug.cgi?id=376882 --- Comment #1 from Mauro Carvalho Chehab --- (In reply to Michael Zapf from comment #0) > Since 2017-02-23, when trying to tune in a DVB-S (non-HD) channel, the > console output appears: > > 24-02-17 13:08:56.902 [Critical] FE_SET_PROPERTY: Invalid argument > 24-02-17 13:08:56.903 [Warning ] ioctl FE_SET_PROPERTY failed for frontend > /dev/dvb/adapter0/frontend0 > > and no output is shown. Kaffeine is still working, but only HD channels can > be watched. This is a regression on 2017-02-23. This kind of issue sounds more like a libdvbv5. Did you change also libdvbv5? -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 376826] assign windows to Activities in task manager unriable
https://bugs.kde.org/show_bug.cgi?id=376826 David Edmundson changed: What|Removed |Added Latest Commit||https://commits.kde.org/pla ||sma-desktop/e5df3ded85c94f0 ||a33afe12b18e6afad96f12639 Status|CONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #5 from David Edmundson --- Git commit e5df3ded85c94f0a33afe12b18e6afad96f12639 by David Edmundson. Committed on 24/02/2017 at 14:24. Pushed by davidedmundson into branch 'Plasma/5.9'. Avoid capturing MenuItem instead determine checked state from toggled signal Summary: Due to JS lambdas menuItem is being captured by reference, and as such the call to menuItem.checked returns the checked state of the last item in the for loop. Instead of adding to the capture this patch uses the supplied boolean from the QMenuItem::toggled signal. Also unlike Array.concat Array.splice alters the current array, we don't want to create a new var. Test Plan: Debug of menuItem.text showed we were capturing the wrong thing Clicked window into multiple activities and unticked them. All worked as intended Reviewers: #plasma Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D4757 M +5-6applets/taskmanager/package/contents/ui/ContextMenu.qml https://commits.kde.org/plasma-desktop/e5df3ded85c94f0a33afe12b18e6afad96f12639 -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376844] Freeze at channel switching
https://bugs.kde.org/show_bug.cgi?id=376844 --- Comment #4 from Michael Zapf --- The problem appeared after my hardware upgrade (including a RX 480) and operating system upgrade (openSUSE Tumbleweed). Had to go to Tumbleweed (rolling release) because the Catalyst driver has become unavailable, and the RX 480 is only supported in later releases of the OSS driver (amdgpu). So in contrast, I'm not using the proprietary driver anymore. However, with all these changes, including kaffeine's switch to VLC, it is hard to tell where the problem actually is. What I saw was that despite my setting of vout (and restart of kaffeine), I'm getting these lines: 24-02-17 15:27:01.255 [Info] Using built-in dvb device manager 24-02-17 15:27:01.821 [Info] Found dvb device : Montage Technology DS3000 [7f0d7c093fa8] avcodec decoder: Using G3DVL VDPAU Driver Shared Library version 1.0 for hardware decoding. libVLC arguments are: --no-video-title-show --vout=glx_xcb (Where can I actually find the values for vout? Not even the man page of vlc was helpful in that respect.) -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376882] DVB-S: FE_SET_PROPERTY: Invalid argument
https://bugs.kde.org/show_bug.cgi?id=376882 --- Comment #2 from Michael Zapf --- libdvbv5-0 is at 1.12.2 since Feb 14, according to the update log. Mind that vlc does not experience any issues when tuning non-HD. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 371221] Restored maximized windows can't be minimized
https://bugs.kde.org/show_bug.cgi?id=371221 --- Comment #1 from Martin Gräßlin --- What do you mean with "No way to minimize?" How did you try to minimize? -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376844] Freeze at channel switching
https://bugs.kde.org/show_bug.cgi?id=376844 --- Comment #5 from Michael Zapf --- Just noticed that vlc outputs the same line "Using G3DVL VDPAU Driver Shared Library version 1.0 for hardware decoding" although video is set to OpenGL GLX video output (XCB). -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376815] Restore from Trash works incorrectly
https://bugs.kde.org/show_bug.cgi?id=376815 Johannes Hirte changed: What|Removed |Added CC||johannes.hirte@datenkhaos.d ||e --- Comment #4 from Johannes Hirte --- This leads now to the following compile error: /var/tmp/portage/media-gfx/digikam-/work/digikam-/libs/dtrash/dtrash.cpp: In static member function ‘static QString Digikam::DTrash::getAvialableJsonFilePathInTrash(const QString&, const QString&, int)’: /var/tmp/portage/media-gfx/digikam-/work/digikam-/libs/dtrash/dtrash.cpp:222:41: error: ‘QChar::QChar(char)’ is private within this context randomString.replace(0, 1, QChar('-')); ^ In file included from /usr/include/qt5/QtCore/qstring.h:48:0, from /usr/include/qt5/QtCore/qobject.h:47, from /usr/include/qt5/QtCore/QObject:1, from /var/tmp/portage/media-gfx/digikam-/work/digikam-/libs/dtrash/dtrash.h:29, from /var/tmp/portage/media-gfx/digikam-/work/digikam-/libs/dtrash/dtrash.cpp:24: /usr/include/qt5/QtCore/qchar.h:562:5: note: declared private here QChar(char c) Q_DECL_NOTHROW; ^ make[2]: *** [libs/dtrash/CMakeFiles/dtrash_src.dir/build.make:63: libs/dtrash/CMakeFiles/dtrash_src.dir/dtrash.cpp.o] Error 1 possible fix diff --git a/libs/dtrash/dtrash.cpp b/libs/dtrash/dtrash.cpp index 7b65f3844d..4eed798c3e 100644 --- a/libs/dtrash/dtrash.cpp +++ b/libs/dtrash/dtrash.cpp @@ -219,7 +219,7 @@ QString DTrash::createJsonRecordForFile(const QString& collectionPath, const QSt QString DTrash::getAvialableJsonFilePathInTrash(const QString& collectionPath, const QString& baseName, int version) { QString randomString = QUuid::createUuid().toString(); -randomString.replace(0, 1, QChar('-')); +randomString.replace(0, 1, QChar(0x2D)); randomString.chop(1); QString pathToCreateJsonFile = collectionPath + QLatin1Char('/') + QChar::fromLatin1() should work too -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 375924] Cannot rearrange pinned applications
https://bugs.kde.org/show_bug.cgi?id=375924 Eike Hein changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #15 from Eike Hein --- Fixed by 16680da7ab0e in plasma-workspace for 5.9.3. -- You are receiving this mail because: You are watching all bug changes.
[kmail2] [Bug 376565] Automatic spell checking is not working
https://bugs.kde.org/show_bug.cgi?id=376565 --- Comment #1 from avlas --- I tried creating a new user from scratch for testing purposes and it works. This doesn't seem then a packaging issue, neither an application bug. Most likely this relates to a configuration issue that is making it not working for my (production) user, perhaps something has change between versions and the config files that used to work, stopped working. Following this strategy, I tried to temporarily rename kmail2 files in my home (in .config/.local/.cache) to see if that would fix the issue and identify the problem. Unfortunately this has been unsuccesful so far. I wonder if this may be related to kdepim... Btw, another application that seems to suffer the same (or at least similar issue) is choqok. I'm willing to test further but also a bit out of ideas, so any suggestion on how to test this further will be highly appreciated. Thanks in advance. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 371221] Restored maximized windows can't be minimized
https://bugs.kde.org/show_bug.cgi?id=371221 --- Comment #2 from Gabriel C --- With the 'minimize' button from the decoration. Also I found out every app is fine with -session and will minimize / mazimize but not when kwin_x11 starts with -session. Also I get lots : conversion of \"0,0,0,0\" to QRect failed from fsrestoreX= and restoreX= .. here is a partial valgrind log from 5.9.2.. ==27531== Command: kwin_x11 -session 10e177657200014878708690239150010_1487871669_986439 --replace ==27531== QXcbConnection: XCB error: 3 (BadWindow), sequence: 178, resource id: 2097158, major code: 20 (GetProperty), minor code: 0 "\"restore1\" - conversion of \"0,0,0,0\" to QRect failed" "\"restore2\" - conversion of \"0,0,0,1048\" to QRect failed" GAB: isManaged() ==27531== Syscall param writev(vector[...]) points to uninitialised byte(s) ==27531==at 0x512946D: ??? (in /lib/libc-2.24.so) ==27531==by 0x610449C: ??? (in /usr/lib/libxcb.so.1.1.0) ==27531==by 0x610489C: ??? (in /usr/lib/libxcb.so.1.1.0) ==27531==by 0x6104AF6: ??? (in /usr/lib/libxcb.so.1.1.0) ==27531==by 0x61052CB: xcb_flush (in /usr/lib/libxcb.so.1.1.0) ==27531==by 0x55C5507: KWin::Client::sendSyntheticConfigureNotify() (geometry.cpp:1581) ==27531==by 0x55C7A3C: KWin::Client::setGeometry(int, int, int, int, KWin::AbstractClient::ForceGeometry_t) (geometry.cpp:1978) ==27531==by 0x55095A4: KWin::AbstractClient::setGeometry(QRect const&, KWin::AbstractClient::ForceGeometry_t) (abstract_client.h:1086) ==27531==by 0x55C8B1D: KWin::AbstractClient::blockGeometryUpdates(bool) (geometry.cpp:2137) ==27531==by 0x55A0C60: KWin::Client::manage(unsigned int, bool) (manage.cpp:646) ==27531==by 0x54CD04C: KWin::Workspace::createClient(unsigned int, bool) (workspace.cpp:520) ==27531==by 0x54CC148: KWin::Workspace::init() (workspace.cpp:327) ==27531== Address 0x1bbfa6f8 is 4,936 bytes inside a block of size 21,152 alloc'd ==27531==at 0x4C2D765: calloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==27531==by 0x6103E7B: xcb_connect_to_fd (in /usr/lib/libxcb.so.1.1.0) ==27531==by 0x6107BB0: xcb_connect_to_display_with_auth_info (in /usr/lib/libxcb.so.1.1.0) ==27531==by 0xD5A5989: _XConnectXCB (in /usr/lib/libX11.so.6.3.0) ==27531==by 0xD596EBE: XOpenDisplay (in /usr/lib/libX11.so.6.3.0) ==27531==by 0x22C171A7: QXcbConnection::QXcbConnection(QXcbNativeInterface*, bool, unsigned int, char const*) (qxcbconnection.cpp:581) ==27531==by 0x22C1B5FB: QXcbIntegration::QXcbIntegration(QStringList const&, int&, char**) (qxcbintegration.cpp:186) ==27531==by 0x40265EC: QXcbIntegrationPlugin::create(QString const&, QStringList const&, int&, char**) (qxcbmain.cpp:56) ==27531==by 0x6FA3188: QPlatformIntegrationFactory::create(QString const&, QStringList const&, int&, char**, QString const&) (qplatformintegrationfactory.cpp:71) ==27531==by 0x6FB0903: init_platform (qguiapplication.cpp:1094) ==27531==by 0x6FB0903: QGuiApplicationPrivate::createPlatformIntegration() (qguiapplication.cpp:1257) ==27531==by 0x6FB15E4: QGuiApplicationPrivate::createEventDispatcher() (qguiapplication.cpp:1274) ==27531==by 0x76138EF: QCoreApplicationPrivate::init() (qcoreapplication.cpp:787) .. These GAB messages are just some qDebug() I've added around , there is no code changes. -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376882] DVB-S: FE_SET_PROPERTY: Invalid argument
https://bugs.kde.org/show_bug.cgi?id=376882 --- Comment #3 from Mauro Carvalho Chehab --- (In reply to Michael Zapf from comment #2) > libdvbv5-0 is at 1.12.2 since Feb 14, according to the update log. Mind that > vlc does not experience any issues when tuning non-HD. There is an important regression fix at libdvbv5 that was merged on version 1.12.3: https://git.linuxtv.org/v4l-utils.git/log/?h=stable-1.12 -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376891] New: Digikam becomes unusable with many Metatags
https://bugs.kde.org/show_bug.cgi?id=376891 Bug ID: 376891 Summary: Digikam becomes unusable with many Metatags Product: digikam Version: 5.4.0 Platform: Neon Packages OS: Linux Status: UNCONFIRMED Severity: major Priority: NOR Component: Metadata Assignee: digikam-de...@kde.org Reporter: bzru...@protonmail.ch Target Milestone: --- Problem/Motivation I tried Digikam as a replacement for my current Mac/Aperture setup. I tried on my Linux Box first with some images and everything does well, nice :) So I started the actual migration of around 28.000 images and let Digikam finish all work. Some hours later all thumbs and other stuff were created okay. The actual problem started when it comes to Metadata. Searching for a tag takes ages, but when it comes to tagging, digikam totally failed :( I have 5000+ tags in my list all at first level (no nested tags) Opening the Tag Manager takes around 15seconds, adding a new tag or moving a tag takes around 1 minute and digikam doesn't respond to anything during that. My first idea: Okay there are missing database indexes, but that doesn't seem the case. Next idea, IO problem: I moved the digikam SQLiteDB to RAM, but no effect. Next idea, SQLite problem: Even knowing SQLite is usually really fast I gave MySQL a try - but as to expect - no effect. So the problem is with digikam itself. As the CPU usage goes up to 100% I think digikam stucks during tags qt-list-building/rendering or whatever. Any ideas ;) Thanks -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376882] DVB-S: FE_SET_PROPERTY: Invalid argument
https://bugs.kde.org/show_bug.cgi?id=376882 --- Comment #4 from Mauro Carvalho Chehab --- (In reply to Mauro Carvalho Chehab from comment #3) > (In reply to Michael Zapf from comment #2) > > libdvbv5-0 is at 1.12.2 since Feb 14, according to the update log. Mind that > > vlc does not experience any issues when tuning non-HD. > > There is an important regression fix at libdvbv5 that was merged on version > 1.12.3: > https://git.linuxtv.org/v4l-utils.git/log/?h=stable-1.12 (sorry, rit enter before finishing he comment) The fix affects handling DVB-S with DiSEqC. So, it could be the root issue of your problem. The actual patch is this: https://git.linuxtv.org/v4l-utils.git/commit/?h=stable-1.12&id=0fa862430ecdcaef9d69b681b17026f0765f185b Could you please test with this patch applied on libdvbv5, the issue is fixed? -- You are receiving this mail because: You are watching all bug changes.
[phonon-backend-vlc] [Bug 376871] KAlarm Crash
https://bugs.kde.org/show_bug.cgi?id=376871 David Jarvie changed: What|Removed |Added Product|kalarm |phonon-backend-vlc Component|general |general Assignee|djar...@kde.org |sit...@kde.org CC||bcooks...@kde.org, ||f...@kde.org, ||j...@videolan.org, ||myr...@kde.org --- Comment #1 from David Jarvie --- This crash is buried deep inside Phonon/VLC, so assigning it to phonon vlc instead. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 375878] Eraser will not switch back to brush after turning Wacom pen back around
https://bugs.kde.org/show_bug.cgi?id=375878 Jörn PM changed: What|Removed |Added CC||webmas...@ionflux.org --- Comment #15 from Jörn PM --- I also have this issue on Ubuntu 16.10 with latest git build. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 371221] Restored maximized windows can't be minimized
https://bugs.kde.org/show_bug.cgi?id=371221 --- Comment #3 from Gabriel C --- There an small video to demonstrate this : http://ftp.frugalware.org/pub/other/people/crazy/vokoscreen-2017-02-24_16-37-11.mkv -- You are receiving this mail because: You are watching all bug changes.
[Discover] [Bug 376863] First letter is lost when replacing search bar text
https://bugs.kde.org/show_bug.cgi?id=376863 --- Comment #1 from Aleix Pol --- :/ I'm unable to reproduce. Maybe a video would help? Does it _always_ happen? -- You are receiving this mail because: You are watching all bug changes.
[Akonadi] [Bug 374734] Akonadiserver Crashes While Deleting Email
https://bugs.kde.org/show_bug.cgi?id=374734 Daniel Vrátil changed: What|Removed |Added Resolution|--- |FIXED Status|CONFIRMED |RESOLVED Latest Commit|https://commits.kde.org/ako |https://commits.kde.org/ako |nadi/5219f770b998aad16a3d51 |nadi/1593c17da9cbdc1483541e |bbd4f4c7ceb8b143c9 |1e7d7630f3c91f8208 --- Comment #29 from Daniel Vrátil --- Git commit 1593c17da9cbdc1483541e1e7d7630f3c91f8208 by Daniel Vrátil. Committed on 24/02/2017 at 16:22. Pushed by dvratil into branch 'Applications/16.12'. Fix crash when Connection is closed while ItemRetriever is running ItemRetriever::exec() runs a nested QEventLoop. If the parent Connection is terminated while the event loop is running, the delayed AkThread::quit() invocation is executed and the thread is destroyed, while technically there is still execution going on. To workaround that issue we don't destroy the thread in Connection::quit() if we detect a nested QEventLoop but instead we just notify the event loop to quit and destroy the thread later when execution returns back to ItemRetriever::slotNewData(). This fixes a crash in QPSQLQuery, which was dereferencing a QPSQLDriver after the driver has been deleted as the thread was destroyed and avoids more of random crashes due to the Connection being virtually deleted from its own nested event loop. FIXED-IN: 5.4.3 M +24 -1src/server/connection.cpp M +3-0src/server/connection.h M +1-0src/server/storage/datastore.cpp M +2-0src/server/storage/itemretriever.cpp https://commits.kde.org/akonadi/1593c17da9cbdc1483541e1e7d7630f3c91f8208 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 376892] New: Kwin Crash
https://bugs.kde.org/show_bug.cgi?id=376892 Bug ID: 376892 Summary: Kwin Crash Product: kwin Version: 5.9.2 Platform: Archlinux Packages OS: Linux Status: UNCONFIRMED Keywords: drkonqi Severity: crash Priority: NOR Component: general Assignee: kwin-bugs-n...@kde.org Reporter: m...@abv.bg Target Milestone: --- Application: kwin_x11 (5.9.2) Qt Version: 5.8.0 Frameworks Version: 5.31.0 Operating System: Linux 4.9.11-1-ARCH x86_64 Distribution: "Arch Linux" -- Information about the crash: - What I was doing when the application crashed: At every reboot kwin crashes. The sytem is freshly updated. My computer is with Intel 3770, 16GB RAM and Nvidia GTX 980. The crash can be reproduced every time. -- Backtrace: Application: KWin (kwin_x11), signal: Aborted Using host libthread_db library "/usr/lib/libthread_db.so.1". [Current thread is 1 (Thread 0x7f721393c840 (LWP 672))] Thread 6 (Thread 0x7f71db7fe700 (LWP 859)): #0 0x7f720c5bd10f in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0 #1 0x7f720f934234 in () at /usr/lib/libQt5Script.so.5 #2 0x7f720f934279 in () at /usr/lib/libQt5Script.so.5 #3 0x7f720c5b7454 in start_thread () at /usr/lib/libpthread.so.0 #4 0x7f72133797df in clone () at /usr/lib/libc.so.6 Thread 5 (Thread 0x7f71e14c3700 (LWP 857)): #0 0x7f720c5bd4b8 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0 #1 0x7f71e3571e44 in () at /usr/lib/libGLX_nvidia.so.0 #2 0x7f71e228f394 in () at /usr/lib/libnvidia-glcore.so.378.13 #3 0x7f71e357112c in () at /usr/lib/libGLX_nvidia.so.0 #4 0x7f720c5b7454 in start_thread () at /usr/lib/libpthread.so.0 #5 0x7f72133797df in clone () at /usr/lib/libc.so.6 Thread 4 (Thread 0x7f71e3fff700 (LWP 855)): #0 0x7f7213370551 in ppoll () at /usr/lib/libc.so.6 #1 0x7f72109f52f9 in qt_safe_poll(pollfd*, unsigned long, timespec const*) () at /usr/lib/libQt5Core.so.5 #2 0x7f72109f696a in QEventDispatcherUNIX::processEvents(QFlags) () at /usr/lib/libQt5Core.so.5 #3 0x7f72109a389a in QEventLoop::exec(QFlags) () at /usr/lib/libQt5Core.so.5 #4 0x7f72107c5a73 in QThread::exec() () at /usr/lib/libQt5Core.so.5 #5 0x7f72107ca6d8 in () at /usr/lib/libQt5Core.so.5 #6 0x7f720c5b7454 in start_thread () at /usr/lib/libpthread.so.0 #7 0x7f72133797df in clone () at /usr/lib/libc.so.6 Thread 3 (Thread 0x7f71f3bd5700 (LWP 777)): #0 0x7f7213370551 in ppoll () at /usr/lib/libc.so.6 #1 0x7f72109f52f9 in qt_safe_poll(pollfd*, unsigned long, timespec const*) () at /usr/lib/libQt5Core.so.5 #2 0x7f72109f696a in QEventDispatcherUNIX::processEvents(QFlags) () at /usr/lib/libQt5Core.so.5 #3 0x7f72109a389a in QEventLoop::exec(QFlags) () at /usr/lib/libQt5Core.so.5 #4 0x7f72107c5a73 in QThread::exec() () at /usr/lib/libQt5Core.so.5 #5 0x7f720a47c125 in () at /usr/lib/libQt5DBus.so.5 #6 0x7f72107ca6d8 in () at /usr/lib/libQt5Core.so.5 #7 0x7f720c5b7454 in start_thread () at /usr/lib/libpthread.so.0 #8 0x7f72133797df in clone () at /usr/lib/libc.so.6 Thread 2 (Thread 0x7f71fa0b6700 (LWP 712)): #0 0x7f721337048d in poll () at /usr/lib/libc.so.6 #1 0x7f721248c8e0 in () at /usr/lib/libxcb.so.1 #2 0x7f721248e679 in xcb_wait_for_event () at /usr/lib/libxcb.so.1 #3 0x7f71fb192239 in () at /usr/lib/libQt5XcbQpa.so.5 #4 0x7f72107ca6d8 in () at /usr/lib/libQt5Core.so.5 #5 0x7f720c5b7454 in start_thread () at /usr/lib/libpthread.so.0 #6 0x7f72133797df in clone () at /usr/lib/libc.so.6 Thread 1 (Thread 0x7f721393c840 (LWP 672)): [KCrash Handler] #6 0x7f72132c404f in raise () at /usr/lib/libc.so.6 #7 0x7f72132c547a in abort () at /usr/lib/libc.so.6 #8 0x7f72107b0e21 in () at /usr/lib/libQt5Core.so.5 #9 0x7f72107c4d04 in QThread::~QThread() () at /usr/lib/libQt5Core.so.5 #10 0x7f72107c4df9 in QThread::~QThread() () at /usr/lib/libQt5Core.so.5 #11 0x7f72109cf411 in QObjectPrivate::deleteChildren() () at /usr/lib/libQt5Core.so.5 #12 0x7f72109d8d6f in QObject::~QObject() () at /usr/lib/libQt5Core.so.5 #13 0x7f71f31b1c49 in KWin::X11StandalonePlatform::~X11StandalonePlatform() () at /usr/lib/qt/plugins/org.kde.kwin.platforms/KWinX11Platform.so #14 0x7f72109cf411 in QObjectPrivate::deleteChildren() () at /usr/lib/libQt5Core.so.5 #15 0x7f72109d8d6f in QObject::~QObject() () at /usr/lib/libQt5Core.so.5 #16 0x7f72109a6f56 in QCoreApplication::~QCoreApplication() () at /usr/lib/libQt5Core.so.5 #17 0x7f7211687dc1 in QApplication::~QApplication() () at /usr/lib/libQt5Widgets.so.5 #18 0x7f7213636834 in () at /usr/lib/libkdeinit5_kwin_x11.so #19 0x7f72136383e0 in kdemain () at /usr/lib/libkdeinit5_kwin_x11.so #20 0x7f72132b1291 in __libc_start_main () at /usr/lib/libc.so.6 #21 0x0040069a in _start (
[kaffeine] [Bug 376844] Freeze at channel switching
https://bugs.kde.org/show_bug.cgi?id=376844 yuli...@mailbox.org changed: What|Removed |Added CC||yuli...@mailbox.org --- Comment #6 from yuli...@mailbox.org --- (In reply to Michael Zapf from comment #4) > (Where can I actually find the values for vout? Not even the man page of vlc > was helpful in that respect.) I have the same problem, vlc -H gives some more information. But I can't really make kaffeine do what VLC does. In my case the performace in kaffeine is bad, but in VLC and in other players it is good. I will open a separate bug for it. BTW: Do you use wayland? I use it and there were problems with the detection of the correct driver for VDPAU. I had to set an environment variable in order to use VDPAU_DRIVER=r600 instead of nvidia. And maybe it gives helpful information when using also -v (or -vv ) -- You are receiving this mail because: You are watching all bug changes.
[plasma4] [Bug 264918] Panel won't hide if classic menu or panel sub menu is used
https://bugs.kde.org/show_bug.cgi?id=264918 Grzegorz Wierzowiecki changed: What|Removed |Added CC||gwpub...@wp.pl -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376815] Restore from Trash works incorrectly
https://bugs.kde.org/show_bug.cgi?id=376815 --- Comment #5 from Maik Qualmann --- Git commit 2d6880ab9cc7d9d714a767ff4be090fbb8092e7d by Maik Qualmann. Committed on 24/02/2017 at 17:34. Pushed by mqualmann into branch 'master'. fix compile QChar()->QLatin1Char() M +1-1libs/dtrash/dtrash.cpp https://commits.kde.org/digikam/2d6880ab9cc7d9d714a767ff4be090fbb8092e7d -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376885] The setting 'Always show original images' cannot be disabled in 5.5.0
https://bugs.kde.org/show_bug.cgi?id=376885 Maik Qualmann changed: What|Removed |Added CC||metzping...@gmail.com --- Comment #1 from Maik Qualmann --- This problem is actually fixed on 22/01/17. With this commit: https://commits.kde.org/digikam/e207361216234f742a57abc311d08d71a0c3acb8 I'll check it again. Maik -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376893] New: Bad performance of kaffeine when watching HD channels compared to VLC and other players
https://bugs.kde.org/show_bug.cgi?id=376893 Bug ID: 376893 Summary: Bad performance of kaffeine when watching HD channels compared to VLC and other players Product: kaffeine Version: unspecified Platform: Other OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general Assignee: mchehab+...@kernel.org Reporter: yuli...@mailbox.org Target Milestone: --- Created attachment 104205 --> https://bugs.kde.org/attachment.cgi?id=104205&action=edit kaffeine --debug using libVLC with args: -v Hello, I watch DVB-T2 HD channels in H.265 but the video stutters. This problem does not appear in VLC, SMPlayer or the Gnome Video player. I can record a movie in kaffeine, and watch it without stuttering with VLC at the same time. So it is not that the computer is not fast enough to handle it. If I play the record with kaffeine, all 4 cores are almost at 100% and the complete system (and the cursor) becomes a sluggish. (The sluggish cursor is a known bug/disadvantage of using wayland under heavy load.) If I play the file in any other player, the video and the system is completely fine, although the 4 cores are at ~ 80 %. I have no graphics acceleration via VDPAU for video decoding of H.265. I have an AMD RS880 chip, that supports VDPAU, but not for the 'newer' H.265. I tried many possibilities of libvlc parameters, but did not get it to work like in VLC. I was even unsure if those parameters had any effect, partly. The attached logs show kaffeine --debug with libvlc -v and -vv, as well as a working vlc -vv for comparison. Some parameters of my system: Fedora 25, but with vanilla linux 4.10, x86_64. I use Gnome 3 under wayland. kaffeine from today's GIT. Any ideas? Thanks in advance. -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 376885] The setting 'Always show original images' cannot be disabled in 5.5.0
https://bugs.kde.org/show_bug.cgi?id=376885 Maik Qualmann changed: What|Removed |Added Resolution|--- |FIXED Status|UNCONFIRMED |RESOLVED Version Fixed In||5.5.0 Latest Commit||https://commits.kde.org/dig ||ikam/1546044e48ede7c7649d21 ||6fe7e07d3d55c832bd --- Comment #2 from Maik Qualmann --- Git commit 1546044e48ede7c7649d216fe7e07d3d55c832bd by Maik Qualmann. Committed on 24/02/2017 at 18:12. Pushed by mqualmann into branch 'master'. fix again show original images FIXED-IN: 5.5.0 M +2-2NEWS M +1-1utilities/setup/editor/setupversioning.cpp https://commits.kde.org/digikam/1546044e48ede7c7649d216fe7e07d3d55c832bd -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376893] Bad performance of kaffeine when watching HD channels compared to VLC and other players
https://bugs.kde.org/show_bug.cgi?id=376893 --- Comment #1 from yuli...@mailbox.org --- Created attachment 104206 --> https://bugs.kde.org/attachment.cgi?id=104206&action=edit kaffeine --debug using libVLC with args: -vv -- You are receiving this mail because: You are watching all bug changes.
[kaffeine] [Bug 376893] Bad performance of kaffeine when watching HD channels compared to VLC and other players
https://bugs.kde.org/show_bug.cgi?id=376893 --- Comment #2 from yuli...@mailbox.org --- Created attachment 104207 --> https://bugs.kde.org/attachment.cgi?id=104207&action=edit vlc -vv -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 376892] Kwin Crash
https://bugs.kde.org/show_bug.cgi?id=376892 Martin Gräßlin changed: What|Removed |Added Resolution|--- |BACKTRACE Status|UNCONFIRMED |NEEDSINFO --- Comment #1 from Martin Gräßlin --- Unfortunately the backtrace is lacking debug symbols. If you are able to reproduce please install the debug packages provided by your distribution (please ask the distribution support channel on how to install them) and attach a new backtrace. -- You are receiving this mail because: You are watching all bug changes.