[krita] [Bug 423170] JJ: MacOS' color picker pops up instead of Krita's internal color selector

2022-01-25 Thread Alvin Wong
https://bugs.kde.org/show_bug.cgi?id=423170

Alvin Wong  changed:

   What|Removed |Added

 CC||al...@alvinhc.com

--- Comment #6 from Alvin Wong  ---
Hasn't this been fixed recently, or have I misremembered?

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

[korganizer] [Bug 449182] New: Enhancement request: Enable write-access for Office 365 Calendars

2022-01-25 Thread Thomas Reuss
https://bugs.kde.org/show_bug.cgi?id=449182

Bug ID: 449182
   Summary: Enhancement request: Enable write-access for Office
365 Calendars
   Product: korganizer
   Version: 5.18.1
  Platform: Debian testing
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: exchangeplugin
  Assignee: kdepim-b...@kde.org
  Reporter: thomas@reuss.rocks
  Target Milestone: ---

SUMMARY

Currently, Kontact/Korganizer does only provide read-access to Office 365
accounts (EWS)


STEPS TO REPRODUCE
1. Attach Microsoft Office 365 account in Korganizer
2. Create a new task/appointment
3. The Office 365 account is not available as target

OBSERVED RESULT


EXPECTED RESULT

Having write-access to Office 365 account

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Debian GNU/Linux  / KDE Plasma 5.23.5
KDE Plasma Version: 5.23.5
KDE Frameworks Version: 5.88.0 
Qt Version: 5.15.2

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

[libkgapi] [Bug 439285] Bad request, Google replied "Contacts API is being deprecated"

2022-01-25 Thread themroc
https://bugs.kde.org/show_bug.cgi?id=439285

--- Comment #33 from themroc  ---
Here the same:
Google Groupware is gradually showing no more calendars on my computers.

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

[krunner] [Bug 416145] Krunner doesn't immediately intercept keystrokes, leading the user to accidentally type text into whatever app is open

2022-01-25 Thread Artur Raczyński
https://bugs.kde.org/show_bug.cgi?id=416145

Artur Raczyński  changed:

   What|Removed |Added

 CC||artur.raczyn...@gmail.com

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

[digikam] [Bug 399034] Pictures are not centered in the map

2022-01-25 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=399034

--- Comment #24 from Maik Qualmann  ---
For the sidebar, the text that no geolocations information is available is
fine. I would not like such an empty area for the map in the center. We should
set the whole earth view as coordinates and zoom level and disable the view.

Maik

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

[kile] [Bug 438237] Cannot match the cursor position after having scrolled in the editor

2022-01-25 Thread Emanuele Spirito
https://bugs.kde.org/show_bug.cgi?id=438237

--- Comment #6 from Emanuele Spirito  ---
This bug is not coming up any more.

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

[frameworks-kwallet] [Bug 437788] Kded5 asks to open kwallet everytime the system starts

2022-01-25 Thread Emanuele Spirito
https://bugs.kde.org/show_bug.cgi?id=437788

--- Comment #3 from Emanuele Spirito  ---
Lately, after the last update this issue is not coming up any more.

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

[plasmashell] [Bug 447267] Shifting from Breeze Dark to Breeze Light Plasma theme breaks a lot of things until plasmashell is restart

2022-01-25 Thread strangequark
https://bugs.kde.org/show_bug.cgi?id=447267

strangequark  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

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

[kwin] [Bug 448229] Xwayland stops working after switching users

2022-01-25 Thread Evgeny
https://bugs.kde.org/show_bug.cgi?id=448229

Evgeny  changed:

   What|Removed |Added

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

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

[digikam] [Bug 114417] Use Qt5.15 LTS source code from KDE git collection patch repository to compile AppImage bundle

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=114417

--- Comment #17 from caulier.gil...@gmail.com ---
MXE UPSTREAM bug to support KDE Qt5 LTS collection patches repository:

https://github.com/mxe/mxe/issues/2685

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

[digikam] [Bug 114417] Use Qt5.15 LTS source code from KDE git collection patch repository to compile AppImage bundle

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=114417

