You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Archive-ChangeLog.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,43 @@
2
2
3
3
This file contains older change history. It is maintained for reference purposes.
4
4
5
+
## v2.39.0
6
+
7
+
+ Updated `Test-WithCulture` to include additional Verbose output.
8
+
+ Added command [Get-FileExtensionInfo](docs/Get-FileExtensionInfo.md) with format file `FileExtensionInfo.format.ps1xml'. This command will require PowerShell 7.
9
+
+ Added `New-PSDynamicParameter` and `New-PSDynamicParameterForm`.
10
+
+ Incorporated pull request [#116](https://github.com/jdhitsolutions/PSScriptTools/pull/116) to fix bug with `Get-ParameterInfo` when the command has a `count` parameter. Thanks @ninmonkey.
11
+
+ Added command [Get-LastModifiedFile](docs/Get-LastModifiedFile.md) and its alias *glm*.
12
+
+ Help updates.
13
+
+ Updated `README.md`.
14
+
15
+
## v2.38.0
16
+
17
+
+ Added `Get-PSUnique` function with an alias of `gpsu`. ([Issue #109](https://github.com/jdhitsolutions/PSScriptTools/issues/109)).
18
+
+ Modified `Show-AnsiSequence` to default to `Foreground` when using `-Type` ([Issue #110](https://github.com/jdhitsolutions/PSScriptTools/issues/110)).
19
+
+ Cleaned up module manifest.
20
+
+ Updated `New-PSFormatXML` to __not__ create the ps1xml file if a bad property is detected ([Issue #111](https://github.com/jdhitsolutions/PSScriptTools/issues/111)).
21
+
+ Modified `New-PSFormatXML` to __not__ add an explicit declaration. This means the files will now be saved in the correct UTF-8 format and not UTF-8 with BOM.
22
+
+ Modified TODO VSCode command to put date at the end. Otherwise, it breaks the `Better Comments` extension.
23
+
+ Added `Set-LocationToFile` which is only loaded when importing the module in VS Code or the PowerShell ISE.
24
+
+ Re-saved all `.ps1xml` files as `UTF-8`.
25
+
+ Added custom type extension files `fileinfo.types.ps1xml` and `system.diagnostics.process.types.ps1xml`.
+ Modified custom format files that use ANSI to test if host name matches 'console' or 'code' to support VSCode.
32
+
+ Modified `Summary` view in `psparameterinfo.format.ps1xml` to not use autosizing.
33
+
+ Added `<AutoSize/>` back to `serviceansi.format.ps1xml` so that ANSI output displays properly.
34
+
+ Modified `Show-ANSI` and `Get-PSAnsiFileMap` to use `[char]27` instead of `[char]0x1b` for Windows PowerShell sessions.
35
+
+ Modified ANSI sequences in format files to use `[char]27`. ([Issue #107](https://github.com/jdhitsolutions/PSScriptTools/issues/107)).
36
+
+ Modified ANSI sequences in format files recognize a remote PSSession. ([Issue #106](https://github.com/jdhitsolutions/PSScriptTools/issues/106)).
37
+
+ Update `Get-PSLocation` to work in a PowerShell remoting session where there is no profile. ([Issue #104](https://github.com/jdhitsolutions/PSScriptTools/issues/104)).
38
+
+ Updated help.
39
+
+ Updated `README.md`.
40
+
41
+
5
42
## v2.36.0
6
43
7
44
+ Update `Get-MyVariable` to make it more compatible with PowerShell 7 ([Issue #103](https://github.com/jdhitsolutions/PSScriptTools/issues/103)). This also makes the command now compatible with the PowerShell ISE.
Copy file name to clipboardExpand all lines: README.md
+61-42Lines changed: 61 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1641,53 +1641,12 @@ C:\work\Alpha\
1641
1641
1642
1642
This example is using parameter and command aliases. You can display a tree listing with files including user-specified properties. Use a value of * to show all properties.
1643
1643
1644
-
### [New-ANSIBar](docs/New-ANSIBar.md)
1645
-
1646
-
You can use this command to create colorful bars using ANSI escape sequences based on a 256 color scheme. The default behavior is to create a gradient bar that goes from first to last values in the range and then back down again. Or you can create a single gradient that runs from the beginning of the range to the end. You can use one of the default characters or specify a custom one.
A related command is `New-RedGreenGradient`, which displays a bar going from red to green. This might be handy when you want to present a visual indicator.
1646
+
`New-RedGreenGradient`, which displays a bar going from red to green. This might be handy when you want to present a visual indicator.
The module contains a set of simple commands to make it easier to format values.
@@ -2431,6 +2390,66 @@ To use the resulting value you still need to construct an ANSI string with the e
2431
2390
2432
2391
In PowerShell 7 you can use `` `e ``. Or `$([char]27)` which works in all PowerShell versions.
2433
2392
2393
+
### [New-ANSIBar](docs/New-ANSIBar.md)
2394
+
2395
+
You can use this command to create colorful bars using ANSI escape sequences based on a 256 color scheme. The default behavior is to create a gradient bar that goes from first to last values in the range and then back down again. Or you can create a single gradient that runs from the beginning of the range to the end. You can use one of the default characters or specify a custom one.
You can use `Show-ANSISequence` to preview how it will look in your PowerShell session. You might get a difference appearance in Windows Terminal depending on the color scheme you are using.
Copy file name to clipboardExpand all lines: changelog.md
+9-36Lines changed: 9 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,15 @@
2
2
3
3
This file contains the most recent change history for the PSScriptTools module.
4
4
5
+
## v2.42.0
6
+
7
+
+ Updated module manifest to load required .NET assembly for `Convert-HTMLtoAnsi`. [Issue #124](https://github.com/jdhitsolutions/PSScriptTools/issues/124)
8
+
+ Updated `Show-AnsiSequence` to fix a display bug that was dropping values. [Issue #125](https://github.com/jdhitsolutions/PSScriptTools/issues/125)
9
+
+ Updated missing online help links.
10
+
+ Added new sample script `today.ps1`.
11
+
+ Help updates.
12
+
+ Updated `README.md`.
13
+
5
14
## v2.41.0
6
15
7
16
+ Added function `Copy-CommandHistory` with an alias of `ch`.
@@ -21,42 +30,6 @@ This file contains the most recent change history for the PSScriptTools module.
21
30
+ Modified `Convertto-Markdown` to add a `AsList` parameter. [Issue #114](https://github.com/jdhitsolutions/PSScriptTools/issues/114)
22
31
+ Updated `README.md`.
23
32
24
-
## v2.39.0
25
-
26
-
+ Updated `Test-WithCulture` to include additional Verbose output.
27
-
+ Added command [Get-FileExtensionInfo](docs/Get-FileExtensionInfo.md) with format file `FileExtensionInfo.format.ps1xml'. This command will require PowerShell 7.
28
-
+ Added `New-PSDynamicParameter` and `New-PSDynamicParameterForm`.
29
-
+ Incorporated pull request [#116](https://github.com/jdhitsolutions/PSScriptTools/pull/116) to fix bug with `Get-ParameterInfo` when the command has a `count` parameter. Thanks @ninmonkey.
30
-
+ Added command [Get-LastModifiedFile](docs/Get-LastModifiedFile.md) and its alias *glm*.
31
-
+ Help updates.
32
-
+ Updated `README.md`.
33
-
34
-
## v2.38.0
35
-
36
-
+ Added `Get-PSUnique` function with an alias of `gpsu`. ([Issue #109](https://github.com/jdhitsolutions/PSScriptTools/issues/109)).
37
-
+ Modified `Show-AnsiSequence` to default to `Foreground` when using `-Type` ([Issue #110](https://github.com/jdhitsolutions/PSScriptTools/issues/110)).
38
-
+ Cleaned up module manifest.
39
-
+ Updated `New-PSFormatXML` to __not__ create the ps1xml file if a bad property is detected ([Issue #111](https://github.com/jdhitsolutions/PSScriptTools/issues/111)).
40
-
+ Modified `New-PSFormatXML` to __not__ add an explicit declaration. This means the files will now be saved in the correct UTF-8 format and not UTF-8 with BOM.
41
-
+ Modified TODO VSCode command to put date at the end. Otherwise, it breaks the `Better Comments` extension.
42
-
+ Added `Set-LocationToFile` which is only loaded when importing the module in VS Code or the PowerShell ISE.
43
-
+ Re-saved all `.ps1xml` files as `UTF-8`.
44
-
+ Added custom type extension files `fileinfo.types.ps1xml` and `system.diagnostics.process.types.ps1xml`.
+ Modified custom format files that use ANSI to test if host name matches 'console' or 'code' to support VSCode.
51
-
+ Modified `Summary` view in `psparameterinfo.format.ps1xml` to not use autosizing.
52
-
+ Added `<AutoSize/>` back to `serviceansi.format.ps1xml` so that ANSI output displays properly.
53
-
+ Modified `Show-ANSI` and `Get-PSAnsiFileMap` to use `[char]27` instead of `[char]0x1b` for Windows PowerShell sessions.
54
-
+ Modified ANSI sequences in format files to use `[char]27`. ([Issue #107](https://github.com/jdhitsolutions/PSScriptTools/issues/107)).
55
-
+ Modified ANSI sequences in format files recognize a remote PSSession. ([Issue #106](https://github.com/jdhitsolutions/PSScriptTools/issues/106)).
56
-
+ Update `Get-PSLocation` to work in a PowerShell remoting session where there is no profile. ([Issue #104](https://github.com/jdhitsolutions/PSScriptTools/issues/104)).
57
-
+ Updated help.
58
-
+ Updated `README.md`.
59
-
60
33
## Archive
61
34
62
35
If you need to see older change history, look at the [Archive ChangeLog](https://github.com/jdhitsolutions/PSScriptTools/blob/master/Archive-ChangeLog.md) online.
0 commit comments