Package: kimdaba Version: 2.0-4 Severity: normal Tags: patch sarge Hi,
if either of the 'Date:' fields in the Kimdaba image properties window (Ctrl-1) is set to a date in October (any day, any year), the date will be reset to empty after clicking 'OK'. This will also happen if the date was set to October from an EXIF tag while importing the image, and any other property is changed afterwards in the properties window. The problem is not present in 2.1-1, so this only applies to sarge. The bug is that the valid month list in the function ImageDate::formatRegexp() in kimdaba/imagedate.cpp is missing 'oct'. I'm including a one-line patch that fixes this. Hope it helps others stumbling on this. -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.8-2-k7 Locale: LANG=en_US, [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages kimdaba depends on: ii kdelibs4 4:3.3.2-6.2 KDE core libraries ii libart-2.0-2 2.3.17-1 Library of functions for 2D graphi ii libc6 2.3.2.ds1-22 GNU C Library: Shared libraries an ii libfam0c102 2.7.0-6 client library to control the FAM ii libgcc1 1:3.4.3-13 GCC support library ii libice6 4.3.0.dfsg.1-14sarge1 Inter-Client Exchange library ii libidn11 0.5.13-1.0 GNU libidn library, implementation ii libjpeg62 6b-10 The Independent JPEG Group's JPEG ii libpng12-0 1.2.8rel-1 PNG library - runtime ii libqt3c102-mt 3:3.3.4-3 Qt GUI Library (Threaded runtime v ii libsm6 4.3.0.dfsg.1-14sarge1 X Window System Session Management ii libstdc++5 1:3.3.5-13 The GNU Standard C++ Library v3 ii libx11-6 4.3.0.dfsg.1-14sarge1 X Window System protocol client li ii libxext6 4.3.0.dfsg.1-14sarge1 X Window System miscellaneous exte ii libxrender1 0.8.3-7 X Rendering Extension client libra ii xlibs 4.3.0.dfsg.1-14sarge1 X Keyboard Extension (XKB) configu ii zlib1g 1:1.2.2-4.sarge.2 compression library - runtime -- no debconf information Cheers, -- Niko Tyni [EMAIL PROTECTED]
--- kimdaba/imagedate.cpp 2005/10/04 19:16:02 1.1 +++ kimdaba/imagedate.cpp 2005/10/04 19:16:13 @@ -279,5 +279,5 @@ QString ImageDate::formatRegexp() { - return QString::fromLatin1( "^((\\d\\d?)([-. /]+|$))?((jan|feb|mar|apr|may|jun|jul|aug|sep|nov|dec|\\d?\\d)([-. /]+|$))?(\\d\\d(\\d\\d)?)?$" ); + return QString::fromLatin1( "^((\\d\\d?)([-. /]+|$))?((jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec|\\d?\\d)([-. /]+|$))?(\\d\\d(\\d\\d)?)?$" ); }