Skip to content

Commit

Permalink
Merge pull request #69 from smoonlee/3.1.14-prod
Browse files Browse the repository at this point in the history
Executing Release Build
  • Loading branch information
smoonlee authored Jul 24, 2024
2 parents 176ca0c + c97bdb0 commit 889deaa
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Microsoft.PowerShell_profile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,11 @@ Version: 3.1.12.5.* - July 2024 | Patched Update-PSProfile find and replace.
Version: 3.1.13 - July 2024 | Update-PSProfile Function FIXED! 🥳
Version: 3.1.13.1 - Added Get-NetAddressSpace Function
Version: 3.1.13.2 - Updated Get-NetAddressSpace Function Formatting
Version: 3.1.14 - Get-NetAddressSpace Function GA
#>

# Oh My Posh Profile Version
$profileVersion = '3.1.13.2.1-dev'
$profileVersion = '3.1.14-prod'

# GitHub Repository Details
$gitRepositoryUrl = "https://api.github.com/repos/smoonlee/oh-my-posh-profile/releases"
Expand Down
39 changes: 37 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
## Release Notes

> **JULY 2024** \
> Added Get-NetAddressSpace Function \
> Fixed Update-PSProfile Function \
> Created Release Pipeline for Production and Development \
> Added Update-PSProfile & Register-PSProfile \
> Added Get-AksVersion Function \
Expand All @@ -23,7 +25,13 @@
>
> **MAY 2024** \
> Rebuilt Functions for Installation \
> Added custom PowerShell Functions - Get-PublicIP, Get-SystemUptime, Get-AzSystemUptime, Register-PSProfile, Update-WindowsApps, Remove-GitBranch \
> Added custom PowerShell Functions: \
> Get-PublicIP, \
> Get-SystemUptime, \
> Get-AzSystemUptime, \
> Register-PSProfile, \
> Update-WindowsApps, \
> Remove-GitBranch \
> Added Support for AKS Clusters \
> Added Module Intellisense (Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete)
> Move PowerShell Modules back to User Documents \
Expand Down Expand Up @@ -199,7 +207,7 @@ Deleted branch branch4 (was b7ef979).
Deleted branch branch5 (was b7ef979).
```

[x] Get-DnsReuslt
[x]> Get-DnsReuslt
> Query DNS direct from the shell 👌
``` powershell
Expand All @@ -224,6 +232,33 @@ Supported RecordTypes:
> AFSDB DHCID HINFO MF MX NSEC3PARAM RP SRV WKS
>
[x]> Get-NetAddressSpace \
Ever wanted to quickly check an address space for IPv4 or IPv6? Well now you can 🫡

``` powershell
Get-NetAddressSpace -cidr "192.168.0.0/21"
```

> IPv4
``` powershell
CIDR : 192.168.0.0/21
NetworkAddress : 192.168.0.0
FirstUsableIP : 192.168.0.1
LastUsableIP : 192.168.7.254
BroadcastAddress : 192.168.7.255
UsableHostCount : 2046
```

> IPv6
``` powershell
CIDR : 2001:db8::/64
NetworkAddress : ::
FirstUsableIP : ::1
LastUsableIP : ::ffff:ffff:ffff:fffe
BroadcastAddress : ::ffff:ffff:ffff:ffff
UsableHostCount : 18446744073709551614
```

## Windows Terminal Nerd Font

Nerd Fonts patches developer targeted fonts with a high number of glyphs (icons). Specifically to add a high number of extra glyphs from popular 'iconic fonts'
Expand Down

0 comments on commit 889deaa

Please sign in to comment.