diff --git a/docs/BOSS Metadata Syntax.html b/docs/BOSS Metadata Syntax.html index e7d2b63b..97dd4b86 100644 --- a/docs/BOSS Metadata Syntax.html +++ b/docs/BOSS Metadata Syntax.html @@ -105,12 +105,20 @@ h3{
Some important points that are more specific to how BOSS uses YAML:
<<:).
-?:,[]{}#&*!|>"%@`, unless they also contain any single quotes, in which case the string should be enclosed in double quotes instead. This isn't always strictly necessary, but it's better to err on the side of caution. If you really want to only quote strings when absolutely necessary, be sure to check what you write by copy/pasting the whole data structure the string appears into a YAML parser such as this one and making sure that what it outputs is correct.
- " → \" and \ → \\. Note that this doesn't include backslashes that are in quoted sections of a string. For example, condition: not file("meshes\Characters\_1stperson.nif") will work as intended, because the condition string as a whole is not double-quoted. If it was, then the string would have to be condition: "not file(\"meshes\\Characters\\_1stperson.nif\")".
- <<:) are not supported. This is a limitation of the library BOSS uses for YAML support.
+ -?:,[]{}#&*!|>"%@`, unless they also contain any single quotes, in which case the string should be enclosed in double quotes instead. This isn't always strictly necessary, but it's better to err on the side of caution. If you really want to only quote strings when absolutely necessary, be sure to check what you write by copy/pasting the whole data structure the string appears into a YAML parser such as this one and making sure that what it outputs is correct.
+ " → \" and \ → \\. It's best to avoid using backslashes (except for the purpose of escaping) wherever possible, due to its double meaning. In file paths, a forwardslash can be used instead.
+ For example, the following condition nodes are all equivalent: +
condition: not file("meshes\Characters\_1stperson.nif")
+ condition: 'not file("meshes\Characters\_1stperson.nif")'
+ condition: "not file(\"meshes\\Characters\\_1stperson.nif\")"
+ condition: not file("meshes/Characters/_1stperson.nif")
+ condition: 'not file("meshes/Characters/_1stperson.nif")'
+ condition: "not file(\"meshes/Characters/_1stperson.nif\")"
+ These docs give all example syntax in YAML's least compact representation: you can also use a more compact representation, but make sure that you do not sacrifice readability when doing so.
Some properties of file paths as used by BOSS: diff --git a/docs/BOSS Readme.html b/docs/BOSS Readme.html index 15ff54c2..7ba2039b 100644 --- a/docs/BOSS Readme.html +++ b/docs/BOSS Readme.html @@ -116,7 +116,7 @@ h3{
BOSS is a plugin load order optimiser for TES IV: Oblivion, TES V: Skyrim, Fallout 3 and Fallout: New Vegas. It is designed to assist mod users in avoiding detrimental conflicts, by automatically calculating a load order that satisfies all plugin dependencies and maximises each plugin's impact on the user's game. -
BOSS also provides some load order error checking, including checks for requirements, incompatibilities and cyclic dependencies. In addition, it provides a large number of plugin-specific usage notes, bug warnings and Bash Tag suggestions. +
BOSS also provides some load order error checking, including checks for requirements, incompatibilities and cyclic dependencies. In addition, it provides a large number of plugin-specific usage notes, bug warnings and Bash Tag suggestions for Wrye Bash.
While BOSS is able to calculate correct load order positions for the vast majority of plugins using only their content, it cannot do so for all plugins. As such, BOSS provides a mechanism for supplying additional plugin metadata so that it may sort them correctly. @@ -127,7 +127,8 @@ 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 can be installed either using its automated installer or manually. To install BOSS manually: +
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: