Bug 92977 - Wish: camera view - missing indication and selection for not already downloaded images
Summary: Wish: camera view - missing indication and selection for not already download...
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Import-History (show other bugs)
Version: 0.7.0
Platform: openSUSE Linux
: NOR wishlist
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-11-09 15:48 UTC by Roland
Modified: 2022-01-26 11:42 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 7.6.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Roland 2004-11-09 15:48:30 UTC
Version:           0.7 (using KDE KDE 3.3.1)
Installed from:    SuSE RPMs
OS:                Linux

With digikam 0.7 the asterisk available in earlier releases (e.g. 0.6.2) of the camera view indicating that a certain picture has not been downloaded earlier from the camera has disappeared.

I would prefer to have this information back again and would like to have a selection based on this criteria.
Comment 1 Renchi Raju 2004-11-19 22:30:21 UTC
*** Bug 93602 has been marked as a duplicate of this bug. ***
Comment 2 Renchi Raju 2004-11-29 05:24:34 UTC
CVS commit by pahlibar: 


fixed regression from 0.6.2 to 0.7.0 . those folks lucky enough to have a 
camera which indicates a files downloaded status, will get a new item emblem
on the items which haven't been downloaded yet. added a new select items button, using which items can select all/invert selection/clear selection/select only new items.

BUG: 92977


  M +44 -0     cameraiconitem.cpp   1.7
  M +4 -0      cameraiconitem.h   1.8
  M +43 -1     cameraiconview.cpp   1.11
  M +6 -0      cameraiconview.h   1.8
  M +44 -13    cameraui.cpp   1.33



Comment 3 Klaus Weidenbach 2005-01-05 10:35:16 UTC
I have a Conon Digital Ixus 430 and I see a star for my new images. If I use select new items nothing gets selected, the other select functions seem to work. I have a CVS version from 20050104.
Comment 4 Roland 2005-01-05 11:06:07 UTC
With my camera, a Canon Powershot G3, only the latest new image will be selected in case of selecting new elements. I confirm that all other selection criterias work fine.
I compiled the final release 0.7.1 from January 3, 2005 (KDE 3.3.2, gcc 3.3.4).
Comment 5 Klaus Weidenbach 2005-01-05 11:32:14 UTC
Yes you are right, the last new picture gets selected. I didn't look at the end of the picture list. But, thanks for confirming it.
Comment 6 Renchi Raju 2005-01-05 17:45:54 UTC
reopening bug
Comment 7 Renchi Raju 2005-01-05 17:48:37 UTC
CVS commit by pahlibar: 


fixed broken selection for "undownloaded" (new) images
BUG: 92977


  M +1 -1      cameraiconview.cpp   1.14


--- kdeextragear-3/digikam/utilities/cameragui/cameraiconview.cpp  #1.13:1.14
@@ -277,5 +277,5 @@ void CameraIconView::slotSelectNew()
         if (viewItem->itemInfo()->downloaded == 0)
         {
-            viewItem->setSelected(true, true);
+            viewItem->setSelected(true, false);
         }
     }


Comment 8 Roland 2005-01-06 12:46:14 UTC
Introducing the fix from 2005-01-05 (Comment #7) the selection of new items now correctly works.
Thank you very much for your quick fix.