diff --git a/docs/BOSS Metadata Syntax.html b/docs/BOSS Metadata Syntax.html
index 522bdef2..0f1007f1 100644
--- a/docs/BOSS Metadata Syntax.html
+++ b/docs/BOSS Metadata Syntax.html
@@ -297,9 +297,9 @@ nav: 0
name | string | ✓ | Can be an exact plugin filename or a regular expression plugin filename. If the period that precedes the file extension has been escaped (eg. \.esp, \.esm), the string is treated as a regular expression, otherwise it is treated as an exact filename.
|
enabled | boolean | ✗ | Enables or disables use of the plugin object. Used for user rules, but no reason to use it in the masterlist. If unspecified, defaults to true.
- |
priority | integer | ✗ | Relative position of plugin to others that change one or more of the same records. Values less than zero cause the plugin to be loaded higher, values greater than zero cause the plugin to be loaded lower. If unspecified, defaults to 0.
+ |
priority | integer | ✗ | Modifies plugin position relative to others that change one or more of the same records, but which are otherwise unrelated (ie. neither plugin lists the other as a master, requirement, or in its after list). A plugin with a higher priority value will load after a plugin with a lower priority value. Value can be anything in the range -2000000000 to 2000000000, and if unspecified defaults to 0.
|
after | file list | ✗ | An unordered list of plugins that this plugin must load after, but which are not dependencies. Used for resolving specific compatibility issues and by user rules for specifying custom plugin positions.
- |
req | file list | ✗ | An unordered list of files that this plugin requires to be present. If any of these files are missing, an error message will be displayed. Intended for use specifying implicit dependencies, as BOSS will detect a plugin's explicit masters itself.
+ |
req | file list | ✗ | An unordered list of files that this plugin requires to be present. This plugin will load after any plugins listed. If any of these files are missing, an error message will be displayed. Intended for use specifying implicit dependencies, as BOSS will detect a plugin's explicit masters itself.
|
inc | file list | ✗ | An unordered list of files that this plugin is incompatible with. If any of these files are present, an error message will be displayed.
|
msg | message list | ✗ | The messages attached to this plugin. The messages will be displayed in the order that they are listed.
|
tag | tag list | ✗ | An unordered list of Bash Tags suggested for this plugin. If a Bash Tag is suggested for both addition and removal, the latter will override the former when the list is evaluated.
diff --git a/docs/BOSS Readme.html b/docs/BOSS Readme.html
index 7ba2039b..e619d269 100644
--- a/docs/BOSS Readme.html
+++ b/docs/BOSS Readme.html
@@ -127,7 +127,7 @@ h3{
Version 3 is incompatible with earlier versions, which should be removed. Any existing user rules must be manually recreated in BOSS's user interface. Some plugins sorted correctly in v2 may be sorted incorrectly by v3 until their metadata has been recorded. Please notify the team if you observe any load order issues.
-BOSS requires the
+BOSS requires the
Visual C++ Redistributable for Visual Studio 2013 (x86). BOSS can be installed either using its automated installer or manually. To install BOSS manually:
- Extract the downloaded archive to a location of your choice.
|