Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Cerqueira committed Oct 25, 2023
1 parent f8c03d3 commit de7c9f3
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@
- Renamed command:
- 'AppendGroupOnDescription' to 'ShowTipGroup'.
- Now extra-line to tip group
- Fixed bug :
- Table control does not render correctly when it does not support Unicode
- Fixed bug :
- The Slide Switch Control does not show on/off values ​​when they are not customized
- Fixed bug :
Expand Down Expand Up @@ -196,8 +198,6 @@ dotnet run --project [name of sample]

## Controls Snapshot

For each snapshot, the title is **name of project** sample in folder **samples**

### AddToList

[**Top**](#table-of-contents) | [Samples](https://github.com/FRACerqueira/PromptPlus/tree/main/Samples/AddToListSamples)
Expand Down
4 changes: 2 additions & 2 deletions Src/Controls/Table/TableControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public override string InitControl(CancellationToken cancellationToken)
throw new PromptPlusException("Not found columns definition");
}

//Validate layout SupportsAnsi
if (!ConsolePlus.SupportsAnsi)
//Validate layout UnicodeSupported
if (!ConsolePlus.IsUnicodeSupported)
{
switch (_options.Layout)
{
Expand Down
4 changes: 2 additions & 2 deletions Src/Controls/Table/TableMultiSelectControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public override string InitControl(CancellationToken cancellationToken)
throw new PromptPlusException("Not found columns definition");
}

//Validate layout SupportsAnsi
if (!ConsolePlus.SupportsAnsi)
//Validate layout UnicodeSupported
if (!ConsolePlus.IsUnicodeSupported)
{
switch (_options.Layout)
{
Expand Down
4 changes: 2 additions & 2 deletions Src/Controls/Table/TableSelectControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public override string InitControl(CancellationToken cancellationToken)
throw new PromptPlusException("Not found columns definition");
}

//Validate layout SupportsAnsi
if (!ConsolePlus.SupportsAnsi)
//Validate layout UnicodeSupported
if (!ConsolePlus.IsUnicodeSupported)
{
switch (_options.Layout)
{
Expand Down
2 changes: 2 additions & 0 deletions Src/NugetREADME.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ PromptPlus **Supports 4/8/24-bit colors** in the terminal with auto-detection of
- Renamed command:
- 'AppendGroupOnDescription' to 'ShowTipGroup'.
- Now extra-line to tip group
- Fixed bug :
- Table control does not render correctly when it does not support Unicode
- Fixed bug :
- The Slide Switch Control does not show on/off values ​​when they are not customized
- Fixed bug :
Expand Down
2 changes: 2 additions & 0 deletions Src/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ PromptPlus was developed in C# with target frameworks:
- Renamed command:
- 'AppendGroupOnDescription' to 'ShowTipGroup'.
- Now extra-line to tip group
- Fixed bug :
- Table control does not render correctly when it does not support Unicode
- Fixed bug :
- The Slide Switch Control does not show on/off values ​​when they are not customized
- Fixed bug :
Expand Down
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@
- Renamed command:
- 'AppendGroupOnDescription' to 'ShowTipGroup'.
- Now extra-line to tip group
- Fixed bug :
- Table control does not render correctly when it does not support Unicode
- Fixed bug :
- The Slide Switch Control does not show on/off values ​​when they are not customized
- Fixed bug :
Expand Down
2 changes: 0 additions & 2 deletions docs/snapshot.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

## Table of Contents

For each snapshot, the title is **name of project** in folder at github [**Samples**](https://github.com/FRACerqueira/PromptPlus/tree/main/Samples).

### AddToList

[**Top**](#table-of-contents) | [Samples](https://github.com/FRACerqueira/PromptPlus/tree/main/Samples/AddToListSamples)
Expand Down

0 comments on commit de7c9f3

Please sign in to comment.