Reply to thread

First recommendation: don't use multiple

[CODE=XML] <Register Location="/Configuration/Settings/Plugins/AtmoLight">

<ConfigSection

Id="General"

Redundant="true"

Text="[AtmoLight.General]"/>

</Register>

<Register Location="/Configuration/Settings/Plugins/AtmoLight">

<ConfigSection

Id="Effects"

Redundant="true"

Text="[AtmoLight.Effects]"/>

</Register> [/CODE]

but combine them into single <Register>:

[CODE=XML] <Register Location="/Configuration/Settings/Plugins/AtmoLight">

<ConfigSection

Id="General"

Redundant="true"

Text="[AtmoLight.General]"/>

<ConfigSection

Id="Effects"

Redundant="true"

Text="[AtmoLight.Effects]"/>

</Register> [/CODE]

Probably not related, but avoiding redundancies is always good.


And to Redundant="true" is only required, if you expect this section could have been created by another plugin. In your case you should remove it.


I didn't find any sorting for ListItems yet, but I don't have more time now.


Top Bottom