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.
*** Bug 93602 has been marked as a duplicate of this bug. ***
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
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.
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).
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.
reopening bug
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); } }
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.