diff --git a/docs/LOOT Metadata Syntax.html b/docs/LOOT Metadata Syntax.html index d1e7ab48..f708e1ce 100644 --- a/docs/LOOT Metadata Syntax.html +++ b/docs/LOOT Metadata Syntax.html @@ -530,7 +530,7 @@ msg: 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 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. + 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 or does not have a version number, its version is assumed to be 0. 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.