-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/docs-070' into release-0.7.0
- Loading branch information
Showing
32 changed files
with
759 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Mount & Blade II: Bannerlord | ||
|
||
!!! example "We're working on it" | ||
Bannerlord support is currently in development. Get involved by joining us on [GitHub](https://github.com/Nexus-Mods/NexusMods.App/issues/new/choose), [Discord](https://discord.gg/ReWTxb93jS) or the [forums](https://forums.nexusmods.com/forum/9052-nexus-mods-app/)! | ||
|
||
## Features | ||
In addition to basic mod management features, players also benefit from these dedicated features: | ||
|
||
### Loadout Health Check | ||
Get information on potential issues in your loadout(s). [Learn more about Health Checks.](../features/HealthCheck.md) | ||
|
||
![An example Health Check message prompting the installation of a missing mod.](../images/0.7.0/HealthCheckExampleBannerlord.webp) | ||
|
||
Diagnostics are shown in the following situations and uses the SubModule.xml file included with mods to generate these messages: | ||
|
||
- A mod is installed and requires another mod which is not installed or enabled. | ||
- A mod is installed and requires a specific version of another mod which is not installed or enabled. | ||
- Two mods are installed that are marked as incompatible or conflict with each other. | ||
- The SubModule.xml file in the mod contains errors. | ||
- The installed mods create a "circular dependency" meaning if you follow the dependencies for each mod you get into an infinite loop. | ||
- Load order items need attention. This could be that an entry should be loaded before or after another. | ||
|
||
|
||
### Selective Game Backup | ||
When managing Bannerlord the app will back up only the core game files (default) or the entire game folder. Backing up the whole game requires significantly more hard drive space. This option can be toggled in the :material-cog: Settings menu. | ||
|
||
## Compatibility | ||
This game can be managed via the app on the following operating systems and platforms. The application will automatically detect valid installations from supported game stores if possible. | ||
|
||
|| :fontawesome-brands-windows: Windows | :fontawesome-brands-linux: Linux | :fontawesome-brands-apple: macOS | | ||
|---|---|---|---| | ||
| :fontawesome-brands-steam: [Steam](https://store.steampowered.com/app/261550/Mount__Blade_II_Bannerlord/) | :material-check-circle: | :material-check-circle: | :material-close-thick: | | ||
| <img src="../../images/GOG.com_logo_white.svg" alt="GOG" width="14"/> [GOG](https://www.gog.com/en/game/mount_blade_ii_bannerlord) | :material-check-circle:[^1] | :material-close-thick: | :material-close-thick: | | ||
| <img src="../../images/epic-games.svg" alt="Epic Games Store" width="14"/> [Epic Games Store](https://store.epicgames.com/en-US/p/mount-and-blade-2) | :material-check-circle: | :material-close-thick: | :material-close-thick: | | ||
| :fontawesome-brands-xbox: [Xbox Game Pass (PC)](https://www.xbox.com/en-GB/games/store/mount-blade-ii-bannerlord/9pdhwz7x3p03) | :material-close-thick:[^2] | :material-close-thick: | :material-close-thick: | | ||
|
||
[^1]: Offline backup installs from GOG.com cannot be detected automatically. | ||
[^2]: Xbox Game Pass for PC is not yet supported. <a href="https://github.com/Nexus-Mods/NexusMods.App/issues/1476">More.</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
src/NexusMods.App.UI/Pages/Sorting/LoadOrder/ILoadOrderItemModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/NexusMods.App.UI/Pages/Sorting/LoadOrder/LoadOrderItemDesignModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System.Reactive; | ||
using NexusMods.Abstractions.Games; | ||
using NexusMods.App.UI.Controls; | ||
using ReactiveUI; | ||
|
||
namespace NexusMods.App.UI.Pages.Sorting; | ||
|
||
public class LoadOrderItemDesignModel : TreeDataGridItemModel<ILoadOrderItemModel, Guid>, ILoadOrderItemModel | ||
{ | ||
public ReactiveCommand<Unit, Unit> MoveUp { get; } = ReactiveCommand.Create(() => { }); | ||
public ReactiveCommand<Unit, Unit> MoveDown { get; } = ReactiveCommand.Create(() => { }); | ||
public int SortIndex { get; set; } | ||
public string DisplayName { get; set; } = "Display Name"; | ||
public string ModName { get; set; } = "Mod Name"; | ||
public bool IsActive { get; set; } | ||
public Guid Guid { get; set; } | ||
} |
Oops, something went wrong.