--- Comment #16 from caulier.gil...@gmail.com ---
Macports UPSTREAM bug to support KDE Qt5 LTS collection patches repository:

https://trac.macports.org/ticket/64518

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

[kate] [Bug 406109] Run on save (auto-format hook)

2022-01-25 Thread Waqar Ahmed
https://bugs.kde.org/show_bug.cgi?id=406109

Waqar Ahmed  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Version Fixed In||22.04
 Status|REPORTED|RESOLVED
 CC||waqar@gmail.com

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-25 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #25 from 319513...@outlook.com <319513...@outlook.com> ---
Hi, I am try to load images by PreviewLoadThread::load or
PreviewLoadThread::load_*, and for every album, only a picture can be loaded
successfully.

here is my core codes:

auto t = new PreviewLoadThread(this);
connect(t, ::signalImageLoaded, this, ::loadPic);
void PicDialog::loadPic(const LoadingDescription& desc, const DImg& dimg) {
if(dimg.isNull()) {
qDebug() << "DImg null: " << desc.filePath;
return;
}
auto* lbl = new QLabel;
auto  pix = dimg.convertToPixmap();
qDebug() << pix;
lbl->setPixmap(pix);
layout_->addWidget(lbl);
}

Then I load pictures by:

auto items = iface->currentAlbumItems();
for(auto& it: items) dialog->load(it);

void PicDialog::load(const QUrl& url) {
QSize desktopSize = qApp->primaryScreen()->geometry().size();
int   deskSize= qMax(640, qMax(desktopSize.height(),
desktopSize.width()));
t->load(url.toLocalFile(), PreviewSettings::fastPreview(), deskSize);
}

and here is it's log when open dialog:

digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/01.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/01.jpg!960.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/01.jpg!960.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/01.jpg!960.jpg"
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/175751wirixiojeqbroizu.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/175754qa7lln4zedqm9l97.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/175756hvt94t5e2tz9g71u.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/175756hvt94t5e2tz9g71u.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/175756hvt94t5e2tz9g71u.jpg"
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/175800vt9lyztbyiv87yec.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/175800vt9lyztbyiv87yec.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/175800vt9lyztbyiv87yec.jpg"
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/1590557931-0019.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/1590557931-0019.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/1590557931-0019.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/1590557931-0019.jpg"
digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/鬼刀
(3).jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/鬼刀
(4).jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/鬼刀
(6).jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/鬼刀 (6).jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/鬼刀 (6).jpg"
digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/鬼刀
(9).jpg"
digikam.general: Preview quality:  2
...
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.dimg: "/home/tea/Pictures/wallpaper/wallpaper28.jpg" : "JPEG" file
identified
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.dimg.jpeg: Start of Image  ( 1 )
digikam.dimg.jpeg: JFIF APP0 marker: version 1.02, density 300x300  1  ( 1 )
digikam.dimg.jpeg: Miscellaneous marker 0xe1, length 8805  ( 1 )
digikam.dimg.jpeg: Miscellaneous marker 0xed, length 10006  ( 1 )
digikam.dimg.jpeg: Miscellaneous marker 0xe1, length 6140  ( 1 )
digikam.dimg.jpeg: Miscellaneous marker 0xe2, length 3158  ( 1 )
digikam.dimg.jpeg: Adobe APP14 marker: version 100, flags 0x4000 0x,
transform 1  ( 1 )
digikam.dimg.jpeg: Define Quantization Table 0  precision 0  ( 1 )
digikam.dimg.jpeg: Define Quantization Table 1  precision 0  ( 1 )
digikam.dimg.jpeg: Start Of Frame 0xc0: 

[krita] [Bug 448235] Krita 5 for MacOSmojave is not launching due to a missing executable, i checked the files for Krita and only saw EmptySteamDepot with nothing inside of it meaning there was nothin

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=448235

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

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

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

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

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

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

[krita] [Bug 448186] When I try to erase parts of the top layer to reveal parts of the layer underneath, but the eraser tool keeps freezing up and it won't erase anything. I also tried to transform t

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=448186

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

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

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

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

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

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

[systemsettings] [Bug 448189] Symbols on Russian are displayed incorrectly

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=448189

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

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

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

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

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

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

[kwin] [Bug 447344] Bad animation when you hold move window to another screen hotkey

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=447344

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

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

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

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

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

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

[plasmashell] [Bug 447267] Shifting from Breeze Dark to Breeze Light Plasma theme breaks a lot of things until plasmashell is restart

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=447267

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

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

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

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

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

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

[kwin] [Bug 447404] Log in to plasma-x; log out to lightdm; log in to plasma-wayland -- keyboard/mouse freeze

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=447404

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

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

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

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

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

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

[kwin] [Bug 448229] Xwayland stops working after switching users

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=448229

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

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

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

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

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

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

[krita] [Bug 448092] Clicking G'mic reset button crashes Krita 5.0.2 on macOS 12.1

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=448092

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |REPORTED
 Resolution|WAITINGFORINFO  |---
 Ever confirmed|1   |0

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

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

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

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

[kwin] [Bug 448732] X and XWayland: If windows were already visible and you click on Show Desktop, clicking on another app's icon in the taskbar doesn't bring said app forward

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448732

guimarcalsi...@gmail.com changed:

   What|Removed |Added

Summary|If windows were already |X and XWayland: If windows
   |visible and you click on|were already visible and
   |Show Desktop, clicking on   |you click on Show Desktop,
   |another app's icon in the   |clicking on another app's
   |taskbar doesn't bring said  |icon in the taskbar doesn't
   |app forward |bring said app forward

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

[digikam] [Bug 364334] Image editor "Reset" button should reset only currently visible settings

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=364334

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 244097] When importing .NEF files, if highlights are "rebuild", "auto-brightness" has no effect

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=244097

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 185098] Digikam craches sometimes on raw files selection

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=185098

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 380843] Demosaicing

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=380843

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 445061] NEF from Nikon D800 and D850 not shown

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=445061

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 380358] ICC Profiles not detected

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=380358

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 179413] Support restoring blown out highlights

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=179413

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 127991] digikam image editor and raws (nef)

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=127991

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[kwin] [Bug 448732] If windows were already visible and you click on Show Desktop, clicking on another app's icon in the taskbar doesn't bring said app forward

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448732

