diff options
| author | Peter Penz <[email protected]> | 2010-09-21 19:03:04 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-09-21 19:03:04 +0000 |
| commit | 1e8e05e81f50a7567cc67666ffb8bccab9a10199 (patch) | |
| tree | f7860df72a1e9f09c6ae006caeaea883bb15a38f /src/settings | |
| parent | fcef5f7721dbcb2fa5d672ff123edfed078c0006 (diff) | |
It was a bad idea to store the enabled additional-information as bit-values: With the current setup only up to 8 additional informations are possible. This restriction is bypassed now:
- Backward compatibility for old .directorry files is provided
- A version-information has been added for possible future changes
- As "side-effect" it also allows to have a details-view with only one column (#238140)
BUG: 238140
FIXED-IN: 4.6.0
svn path=/trunk/KDE/kdebase/apps/; revision=1177944
Diffstat (limited to 'src/settings')
| -rw-r--r-- | src/settings/dolphin_directoryviewpropertysettings.kcfg | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/settings/dolphin_directoryviewpropertysettings.kcfg b/src/settings/dolphin_directoryviewpropertysettings.kcfg index 052571b87..004152063 100644 --- a/src/settings/dolphin_directoryviewpropertysettings.kcfg +++ b/src/settings/dolphin_directoryviewpropertysettings.kcfg @@ -15,6 +15,13 @@ </group> <group name="Dolphin"> + <entry name="Version" type="Int" > + <label context="@label">Version</label> + <whatsthis context="@info:whatsthis">This option defines the used version of the view properties.</whatsthis> + <default>1</default> + <min>1</min> + </entry> + <entry name="ViewMode" type="Int" > <label context="@label">View Mode</label> <whatsthis context="@info:whatsthis">This option controls the style of the view. Currently supported values include icons (0), details (1) and column (2) views.</whatsthis> @@ -56,10 +63,15 @@ </entry> <entry name="AdditionalInfo" type="Int"> - <label context="@label">Additional information</label> + <label context="@label">Additional information (deprecated, use AdditionInfoV2 instead)</label> <default>0</default> </entry> + <entry name="AdditionalInfoV2" type="StringList"> + <label context="@label">Additional information</label> + <default></default> + </entry> + <entry name="Timestamp" type="DateTime" > <label context="@label">Properties last changed</label> <whatsthis context="@info:whatsthis">The last time these properties were changed by the user.</whatsthis> |
