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: README.md
-23Lines changed: 0 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -1481,29 +1481,6 @@ These functions were first described at [https://jdhitsolutions.com/blog/powersh
1481
1481
1482
1482
If you are running in a PowerShell console session, and the Elevated value is True, it will be displayed in color. The Memory and Runtime values are calculated ScriptProperties.
`ConvertTo-ASCIIArt` can be used to transform a string of text into ASCII art. It utilizes the web service at https://artii.herokuapp.com which allows you to transform text. You might use this to create headers for your scripts or PowerShell profile.
1487
-
1488
-

1489
-
1490
-
I used this command to convert a string that I'm using with `Get-PSScriptTools` to display a "splash" header.
Expect a period of trial and error to find a good font that works with your text. The shorter your text, the better.
1506
-
1507
1484
### [Out-Copy](docs/Out-Copy.md)
1508
1485
1509
1486
This command is intended for writers and those who need to document with PowerShell. You can pipe any command to this function, and you will get the regular output in your PowerShell session. Simultaneously, a copy of the output will be sent to the Windows clipboard. The copied output will include a prompt constructed from the current location unless you use the CommandOnly parameter.
Copy file name to clipboardExpand all lines: changelog.md
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,17 @@
2
2
3
3
This file contains the most recent change history for the PSScriptTools module.
4
4
5
+
## v2.43.0
6
+
7
+
+ Fixed VSCode snippets to run in a PowerShell 7 integrated console. [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
+
+ Removed `ConvertTo-ASCIIArt` as the online resource no longer appears to exist. [Issue #127](https://github.com/jdhitsolutions/PSScriptTools/issues/127)
10
+
+ Updated missing online help links.
11
+
+ Updated `Get-FoldersizeInfo` to better handle null values. [Issue #129](https://github.com/jdhitsolutions/PSScriptTools/issues/129)
12
+
+ Added new sample script `today.ps1`.
13
+
+ Help updates.
14
+
+ Updated `README.md`.
15
+
5
16
## v2.42.0
6
17
7
18
+ Updated module manifest to load required .NET assembly for `Convert-HTMLtoAnsi`. [Issue #124](https://github.com/jdhitsolutions/PSScriptTools/issues/124)
<maml:para>This command can be used to transform a string of text into ASCII art. ConvertTo-ASCIIArt utilizes the web service at https://artii.herokuapp.com which allows you to transform text. You might use this to create headers for your scripts or PowerShell profile.</maml:para>
1950
-
<maml:para>Expect a period of trial and error to find a good font that works with your text. The shorter your text, the better.</maml:para>
<maml:para>Specify a font from https://artii.herokuapp.com/fonts_list. Font names are case-sensitive. You can use tab-completion to cycle through the list.</maml:para>
<maml:para>Specify a font from https://artii.herokuapp.com/fonts_list. Font names are case-sensitive. You can use tab-completion to cycle through the list.</maml:para>
<maml:para>Convert the string 'PSScriptTools' with the cybermedium font. The font parameter supports auto-completion so you can tab-complete to see all possible options.</maml:para>
2042
-
</dev:remarks>
2043
-
</command:example>
2044
-
<command:example>
2045
-
<maml:title>-------------------------- Example 2 --------------------------</maml:title>
<maml:para>Convert the computer name to ASCII art and save the results to a text file. Later you can use Get-Content to display the "artistic" version of the computer name.</maml:para>
0 commit comments