diff --git a/OWML.Launcher/OWML.Manifest.json b/OWML.Launcher/OWML.Manifest.json index 013d1d65c..9d311faaf 100644 --- a/OWML.Launcher/OWML.Manifest.json +++ b/OWML.Launcher/OWML.Manifest.json @@ -2,6 +2,6 @@ "author": "Alek", "name": "OWML", "uniqueName": "Alek.OWML", - "version": "0.5.0", + "version": "0.5.1", "description": "The mod loader and mod framework for Outer Wilds" } diff --git a/OWML.ModHelper.Menus/OwmlConfigMenu.cs b/OWML.ModHelper.Menus/OwmlConfigMenu.cs index 75c0674c8..e002e4138 100644 --- a/OWML.ModHelper.Menus/OwmlConfigMenu.cs +++ b/OWML.ModHelper.Menus/OwmlConfigMenu.cs @@ -6,7 +6,7 @@ public class OwmlConfigMenu : ModConfigMenuBase { private const string GamePathTitle = "Game path"; private const string VerboseModeTitle = "Verbose mode"; - private const string BlockInputTitle = "Mod button combinations block game input"; + private const string BlockInputTitle = "Mod inputs can block game actions"; private readonly IOwmlConfig _config; private readonly IOwmlConfig _defaultConfig; diff --git a/OWML.SampleMods/OWML.EnableDebugMode/manifest.json b/OWML.SampleMods/OWML.EnableDebugMode/manifest.json index 74a8e1358..b7fdb7d41 100644 --- a/OWML.SampleMods/OWML.EnableDebugMode/manifest.json +++ b/OWML.SampleMods/OWML.EnableDebugMode/manifest.json @@ -4,6 +4,6 @@ "name": "EnableDebugMode", "uniqueName": "Alek.EnableDebugMode", "version": "0.2", - "owmlVersion": "0.5.0", + "owmlVersion": "0.5.1", "description": "Enables the debug mode in Outer Wilds" } diff --git a/OWML.SampleMods/OWML.LoadCustomAssets/manifest.json b/OWML.SampleMods/OWML.LoadCustomAssets/manifest.json index 8cf9f7612..b48c9204c 100644 --- a/OWML.SampleMods/OWML.LoadCustomAssets/manifest.json +++ b/OWML.SampleMods/OWML.LoadCustomAssets/manifest.json @@ -4,6 +4,6 @@ "name": "LoadCustomAssets", "uniqueName": "Alek.LoadCustomAssets", "version": "0.5", - "owmlVersion": "0.5.0", + "owmlVersion": "0.5.1", "description": "A mod for testing loading of custom assets" } diff --git a/Readme.md b/Readme.md index 0f341df31..88f6a4bb5 100644 --- a/Readme.md +++ b/Readme.md @@ -56,8 +56,9 @@ OWML is configured by OWML.Config.json: |Key|Description| |---|-----------| -|gamePath|The path to the game files. OWML will try to locate the game automatically, set this manually if needed.| -|verbose|If this is true, errors from all of the game will be displayed and logged. Intended for modders only.| +|gamePath|The path to the game files. OWML will try to locate the game automatically.| +|verbose|If this is true, errors from all of the game will be displayed and logged.| +|combinationsBlockInput|If this is true, mod input combinations will block game input.| Each mod is defined in a manifest.json file: