diff --git a/fhem/CHANGED b/fhem/CHANGED
index 5304f3834..ae91d143c 100644
--- a/fhem/CHANGED
+++ b/fhem/CHANGED
@@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
+ - feature: 93_DbRep: multicmd: add attr seqDoubletsVariance
- feature: 93_DbRep: multicmd: add nextHop Keyword
- bugfix: 73_PRESENCE2: Fehlerbereinigungen
Hochlaufen bei Neustart von Fhem korrigiert
diff --git a/fhem/FHEM/93_DbRep.pm b/fhem/FHEM/93_DbRep.pm
index fab5e4863..66456fe0c 100644
--- a/fhem/FHEM/93_DbRep.pm
+++ b/fhem/FHEM/93_DbRep.pm
@@ -59,6 +59,7 @@ no if $] >= 5.017011, warnings => 'experimental::smartmatch';
# Version History intern
my %DbRep_vNotesIntern = (
+ "8.53.10" => "27.03.2024 multicmd: add attr seqDoubletsVariance ",
"8.53.9" => "18.03.2024 multicmd: add nextHop Keyword ",
"8.53.8" => "17.03.2024 sqlCmdBlocking able to use sql Keywords (§timestamp_end§ etc.) ",
"8.53.7" => "16.03.2024 prevent some attribute evaluation as long as init_done is not set ",
@@ -13042,6 +13043,7 @@ sub DbRep_nextMultiCmd {
device
reading
readingNameMap
+ seqDoubletsVariance
userExitFn
optimizeTablesBeforeDump
);
@@ -15950,6 +15952,7 @@ return;
executeAfterProc,
reading,
readingNameMap,
+ seqDoubletsVariance,
timestamp_begin,
timestamp_end,
timeDiffToNow,
@@ -15958,6 +15961,10 @@ return;
userExitFn,
+
+ Note: All of the above attributes are deleted before each command index is executed.
+ The attributes specified in the respective command index are set before the step is executed.
+
Example of the definition of a command hash:
@@ -19069,6 +19076,7 @@ return;
executeAfterProc,
reading,
readingNameMap,
+ seqDoubletsVariance,
timestamp_begin,
timestamp_end,
timeDiffToNow,
@@ -19077,6 +19085,10 @@ return;
userExitFn,
+
+ Hinweis: Alle oben genannten Attribute werden vor Ausführung jedes Befehl-Index gelöscht.
+ Die im jeweiligen Befehl-Index angegebenen Attribute werden vor Ausführung des Schrittes definiert gesetzt.
+
Beispiel für die Definition eines Befehl-Hashes: