Skip to content

Conversation

@FrankRay78
Copy link
Contributor

@FrankRay78 FrankRay78 commented Dec 20, 2023

fixes #1379

  • I have read the Contribution Guidelines
  • I have commented on the issue above and discussed the intended changes
  • A maintainer has signed off on the changes and the issue was assigned to me
  • All newly added code is adequately covered by tests
  • All existing tests are still running without errors
  • The documentation was modified to reflect the changes OR no documentation changes are required.

Changes

  • Ability to configure the styling used by the HelpProvider, eg

configurator.Settings.HelpProviderStyles = HelpProviderStyle.BoldHeadings;

HelpProviderStyle offers three styling options OOTB, Default, BoldHeadings, None

None offers maximum accessibility.

The examples project was updated accordingly, eg:

namespace Help;

public static class Program
{
    public static int Main(string[] args)
    {
        var app = new CommandApp<DefaultCommand>();

        app.Configure(config =>
        {
            // Register the custom help provider
            config.SetHelpProvider(new CustomHelpProvider(config.Settings));

            // Render an unstyled help text for maximum accessibility
            config.Settings.HelpProviderStyles = HelpProviderStyle.None;
        });

        return app.Run(args);
    }
}

Spectre.console users can set whatever colours they wish, in a similar way the HelpProviderStyle factory does below:

            HelpProviderStyle styles = default(HelpProviderStyle);

            styles.Description.Header.Markup = "yellow";
            styles.Usage.Header.Markup = "yellow";
            styles.Usage.CurrentCommand.Markup = "underline";
            styles.Usage.Command.Markup = "aqua";
            styles.Usage.Options.Markup = "grey";
            styles.Usage.RequiredArgument.Markup = "aqua";
            styles.Usage.OptionalArgument.Markup = "silver";

@FrankRay78 FrankRay78 changed the title [DRAFT] HelpProvider colors should be configurable HelpProvider colors should be configurable Jan 6, 2024
@FrankRay78 FrankRay78 added the area-CLI Command-Line Interface label Jan 6, 2024
@FrankRay78 FrankRay78 force-pushed the 1379-HelpProvider-colors-should-be-configurable branch from 10fa323 to 3c63f70 Compare January 15, 2024 18:46
@FrankRay78
Copy link
Contributor Author

Major refactoring has now been done to address all review comments @patriksvensson, including a rewrite of the accompanying documentation. It's also now a PR I can be proud of. Happy to address any further issues stopping this from being merged.

@FrankRay78
Copy link
Contributor Author

Further refactoring done, good review comments @patriksvensson.

@patriksvensson patriksvensson merged commit 9cc888e into spectreconsole:main Jan 18, 2024
@patriksvensson
Copy link
Contributor

Merged! Thank you for your contribution. Much appreciated! 👍

