Skip to content

Commit e1cff8a

Browse files
v0.13.0
1 parent 651cdc4 commit e1cff8a

2 files changed

Lines changed: 27 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Or you can use the [`Microsoft.PowerShell.PSResourceGet`](https://github.com/Pow
1818
Install-PSResource PSProjectStatus -Scope AllUsers
1919
```
2020

21-
This module should work in Windows PowerShell 5.1 and PowerShell 7.
21+
This module is supported in Windows PowerShell 5.1 and PowerShell 7.
2222

2323
## Module Commands
2424

@@ -589,7 +589,7 @@ The commands in this module use localized string data to display verbose, warnin
589589

590590
![Sample verbose output](images/verbose-output.png)
591591

592-
The defined ANSI sequences are stored in a variable called `$PSProjectANSI`. You can modify this variable to change the color for each command.
592+
The defined ANSI sequences are stored in a hashtable variable called `$PSProjectANSI`.
593593

594594
```powershell
595595
$PSProjectANSI = @{
@@ -620,7 +620,7 @@ $PSProjectANSI["Get-PSProjectStatus"] = "[1;38;5;140m"
620620
$PSProjectANSI["Get-PSProjectGitStatus"] = "[1;38;5;77m"
621621
```
622622

623-
You must use a PowerShell console that supports ANSI escape sequences. The PowerShell ISE __does not__ support this feature.
623+
:heavy_exclamation_mark: You must use a PowerShell console that supports ANSI escape sequences. The PowerShell ISE __does not__ support this feature.
624624

625625
## Editor Integration
626626

@@ -668,4 +668,4 @@ These are a few things I'm considering or have been suggested.
668668

669669
If you have any suggestions on how to extend this module or tips to others on how you are using it, please feel free to use the [Discussions](https://github.com/jdhitsolutions/PSProjectStatus/discussions) section of this module's GitHub repository.
670670

671-
> Project icon by [Icons8](https://icons8.com)
671+
> :+1: Project icon by [Icons8](https://icons8.com)

changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog for PSProjectStatus
22

3+
## v0.13.0
4+
5+
### Added
6+
7+
- Added string data for private helper functions.
8+
- Added exported variable `PSProjectANSI` to store ANSI escape sequences for color output in verbose messaging. This is a user-configurable setting.
9+
10+
### Changed
11+
12+
- Modified verbose output in the `Begin` block of module functions to only show metadata when the command is invoked directly. This will eliminate redundant metadata when a function is called from another function.
13+
- Moved command color highlighting to the `_verbose` helper function. The function will detect the associated ANSI escape sequence for each command from `$PSProjectANSI` and apply it to the command name.
14+
- Updated formatting file to display `Age` with out millisecond value.
15+
- Updated `README.md`.
16+
17+
### Fixed
18+
19+
- Fixed missing string data item.
20+
- Fixed wrong information in string data.
21+
22+
### Removed
23+
24+
- Removed alias `Update-PSProjectStatus` because it was conflicting with the VSCode update extension.`
25+
326
## v0.12.0
427

528
### Added

0 commit comments

Comments
 (0)