| Summary: | expand sequence number start value in batch rename images | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Per Aalrust <peraalrust> |
| Component: | AdvancedRename-dialog | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.1.0 | |
| Sentry Crash Report: | |||
|
Description
Per Aalrust
2006-05-10 20:21:21 UTC
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>
|