--- Comment #6 from guimarcalsi...@gmail.com ---
(In reply to Krešimir Čohar from comment #5)
> (In reply to guimarcalsilva from comment #4)
> > (In reply to Krešimir Čohar from comment #3)
> > > (In reply to Krešimir Čohar from comment #2)
> > > > I can confirm this bug on Plasma 5.23.5 using both latte and a plasma 
> > > > panel,
> > > > it brings into focus properly the window you clicked on only if it's
> > > > minimized. 
> > > > 
> > > > If the window isn't minimized, something strange happens - clicking on 
> > > > it
> > > > brings it to just below the window that was in focus before you trigger 
> > > > the
> > > > Show Desktop effect, and the focus remains on the window on top (the 
> > > > window
> > > > that was in focus before you triggered the effect).
> > > 
> > > I just tested it again and yes, it brings the focus back to the window 
> > > that
> > > was in focus before you triggered the effect. The window below is both 
> > > below
> > > (not on top) AND out of focus.
> > 
> > Yes. This happens. I noticed I can reliably reproduce the issue with
> > Chromium-based browsers (tested with Vivaldi and Chromium), but strangely
> > enough, it's working correctly for me with other apps.
> > 
> > Nate Grahan (or another developer), can you try reproducing the issue on
> > your end again but switching between a Chromium-based browser and another
> > app? If you click on a browser window that is already visible you should see
> > it doesn't get brought forward like other apps.
> 
> On my end, the bug doesn't discriminate and it happens with all my
> windows/applications.

I think I got it. It's a problem with X and Xwayland. On a Wayland session,
native Wayland windows switch normally, but it doesn't work with Xwayland
windows on a Wayland session and the bug is always present on an X session.

Devs reading this. Try this on an X session or between native Wayland and
XWayland windows.

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

[Discover] [Bug 447268] 412 updates pending, won't update

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=447268

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

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

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

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

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

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

[kwin] [Bug 437128] "Activate and pass click" left click setting causes Plasma UI elements to stop accepting clicks

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=437128

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

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

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

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

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

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

[kdenlive] [Bug 445490] clips get wrong position after save and close kdenlive

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=445490

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

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

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

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

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

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

[kwin] [Bug 420039] [XWayland]: Windows are often invisible and unusable

2022-01-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=420039

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

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

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

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

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

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

[digikam] [Bug 284745] digikam crashed while running ufraw, started from digikam menu

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=284745

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

   What|Removed |Added

  Component|Interroperability   |Plugin-RawImport-Ufraw

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

[digikam] [Bug 235593] can not open nef files with ufraw through digikam

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=235593

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

   What|Removed |Added

  Component|Interroperability   |Plugin-RawImport-Ufraw

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

[digikam] [Bug 262303] importing a RAW picture results in empty view

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=262303

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 213624] editor: picture too "big" when comming to editor after digikam start

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=213624

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 232615] Crash at closing image editor while importing raw

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=232615

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 179802] After raw import image not shown in editor

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=179802

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 146393] No gamma adjustment when opening raw file

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=146393

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 221191] Menu not disabled when decoding raw

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=221191

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 276417] Automatically select the luminosity curve depending on the camera manufacturer

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=276417

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 218163] RAW file import settings are lost after import

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=218163

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 262700] Raw file will freeze with 16bit option enabled

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=262700

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 219748] Image editor doesn't import raw images twice

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=219748

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 245336] Image editor does not remember camera profile under Custom

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=245336

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 228239] Raw import tool: meaning of the Esc

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=228239

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 168780] loose the raw import

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=168780

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 128669] Use embedded thumbnail for viewing RAW files

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=128669

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 420023] RAW-editor integration with RawTherapee

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=420023

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

   What|Removed |Added

  Component|ImageEditor |Plugin-RawImport-Rawtherape
   ||e
 CC||caulier.gil...@gmail.com

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

[kwin] [Bug 448732] If windows were already visible and you click on Show Desktop, clicking on another app's icon in the taskbar doesn't bring said app forward

2022-01-25 Thread Krešimir Čohar
https://bugs.kde.org/show_bug.cgi?id=448732

