Version: 0.8.1 (using KDE KDE 3.4.2) Installed from: SuSE RPMs Compiler: gcc 4.0.2 OS: Linux I rename my pictures with a 4 digit prefix and a continuous number of 4 digits. If I get a number >99 after batch rename, I can't start the next turn with 100 and more. From my point of view the sequence number start value in the batch rename images dialog should get a max. of 9999.
I think this would be a great improvement because many digicams have numbering schemes with a 4-digit part
SVN commit 573894 by cgilles: Batch rename image kipi plugin : fix min. and max prefix num value from 1 to 999999 (like in digiKam 0.9.0 camera gui) BUG: 127101 M +13 -1 renameimagesbase.ui --- trunk/extragear/libs/kipi-plugins/batchprocessimages/renameimagesbase.ui #573893:573894 @@ -1,4 +1,4 @@ -<!DOCTYPE UI><UI version="3.1" stdsetdef="1"> +<!DOCTYPE UI><UI version="3.3" stdsetdef="1"> <class>KIPIBatchProcessImagesPlugin::RenameImagesBase</class> <widget class="QWidget"> <property name="name"> @@ -12,6 +12,9 @@ <height>511</height> </rect> </property> + <property name="caption"> + <string>RenameImagesBase</string> + </property> <grid> <property name="name"> <cstring>unnamed</cstring> @@ -86,6 +89,12 @@ <property name="name"> <cstring>m_seqSpin</cstring> </property> + <property name="maxValue"> + <number>999999</number> + </property> + <property name="minValue"> + <number>1</number> + </property> </widget> <spacer row="1" column="1"> <property name="name"> @@ -212,4 +221,7 @@ </grid> </widget> <layoutdefaults spacing="6" margin="6"/> +<includehints> + <includehint>klistview.h</includehint> +</includehints> </UI>