Bug 127101 - expand sequence number start value in batch rename images
Summary: expand sequence number start value in batch rename images
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: AdvancedRename-dialog (show other bugs)
Version: unspecified
Platform: openSUSE Linux
: NOR wishlist
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-05-10 20:21 UTC by Per Aalrust
Modified: 2022-02-01 06:23 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 0.1.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Per Aalrust 2006-05-10 20:21:21 UTC
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.
Comment 1 Quincy 2006-08-06 03:02:42 UTC
I think this would be a great improvement because many digicams have numbering schemes with a 4-digit part
Comment 2 caulier.gilles 2006-08-17 15:16:49 UTC
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>