--- Comment #5 from Krešimir Čohar  ---
(In reply to guimarcalsilva from comment #4)
> (In reply to Krešimir Čohar from comment #3)
> > (In reply to Krešimir Čohar from comment #2)
> > > I can confirm this bug on Plasma 5.23.5 using both latte and a plasma 
> > > panel,
> > > it brings into focus properly the window you clicked on only if it's
> > > minimized. 
> > > 
> > > If the window isn't minimized, something strange happens - clicking on it
> > > brings it to just below the window that was in focus before you trigger 
> > > the
> > > Show Desktop effect, and the focus remains on the window on top (the 
> > > window
> > > that was in focus before you triggered the effect).
> > 
> > I just tested it again and yes, it brings the focus back to the window that
> > was in focus before you triggered the effect. The window below is both below
> > (not on top) AND out of focus.
> 
> Yes. This happens. I noticed I can reliably reproduce the issue with
> Chromium-based browsers (tested with Vivaldi and Chromium), but strangely
> enough, it's working correctly for me with other apps.
> 
> Nate Grahan (or another developer), can you try reproducing the issue on
> your end again but switching between a Chromium-based browser and another
> app? If you click on a browser window that is already visible you should see
> it doesn't get brought forward like other apps.

On my end, the bug doesn't discriminate and it happens with all my
windows/applications.

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

[digikam] [Bug 153730] Too many file format options when saving raw image from editor in digikam

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=153730

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 334160] Wrong colors when importing CR2 with custom camera profile

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=334160

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 150872] Crash during during RAW conversion

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=150872

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 143681] can't edit/view nef anymore

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=143681

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 210659] Inconsistent Save / Save As handling in image editor after raw import

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=210659

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 263726] metadata lost when decoding a raw file

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=263726

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 175102] crashes opening the image editor for raw images (mrw). Embedded editor does not work

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=175102

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 276439] Add a base curve to the demosaicing tool's post-processing tab

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=276439

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 360534] Digikam crashes every time I try to start Editor

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=360534

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 276415] Feature to save/load the luminosity curve of the RAW demosaicing tool

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=276415

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 364333] Random resets of several configuration values

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=364333

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 142975] wish better support for RAW photo handling

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=142975

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 195332] Digikam raw import leaves blank instead of showing picture

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=195332

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 235902] Preview of RAW image is nt updated if settings for import are changed

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=235902

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 313570] Make RAW editing easier

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=313570

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 308262] Camera's white balance values are not available in Raw Import settings

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=308262

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 211814] Raw import tool: annoying scrollbar

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=211814

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 132695] CR2 RAW files do not open

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=132695

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 276418] Provide presets for the demosaicing tool's luminosity curve

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=276418

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 155076] RAW Conversion UI Needs to be more generic

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=155076

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 211810] Raw import tool: black picture after import

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=211810

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 211423] Raw import intensity curve is not restored

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=211423

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 155074] Edit Image should allow chance to adjust RAW conversion parameters

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=155074

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 337601] Digikam crashed on closing after interrupted raw processing

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=337601

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 127577] raw display too dark and not rotated

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=127577

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 149086] RAF-picture finepix not show in Imageeditor (thumbnails are displayed)

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=149086

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 329230] Crash when tuning a raw image

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=329230

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 313390] RAW images cannot be decoded if selected from within the image editor

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=313390

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 211643] exposure indicators not working while raw import

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=211643

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 306843] Raw-pics rotating

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=306843

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 211681] Raw import tool decoding twice

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=211681

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 207911] Crash after trying to re-open Image Editor containing an unsaved RAW image

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=207911

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 281028] DigiKam Crash while uploading Raw Photos

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=281028

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 207005] Raw Import Tool does not reflect the predefined Workspace when custom camera profile is chosen

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=207005

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 278038] Digikam crashes while switching image in editor thumbbar

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=278038

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 221983] Improve RAW development without to need constant updating

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=221983

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 177396] digikam crashes when I open RAW (CR2) file in editor

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=177396

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 211818] Raw import tool: problem with curvers

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=211818

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 441335] Images in editor look very different from jpg preview

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=441335

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 206712] Raw Import Tool: RGB (linear) provides gamma corrected output and should be named as such

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=206712

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 414401] RawTherapee does not work as Raw Import Tool if both are AppImages

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=414401

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Rawtherape
   ||e
 CC||caulier.gil...@gmail.com

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

[digikam] [Bug 414340] RawTherapee plugin

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=414340

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Rawtherape
   ||e

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

[digikam] [Bug 320462] Button for resetting curve in RAW import tool is very small

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=320462

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Native

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

[digikam] [Bug 221571] integrate rawtherapee into digikam

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=221571

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Rawtherape
   ||e

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

[digikam] [Bug 150161] UFRaw as tool for RAW

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=150161

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Ufraw

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

[digikam] [Bug 445216] Cannot use Darktable for raw image import on Mac

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=445216

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

   What|Removed |Added

 Status|REPORTED|RESOLVED
  Component|ImageEditor-RawImport   |Plugin-RawImport-Darktable
 Resolution|--- |FIXED
 CC||caulier.gil...@gmail.com
   Version Fixed In||7.6.0

--- Comment #3 from caulier.gil...@gmail.com ---
Fixed with bug #449170

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

[digikam] [Bug 414484] Cannot use Rawtherapee or Darktable for raw image import on Windows

2022-01-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=414484

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

   What|Removed |Added

  Component|ImageEditor-RawImport   |Plugin-RawImport-Rawtherape
   ||e

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

  1   2   3   4   5   6   >