@FrankRay78 FrankRay78 deleted the 1379-HelpProvider-colors-should-be-configurable branch February 29, 2024 16:22
renovate bot referenced this pull request in dotnet/dotnet-operator-sdk Apr 23, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[Spectre.Console.Testing](https://togithub.com/spectreconsole/spectre.console)
| `0.48.0` -> `0.49.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Spectre.Console.Testing/0.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Spectre.Console.Testing/0.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Spectre.Console.Testing/0.48.0/0.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Spectre.Console.Testing/0.48.0/0.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>spectreconsole/spectre.console
(Spectre.Console.Testing)</summary>

###
[`v0.49.0`](https://togithub.com/spectreconsole/spectre.console/releases/tag/0.49.0)

[Compare
Source](https://togithub.com/spectreconsole/spectre.console/compare/0.48.0...0.49.0)

##### What's Changed

- Cleanup Line-Endings by [@&#8203;nils-a](https://togithub.com/nils-a)
in
[https://github.com/spectreconsole/spectre.console/pull/1381](https://togithub.com/spectreconsole/spectre.console/pull/1381)
- Added spectre.console.cli to quick-start. by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1413](https://togithub.com/spectreconsole/spectre.console/pull/1413)
- Fix rendering of ListPrompt for odd pageSizes by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1365](https://togithub.com/spectreconsole/spectre.console/pull/1365)
- Remove mandelbrot example due to conflicting license by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1426](https://togithub.com/spectreconsole/spectre.console/pull/1426)
- Allow specifying a property to ignore the use of build-time packages
for versioning and analysis by
[@&#8203;baronfel](https://togithub.com/baronfel) in
[https://github.com/spectreconsole/spectre.console/pull/1425](https://togithub.com/spectreconsole/spectre.console/pull/1425)
- Add the possibility to register multiple interceptors by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1412](https://togithub.com/spectreconsole/spectre.console/pull/1412)
- Added the ITypeResolver to the ExceptionHandler by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1411](https://togithub.com/spectreconsole/spectre.console/pull/1411)
- Updated typo in commandApp.md by
[@&#8203;DarqueWarrior](https://togithub.com/DarqueWarrior) in
[https://github.com/spectreconsole/spectre.console/pull/1431](https://togithub.com/spectreconsole/spectre.console/pull/1431)
- Command with -v displays app version instead of executing the command
by [@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1427](https://togithub.com/spectreconsole/spectre.console/pull/1427)
- HelpProvider colors should be configurable by
[@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1408](https://togithub.com/spectreconsole/spectre.console/pull/1408)
- Direct contributors to the current CONTRIBUTING.md by
[@&#8203;tonycknight](https://togithub.com/tonycknight) in
[https://github.com/spectreconsole/spectre.console/pull/1435](https://togithub.com/spectreconsole/spectre.console/pull/1435)
- Fix deadlock when cancelling prompts by
[@&#8203;caesay](https://togithub.com/caesay) in
[https://github.com/spectreconsole/spectre.console/pull/1439](https://togithub.com/spectreconsole/spectre.console/pull/1439)
- Add progress bar value formatter by
[@&#8203;jsheely](https://togithub.com/jsheely) in
[https://github.com/spectreconsole/spectre.console/pull/1414](https://togithub.com/spectreconsole/spectre.console/pull/1414)
- Update dependencies and do some clean-up by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1440](https://togithub.com/spectreconsole/spectre.console/pull/1440)
- Delete \[UsesVerify], which has become obsolete through the latest
update. by [@&#8203;danielcweber](https://togithub.com/danielcweber) in
[https://github.com/spectreconsole/spectre.console/pull/1456](https://togithub.com/spectreconsole/spectre.console/pull/1456)
- Don't erase secret prompt text upon backspace when mask is null by
[@&#8203;danielcweber](https://togithub.com/danielcweber) in
[https://github.com/spectreconsole/spectre.console/pull/1458](https://togithub.com/spectreconsole/spectre.console/pull/1458)
- Update dependencies to the latest version by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1459](https://togithub.com/spectreconsole/spectre.console/pull/1459)
- Automatically register command settings by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1463](https://togithub.com/spectreconsole/spectre.console/pull/1463)
- chore: Update dependency dotnet-example to v3.1.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/spectreconsole/spectre.console/pull/1470](https://togithub.com/spectreconsole/spectre.console/pull/1470)
- chore: Update dependency Roslynator.Analyzers to v4.11.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/spectreconsole/spectre.console/pull/1473](https://togithub.com/spectreconsole/spectre.console/pull/1473)
- Remove \[DebuggerDisplay] from Paragraph by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[https://github.com/spectreconsole/spectre.console/pull/1477](https://togithub.com/spectreconsole/spectre.console/pull/1477)
- Selection Prompt Search by
[@&#8203;slang25](https://togithub.com/slang25) in
[https://github.com/spectreconsole/spectre.console/pull/1289](https://togithub.com/spectreconsole/spectre.console/pull/1289)
- Update dependency SixLabors.ImageSharp to v3.1.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/spectreconsole/spectre.console/pull/1486](https://togithub.com/spectreconsole/spectre.console/pull/1486)
- Positioned Progress Tasks - Before or After Other Tasks by
[@&#8203;thomhurst](https://togithub.com/thomhurst) in
[https://github.com/spectreconsole/spectre.console/pull/1250](https://togithub.com/spectreconsole/spectre.console/pull/1250)
- Added NoStackTrace to ExceptionFormats by
[@&#8203;gerardog](https://togithub.com/gerardog) in
[https://github.com/spectreconsole/spectre.console/pull/1489](https://togithub.com/spectreconsole/spectre.console/pull/1489)
- Pipe character for listing options (issue 1434) by
[@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1498](https://togithub.com/spectreconsole/spectre.console/pull/1498)
- Improve XmlDoc output by
[@&#8203;yenneferofvengerberg](https://togithub.com/yenneferofvengerberg)
in
[https://github.com/spectreconsole/spectre.console/pull/1503](https://togithub.com/spectreconsole/spectre.console/pull/1503)
- Revert
[`71a5d83`](https://togithub.com/spectreconsole/spectre.console/commit/71a5d830)
to undo flickering regression by
[@&#8203;phil-scott-78](https://togithub.com/phil-scott-78) in
[https://github.com/spectreconsole/spectre.console/pull/1504](https://togithub.com/spectreconsole/spectre.console/pull/1504)
- AddDelegate uses an abstract type when used in a branch by
[@&#8203;BlazeFace](https://togithub.com/BlazeFace) in
[https://github.com/spectreconsole/spectre.console/pull/1509](https://togithub.com/spectreconsole/spectre.console/pull/1509)
- Missing Separator When Headers are Hidden by
[@&#8203;BlazeFace](https://togithub.com/BlazeFace) in
[https://github.com/spectreconsole/spectre.console/pull/1513](https://togithub.com/spectreconsole/spectre.console/pull/1513)
- Expose raw arguments on the command context by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1523](https://togithub.com/spectreconsole/spectre.console/pull/1523)
- Add token representation to remaining arguments by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1525](https://togithub.com/spectreconsole/spectre.console/pull/1525)

##### New Contributors

- [@&#8203;baronfel](https://togithub.com/baronfel) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1425](https://togithub.com/spectreconsole/spectre.console/pull/1425)
- [@&#8203;DarqueWarrior](https://togithub.com/DarqueWarrior) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1431](https://togithub.com/spectreconsole/spectre.console/pull/1431)
- [@&#8203;tonycknight](https://togithub.com/tonycknight) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1435](https://togithub.com/spectreconsole/spectre.console/pull/1435)
- [@&#8203;caesay](https://togithub.com/caesay) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1439](https://togithub.com/spectreconsole/spectre.console/pull/1439)
- [@&#8203;jsheely](https://togithub.com/jsheely) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1414](https://togithub.com/spectreconsole/spectre.console/pull/1414)
- [@&#8203;danielcweber](https://togithub.com/danielcweber) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1456](https://togithub.com/spectreconsole/spectre.console/pull/1456)
- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1477](https://togithub.com/spectreconsole/spectre.console/pull/1477)
- [@&#8203;slang25](https://togithub.com/slang25) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1289](https://togithub.com/spectreconsole/spectre.console/pull/1289)
- [@&#8203;thomhurst](https://togithub.com/thomhurst) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1250](https://togithub.com/spectreconsole/spectre.console/pull/1250)
- [@&#8203;gerardog](https://togithub.com/gerardog) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1489](https://togithub.com/spectreconsole/spectre.console/pull/1489)
-
[@&#8203;yenneferofvengerberg](https://togithub.com/yenneferofvengerberg)
made their first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1503](https://togithub.com/spectreconsole/spectre.console/pull/1503)
- [@&#8203;BlazeFace](https://togithub.com/BlazeFace) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1509](https://togithub.com/spectreconsole/spectre.console/pull/1509)

**Full Changelog**:
spectreconsole/spectre.console@0.48.0...0.49.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 9pm,before 6am" in timezone
Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/buehler/dotnet-operator-sdk).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
ian-buse referenced this pull request in dh2i-devs/dotnet-operator-sdk May 3, 2024
…tnet#751)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[Spectre.Console.Testing](https://togithub.com/spectreconsole/spectre.console)
| `0.48.0` -> `0.49.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Spectre.Console.Testing/0.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Spectre.Console.Testing/0.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Spectre.Console.Testing/0.48.0/0.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Spectre.Console.Testing/0.48.0/0.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>spectreconsole/spectre.console
(Spectre.Console.Testing)</summary>

###
[`v0.49.0`](https://togithub.com/spectreconsole/spectre.console/releases/tag/0.49.0)

[Compare
Source](https://togithub.com/spectreconsole/spectre.console/compare/0.48.0...0.49.0)

##### What's Changed

- Cleanup Line-Endings by [@&#8203;nils-a](https://togithub.com/nils-a)
in
[https://github.com/spectreconsole/spectre.console/pull/1381](https://togithub.com/spectreconsole/spectre.console/pull/1381)
- Added spectre.console.cli to quick-start. by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1413](https://togithub.com/spectreconsole/spectre.console/pull/1413)
- Fix rendering of ListPrompt for odd pageSizes by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1365](https://togithub.com/spectreconsole/spectre.console/pull/1365)
- Remove mandelbrot example due to conflicting license by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1426](https://togithub.com/spectreconsole/spectre.console/pull/1426)
- Allow specifying a property to ignore the use of build-time packages
for versioning and analysis by
[@&#8203;baronfel](https://togithub.com/baronfel) in
[https://github.com/spectreconsole/spectre.console/pull/1425](https://togithub.com/spectreconsole/spectre.console/pull/1425)
- Add the possibility to register multiple interceptors by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1412](https://togithub.com/spectreconsole/spectre.console/pull/1412)
- Added the ITypeResolver to the ExceptionHandler by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1411](https://togithub.com/spectreconsole/spectre.console/pull/1411)
- Updated typo in commandApp.md by
[@&#8203;DarqueWarrior](https://togithub.com/DarqueWarrior) in
[https://github.com/spectreconsole/spectre.console/pull/1431](https://togithub.com/spectreconsole/spectre.console/pull/1431)
- Command with -v displays app version instead of executing the command
by [@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1427](https://togithub.com/spectreconsole/spectre.console/pull/1427)
- HelpProvider colors should be configurable by
[@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1408](https://togithub.com/spectreconsole/spectre.console/pull/1408)
- Direct contributors to the current CONTRIBUTING.md by
[@&#8203;tonycknight](https://togithub.com/tonycknight) in
[https://github.com/spectreconsole/spectre.console/pull/1435](https://togithub.com/spectreconsole/spectre.console/pull/1435)
- Fix deadlock when cancelling prompts by
[@&#8203;caesay](https://togithub.com/caesay) in
[https://github.com/spectreconsole/spectre.console/pull/1439](https://togithub.com/spectreconsole/spectre.console/pull/1439)
- Add progress bar value formatter by
[@&#8203;jsheely](https://togithub.com/jsheely) in
[https://github.com/spectreconsole/spectre.console/pull/1414](https://togithub.com/spectreconsole/spectre.console/pull/1414)
- Update dependencies and do some clean-up by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1440](https://togithub.com/spectreconsole/spectre.console/pull/1440)
- Delete \[UsesVerify], which has become obsolete through the latest
update. by [@&#8203;danielcweber](https://togithub.com/danielcweber) in
[https://github.com/spectreconsole/spectre.console/pull/1456](https://togithub.com/spectreconsole/spectre.console/pull/1456)
- Don't erase secret prompt text upon backspace when mask is null by
[@&#8203;danielcweber](https://togithub.com/danielcweber) in
[https://github.com/spectreconsole/spectre.console/pull/1458](https://togithub.com/spectreconsole/spectre.console/pull/1458)
- Update dependencies to the latest version by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1459](https://togithub.com/spectreconsole/spectre.console/pull/1459)
- Automatically register command settings by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1463](https://togithub.com/spectreconsole/spectre.console/pull/1463)
- chore: Update dependency dotnet-example to v3.1.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/spectreconsole/spectre.console/pull/1470](https://togithub.com/spectreconsole/spectre.console/pull/1470)
- chore: Update dependency Roslynator.Analyzers to v4.11.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/spectreconsole/spectre.console/pull/1473](https://togithub.com/spectreconsole/spectre.console/pull/1473)
- Remove \[DebuggerDisplay] from Paragraph by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[https://github.com/spectreconsole/spectre.console/pull/1477](https://togithub.com/spectreconsole/spectre.console/pull/1477)
- Selection Prompt Search by
[@&#8203;slang25](https://togithub.com/slang25) in
[https://github.com/spectreconsole/spectre.console/pull/1289](https://togithub.com/spectreconsole/spectre.console/pull/1289)
- Update dependency SixLabors.ImageSharp to v3.1.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/spectreconsole/spectre.console/pull/1486](https://togithub.com/spectreconsole/spectre.console/pull/1486)
- Positioned Progress Tasks - Before or After Other Tasks by
[@&#8203;thomhurst](https://togithub.com/thomhurst) in
[https://github.com/spectreconsole/spectre.console/pull/1250](https://togithub.com/spectreconsole/spectre.console/pull/1250)
- Added NoStackTrace to ExceptionFormats by
[@&#8203;gerardog](https://togithub.com/gerardog) in
[https://github.com/spectreconsole/spectre.console/pull/1489](https://togithub.com/spectreconsole/spectre.console/pull/1489)
- Pipe character for listing options (issue 1434) by
[@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1498](https://togithub.com/spectreconsole/spectre.console/pull/1498)
- Improve XmlDoc output by
[@&#8203;yenneferofvengerberg](https://togithub.com/yenneferofvengerberg)
in
[https://github.com/spectreconsole/spectre.console/pull/1503](https://togithub.com/spectreconsole/spectre.console/pull/1503)
- Revert
[`71a5d83`](https://togithub.com/spectreconsole/spectre.console/commit/71a5d830)
to undo flickering regression by
[@&#8203;phil-scott-78](https://togithub.com/phil-scott-78) in
[https://github.com/spectreconsole/spectre.console/pull/1504](https://togithub.com/spectreconsole/spectre.console/pull/1504)
- AddDelegate uses an abstract type when used in a branch by
[@&#8203;BlazeFace](https://togithub.com/BlazeFace) in
[https://github.com/spectreconsole/spectre.console/pull/1509](https://togithub.com/spectreconsole/spectre.console/pull/1509)
- Missing Separator When Headers are Hidden by
[@&#8203;BlazeFace](https://togithub.com/BlazeFace) in
[https://github.com/spectreconsole/spectre.console/pull/1513](https://togithub.com/spectreconsole/spectre.console/pull/1513)
- Expose raw arguments on the command context by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1523](https://togithub.com/spectreconsole/spectre.console/pull/1523)
- Add token representation to remaining arguments by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1525](https://togithub.com/spectreconsole/spectre.console/pull/1525)

##### New Contributors

- [@&#8203;baronfel](https://togithub.com/baronfel) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1425](https://togithub.com/spectreconsole/spectre.console/pull/1425)
- [@&#8203;DarqueWarrior](https://togithub.com/DarqueWarrior) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1431](https://togithub.com/spectreconsole/spectre.console/pull/1431)
- [@&#8203;tonycknight](https://togithub.com/tonycknight) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1435](https://togithub.com/spectreconsole/spectre.console/pull/1435)
- [@&#8203;caesay](https://togithub.com/caesay) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1439](https://togithub.com/spectreconsole/spectre.console/pull/1439)
- [@&#8203;jsheely](https://togithub.com/jsheely) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1414](https://togithub.com/spectreconsole/spectre.console/pull/1414)
- [@&#8203;danielcweber](https://togithub.com/danielcweber) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1456](https://togithub.com/spectreconsole/spectre.console/pull/1456)
- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1477](https://togithub.com/spectreconsole/spectre.console/pull/1477)
- [@&#8203;slang25](https://togithub.com/slang25) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1289](https://togithub.com/spectreconsole/spectre.console/pull/1289)
- [@&#8203;thomhurst](https://togithub.com/thomhurst) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1250](https://togithub.com/spectreconsole/spectre.console/pull/1250)
- [@&#8203;gerardog](https://togithub.com/gerardog) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1489](https://togithub.com/spectreconsole/spectre.console/pull/1489)
-
[@&#8203;yenneferofvengerberg](https://togithub.com/yenneferofvengerberg)
made their first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1503](https://togithub.com/spectreconsole/spectre.console/pull/1503)
- [@&#8203;BlazeFace](https://togithub.com/BlazeFace) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1509](https://togithub.com/spectreconsole/spectre.console/pull/1509)

**Full Changelog**:
spectreconsole/spectre.console@0.48.0...0.49.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 9pm,before 6am" in timezone
Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/buehler/dotnet-operator-sdk).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
vgmello referenced this pull request in ellosoft/aws-cred-mgr May 31, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[Spectre.Console.Analyzer](https://togithub.com/spectreconsole/spectre.console)
| `0.48.0` -> `0.49.1` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Spectre.Console.Analyzer/0.49.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Spectre.Console.Analyzer/0.49.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Spectre.Console.Analyzer/0.48.0/0.49.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Spectre.Console.Analyzer/0.48.0/0.49.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[Spectre.Console.Cli](https://togithub.com/spectreconsole/spectre.console)
| `0.48.0` -> `0.49.1` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Spectre.Console.Cli/0.49.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Spectre.Console.Cli/0.49.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Spectre.Console.Cli/0.48.0/0.49.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Spectre.Console.Cli/0.48.0/0.49.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>spectreconsole/spectre.console
(Spectre.Console.Analyzer)</summary>

###
[`v0.49.1`](https://togithub.com/spectreconsole/spectre.console/compare/0.49.0...0.49.1)

[Compare
Source](https://togithub.com/spectreconsole/spectre.console/compare/0.49.0...0.49.1)

###
[`v0.49.0`](https://togithub.com/spectreconsole/spectre.console/releases/tag/0.49.0)

[Compare
Source](https://togithub.com/spectreconsole/spectre.console/compare/0.48.0...0.49.0)

#### What's Changed

- Cleanup line endings by [@&#8203;nils-a](https://togithub.com/nils-a)
in
[https://github.com/spectreconsole/spectre.console/pull/1381](https://togithub.com/spectreconsole/spectre.console/pull/1381)
- Added Spectre.Console.Cli to quick-start. by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1413](https://togithub.com/spectreconsole/spectre.console/pull/1413)
- Fix rendering of ListPrompt for odd pageSizes by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1365](https://togithub.com/spectreconsole/spectre.console/pull/1365)
- Remove mandelbrot example due to conflicting license by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1426](https://togithub.com/spectreconsole/spectre.console/pull/1426)
- Allow specifying a property to ignore the use of build-time packages
for versioning and analysis by
[@&#8203;baronfel](https://togithub.com/baronfel) in
[https://github.com/spectreconsole/spectre.console/pull/1425](https://togithub.com/spectreconsole/spectre.console/pull/1425)
- Add the possibility to register multiple interceptors by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1412](https://togithub.com/spectreconsole/spectre.console/pull/1412)
- Added the ITypeResolver to the ExceptionHandler by
[@&#8203;nils-a](https://togithub.com/nils-a) in
[https://github.com/spectreconsole/spectre.console/pull/1411](https://togithub.com/spectreconsole/spectre.console/pull/1411)
- Updated typo in CommandApp.md by
[@&#8203;DarqueWarrior](https://togithub.com/DarqueWarrior) in
[https://github.com/spectreconsole/spectre.console/pull/1431](https://togithub.com/spectreconsole/spectre.console/pull/1431)
- Command with -v displays app version instead of executing the command
by [@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1427](https://togithub.com/spectreconsole/spectre.console/pull/1427)
- HelpProvider colors should be configurable by
[@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1408](https://togithub.com/spectreconsole/spectre.console/pull/1408)
- Direct contributors to the current CONTRIBUTING.md by
[@&#8203;tonycknight](https://togithub.com/tonycknight) in
[https://github.com/spectreconsole/spectre.console/pull/1435](https://togithub.com/spectreconsole/spectre.console/pull/1435)
- Fix deadlock when cancelling prompts by
[@&#8203;caesay](https://togithub.com/caesay) in
[https://github.com/spectreconsole/spectre.console/pull/1439](https://togithub.com/spectreconsole/spectre.console/pull/1439)
- Add progress bar value formatter by
[@&#8203;jsheely](https://togithub.com/jsheely) in
[https://github.com/spectreconsole/spectre.console/pull/1414](https://togithub.com/spectreconsole/spectre.console/pull/1414)
- Update dependencies and do some clean-up by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1440](https://togithub.com/spectreconsole/spectre.console/pull/1440)
- Delete \[UsesVerify], which has become obsolete through the latest
update. by [@&#8203;danielcweber](https://togithub.com/danielcweber) in
[https://github.com/spectreconsole/spectre.console/pull/1456](https://togithub.com/spectreconsole/spectre.console/pull/1456)
- Don't erase secret prompt text upon backspace when mask is null by
[@&#8203;danielcweber](https://togithub.com/danielcweber) in
[https://github.com/spectreconsole/spectre.console/pull/1458](https://togithub.com/spectreconsole/spectre.console/pull/1458)
- Update dependencies to the latest version by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1459](https://togithub.com/spectreconsole/spectre.console/pull/1459)
- Automatically register command settings by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1463](https://togithub.com/spectreconsole/spectre.console/pull/1463)
- Remove \[DebuggerDisplay] from Paragraph by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[https://github.com/spectreconsole/spectre.console/pull/1477](https://togithub.com/spectreconsole/spectre.console/pull/1477)
- Selection Prompt Search by
[@&#8203;slang25](https://togithub.com/slang25) in
[https://github.com/spectreconsole/spectre.console/pull/1289](https://togithub.com/spectreconsole/spectre.console/pull/1289)
- Update dependency SixLabors.ImageSharp to v3.1.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/spectreconsole/spectre.console/pull/1486](https://togithub.com/spectreconsole/spectre.console/pull/1486)
- Positioned Progress Tasks - Before or After Other Tasks by
[@&#8203;thomhurst](https://togithub.com/thomhurst) in
[https://github.com/spectreconsole/spectre.console/pull/1250](https://togithub.com/spectreconsole/spectre.console/pull/1250)
- Added NoStackTrace to ExceptionFormats by
[@&#8203;gerardog](https://togithub.com/gerardog) in
[https://github.com/spectreconsole/spectre.console/pull/1489](https://togithub.com/spectreconsole/spectre.console/pull/1489)
- Pipe character for listing options (issue 1434) by
[@&#8203;FrankRay78](https://togithub.com/FrankRay78) in
[https://github.com/spectreconsole/spectre.console/pull/1498](https://togithub.com/spectreconsole/spectre.console/pull/1498)
- Improve XmlDoc output by
[@&#8203;yenneferofvengerberg](https://togithub.com/yenneferofvengerberg)
in
[https://github.com/spectreconsole/spectre.console/pull/1503](https://togithub.com/spectreconsole/spectre.console/pull/1503)
- Revert
[`71a5d83`](https://togithub.com/spectreconsole/spectre.console/commit/71a5d830)
to undo flickering regression by
[@&#8203;phil-scott-78](https://togithub.com/phil-scott-78) in
[https://github.com/spectreconsole/spectre.console/pull/1504](https://togithub.com/spectreconsole/spectre.console/pull/1504)
- AddDelegate uses an abstract type when used in a branch by
[@&#8203;BlazeFace](https://togithub.com/BlazeFace) in
[https://github.com/spectreconsole/spectre.console/pull/1509](https://togithub.com/spectreconsole/spectre.console/pull/1509)
- Missing Separator When Headers are Hidden by
[@&#8203;BlazeFace](https://togithub.com/BlazeFace) in
[https://github.com/spectreconsole/spectre.console/pull/1513](https://togithub.com/spectreconsole/spectre.console/pull/1513)
- Expose raw arguments on the command context by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1523](https://togithub.com/spectreconsole/spectre.console/pull/1523)
- Add token representation to remaining arguments by
[@&#8203;patriksvensson](https://togithub.com/patriksvensson) in
[https://github.com/spectreconsole/spectre.console/pull/1525](https://togithub.com/spectreconsole/spectre.console/pull/1525)

#### New Contributors

- [@&#8203;baronfel](https://togithub.com/baronfel) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1425](https://togithub.com/spectreconsole/spectre.console/pull/1425)
- [@&#8203;DarqueWarrior](https://togithub.com/DarqueWarrior) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1431](https://togithub.com/spectreconsole/spectre.console/pull/1431)
- [@&#8203;tonycknight](https://togithub.com/tonycknight) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1435](https://togithub.com/spectreconsole/spectre.console/pull/1435)
- [@&#8203;caesay](https://togithub.com/caesay) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1439](https://togithub.com/spectreconsole/spectre.console/pull/1439)
- [@&#8203;jsheely](https://togithub.com/jsheely) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1414](https://togithub.com/spectreconsole/spectre.console/pull/1414)
- [@&#8203;danielcweber](https://togithub.com/danielcweber) made their
first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1456](https://togithub.com/spectreconsole/spectre.console/pull/1456)
- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1477](https://togithub.com/spectreconsole/spectre.console/pull/1477)
- [@&#8203;slang25](https://togithub.com/slang25) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1289](https://togithub.com/spectreconsole/spectre.console/pull/1289)
- [@&#8203;thomhurst](https://togithub.com/thomhurst) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1250](https://togithub.com/spectreconsole/spectre.console/pull/1250)
- [@&#8203;gerardog](https://togithub.com/gerardog) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1489](https://togithub.com/spectreconsole/spectre.console/pull/1489)
-
[@&#8203;yenneferofvengerberg](https://togithub.com/yenneferofvengerberg)
made their first contribution in
[https://github.com/spectreconsole/spectre.console/pull/1503](https://togithub.com/spectreconsole/spectre.console/pull/1503)
- [@&#8203;BlazeFace](https://togithub.com/BlazeFace) made their first
contribution in
[https://github.com/spectreconsole/spectre.console/pull/1509](https://togithub.com/spectreconsole/spectre.console/pull/1509)

**Full Changelog**:
spectreconsole/spectre.console@0.48.0...0.49.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/ellosoft/aws-cred-mgr).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kzu added a commit to kzu/spectre.console that referenced this pull request Jul 17, 2024
Currently, running `--help` with `NO_COLOR` set, results in formatting still being applied via markup to the options and default values.

This complements the previous fix for spectreconsole#211 for that scenario and is related to spectreconsole#1408.
kzu added a commit to kzu/spectre.console that referenced this pull request Jul 17, 2024
Currently, running `--help` with `NO_COLOR` set, results in formatting still being applied via markup to the options and default values.

This complements the previous fix for spectreconsole#211 for that scenario and is related to spectreconsole#1408.

Fixes spectreconsole#1583
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area-CLI Command-Line Interface

Projects

None yet

Development

Successfully merging this pull request may close these issues.

HelpProvider colors should be configurable

2 participants