diff --git a/docs/LOOT Metadata Syntax.html b/docs/LOOT Metadata Syntax.html index ed278277..d1e7ab48 100644 --- a/docs/LOOT Metadata Syntax.html +++ b/docs/LOOT Metadata Syntax.html @@ -428,7 +428,7 @@ name: 'Unofficial Skyrim Patch on Steam Workshop' -
Key NameValue TypeRequiredNotes
crchexadecimal integerThe CRC checksum of the dirty plugin, before cleaning. LOOT displays the CRCs of installed plugins in its report. The 8-character CRC should be preceded by 0x so that it is correctly interpreted. +
crchexadecimal integerThe CRC-32 checksum of the dirty plugin, before cleaning. LOOT displays the CRCs of installed plugins in its report. The 8-character CRC should be preceded by 0x so that it is correctly interpreted.
utilstringThe utility that should be used to clean the plugin.
itmintegerThe number of identical-to-master records reported for the dirty plugin. If the number is unknown, this field should not be supplied. If the number is known and zero, this field should be supplied.
udrintegerThe number of undeleted records reported for the dirty plugin. If the number is unknown, this field should not be supplied. If the number is known and zero, this field should be supplied. @@ -529,7 +529,7 @@ msg:
Filefile("filepath")Returns true if filepath is installed, false otherwise.
Fileregex("regex")Returns true if a file matching regex is found, false otherwise.
Manymany("regex")Returns true if more than one file matching regex is found, and false otherwise. -
Checksumchecksum("filepath", checksum)Returns true if the calculated checksum of filepath matches checksum, false otherwise. If filepath does not exist, returns false. +
Checksumchecksum("filepath", checksum)Returns true if the calculated CRC-32 checksum of filepath matches checksum, false otherwise. If filepath does not exist, returns false.
Versionversion("filepath", "version", comparator)Returns true if the boolean expression (actual version of filepath) comparator version holds true, false otherwise. If filepath does not exist and comparator is ==, > or >=, returns false. If filepath does not exist and comparator is !=, < or <=, returns true. The comparison is not a straightforward per-character comparison, but instead uses the precedence rules defined by Semantic Versioning, extended to allow leading zeroes, an arbitrary number of release version numbers, case-insensitivity and a wider range of separator characters.
Plugin Active Statusactive("filepath")Returns true if filepath is a .esp or .esm file that is both installed and active, false otherwise.