------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 Summary: camera GUI new items selection doesn't work Product: digikam Version: 0.9.0 Platform: Compiled Sources OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Camera GUI AssignedTo: digikam-devel kde org ReportedBy: tno1945 laposte net Version: 0.9.0 (using KDE KDE 3.5.4) Installed from: Compiled From Sources Compiler: gcc version 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk) Configured with: ../configure --prefix=/usr --libdir=/usr/lib --with-slibdir=/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --enable-long-long --enable-__cxa_atexit --enable-clocale=gnu --enable-languages=c,c++,ada,f77,objc,java,pascal --host=i586-mandrake-linux-gnu --with-system-zlib Thread model: posix OS: Linux When I use the "select new elements" option in the camera GUI (not sure about the english name of the option as my desktop is in french) new photos are not selected. I've got a green mark appearing above all the photos I've already downloaded and no mark above the one I've not, so Digikam seams to identify the new elements but is not selecting them. This is working in 0.8.2 version (I've reinstalled it to check). I'm using a Canon Powershot S45 in normal mode. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 caulier.gilles kdemail net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rke arcor de ------- Additional Comments From caulier.gilles kdemail net 2007-01-17 15:33 ------- *** Bug 139333 has been marked as a duplicate of this bug. *** _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 caulier.gilles gmail com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |manda79au yahoo com au ------- Additional Comments From caulier.gilles gmail com 2007-02-20 09:51 ------- *** Bug 141962 has been marked as a duplicate of this bug. *** _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From manda79au yahoo com au 2007-02-20 10:06 ------- I did a search before reporting this bug as my own, but I apologise for not seeing this. I can confirm that I also have this bug with my Canon Ixus400 in 0.9.1 but it works in 0.8.2 (I rolled-back to check). Exact same issue as david. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From caulier.gilles gmail com 2007-02-20 10:09 ------- Armanda, I have just review the source code, and i think i have found the problem. It duing to a stupid condition test. I need Aspirin... Marcel, you is a medecine man, please help me (:=)))) So, can you use svn repository and recompile all to check my patch ? Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From caulier.gilles gmail com 2007-02-20 10:13 ------- Armanda, Forget to said, that i don't have a Canon camera. I cannot check the patch here in live... In fact, only Canon camera report a flag about pictures witch are already donwloaded. We have planed to provide an universal way to list already downloaded file using digiKam databse instead gphoto2, but it's not yet implemented. This way will support all camera type (serial, ptp, ums, ect) Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From manda79au yahoo com au 2007-02-20 10:19 ------- That will be great, Gilles. I look forward to it. :) With regards to the svn repository, it's a bit "over my head", so to speak. I'm not sure I can compile digiKam myself, I'm a little inexperienced. :( Apologies. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From caulier.gilles gmail com 2007-02-20 10:19 ------- SVN commit 635536 by cgilles: digiKam from trunk : Gphoto camera interface : fix condition to handle file already downloaded (is only used by Canon camera). Feedback is require. Thanks in advance CCBUGS: 139024 M +1 -3 gpcamera.cpp M +1 -1 gpcamera.h --- trunk/extragear/graphics/digikam/utilities/cameragui/gpcamera.cpp #635535:635536 @ -5,7 +5,7 @ * Description : Gphoto2 camera interface * * Copyright 2003-2005 by Renchi Raju - * Copyright 2006 by Gilles Caulier + * Copyright 2006-2007 by Gilles Caulier * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General @ -497,8 +497,6 @ { if (info.file.status == GP_FILE_STATUS_DOWNLOADED) itemInfo.downloaded = GPItemInfo::DownloadedYes; - else - itemInfo.downloaded = GPItemInfo::DownloadedNo; } if (info.file.fields & GP_FILE_INFO_PERMISSIONS) --- trunk/extragear/graphics/digikam/utilities/cameragui/gpcamera.h #635535:635536 @ -5,7 +5,7 @ * Description : Gphoto2 camera interface * * Copyright 2003-2005 by Renchi Raju - * Copyright 2006 by Gilles Caulier + * Copyright 2006-2007 by Gilles Caulier * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From caulier.gilles gmail com 2007-02-20 10:24 ------- Armanda, To checkout svn "trunk" source code (UNSTABLE) and compile it, look here : http://www.digikam.org/?q=download/svn Read the README file and check all depencies before to compile. You have some libraries developement packages to install (like libtiff-dev for example). Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From manda79au yahoo com au 2007-02-20 10:53 ------- Going to try compiling it now, thanks! Will let you know how it all goes. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From manda79au yahoo com au 2007-02-20 14:05 ------- No joy I'm afraid. Still the same problem. Will check-back tomorrow.. compiling is hard work. ;) _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Am Tuesday 20 February 2007 schrieb Amanda Angell:
> ------- You are receiving this mail because: ------- > You are the assignee for the bug, or are watching the assignee. > > http://bugs.kde.org/show_bug.cgi?id=139024 > > > > > ------- Additional Comments From manda79au yahoo com au 2007-02-20 14:05 > ------- No joy I'm afraid. Still the same problem. Will check-back > tomorrow.. compiling is hard work. ;) Gerhard -- Hakuna matata http://www.gerhard.fr _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel attachment0 (196 bytes) Download Attachment |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From gerhard kulzer net 2007-02-20 20:45 ------- Am Tuesday 20 February 2007 schrieb Amanda Angell: [bugs.kde.org quoted mail] I confirm, with a Canon A95, same 'problem'. And it did work once! Gerhard _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Amanda Angell
Am Tuesday 20 February 2007 schrieb Amanda Angell:
> ------- You are receiving this mail because: ------- > You are the assignee for the bug, or are watching the assignee. > > http://bugs.kde.org/show_bug.cgi?id=139024 > > > > > ------- Additional Comments From manda79au yahoo com au 2007-02-20 14:05 > ------- No joy I'm afraid. Still the same problem. Will check-back > tomorrow.. compiling is hard work. ;) the whole thing ba hand. Just change directory and stuff to your needs. It creates a shadow directory under /var/tmp/graphics which contains the compilation artefacts only (sources are links only). Of course you can choose another path. Gerhard -- Hakuna matata http://www.gerhard.fr _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From gerhard kulzer net 2007-02-20 20:52 ------- Am Tuesday 20 February 2007 schrieb Amanda Angell: [bugs.kde.org quoted mail] Hi Amanda, to make life easier (in particular when compiling digiKam :-) I send you this little helper script that works fine when you once went through the whole thing ba hand. Just change directory and stuff to your needs. It creates a shadow directory under /var/tmp/graphics which contains the compilation artefacts only (sources are links only). Of course you can choose another path. Gerhard Created an attachment (id=19763) --> (http://bugs.kde.org/attachment.cgi?id=19763&action=view) compdig _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From caulier.gilles gmail com 2007-02-21 07:26 ------- Gerhard, Can you reproduce the problem with my last fix from svn trunk and your Canon camera ? Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Am Wednesday 21 February 2007 schrieb Gilles Caulier:
> ------- You are receiving this mail because: ------- > You are the assignee for the bug, or are watching the assignee. > > http://bugs.kde.org/show_bug.cgi?id=139024 > > > > > ------- Additional Comments From caulier.gilles gmail com 2007-02-21 07:26 > ------- Gerhard, > > Can you reproduce the problem with my last fix from svn trunk and your > Canon camera ? > > Gilles Gerhard -- Hakuna matata http://www.gerhard.fr _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel attachment0 (196 bytes) Download Attachment |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From gerhard kulzer net 2007-02-21 21:40 ------- Am Wednesday 21 February 2007 schrieb Gilles Caulier: [bugs.kde.org quoted mail] Tested right now with Canon A95: it works again, the new items are marked and can be selected. Gerhard _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From caulier.gilles gmail com 2007-02-21 21:49 ------- Amanda, before to close this bug report, can you confirm if it's work for you too ? Thanks in advance Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by David Agnese
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=139024 ------- Additional Comments From manda79au yahoo com au 2007-02-22 06:13 ------- Yes Gilles, I can confirm that it is working for me too! Tried several times, it's all great now. :D Thanks so much for your efforts! Amanda _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Free forum by Nabble | Edit this page |