Skip to content

Commit

Permalink
v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhitsolutions committed Jan 2, 2023
1 parent ccafbff commit 2958ad9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for WingetTools

## v1.7.0

- Updated `Get-WingetPath` to use source from `Get-Command` under the user context.
- Merged [PR #18](https://github.com/jdhitsolutions/WingetTools/pull/18)

## v1.6.0

- Added missing online help links.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2021-2022 JDH Information Technology Solutions, Inc.
Copyright (c) 2021-2023 JDH Information Technology Solutions, Inc.


Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion functions/private.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Function _convert {
$j = $list.FindIndex({ $args[0] -match "^Installer:" })
if ($i -gt 0 -AND $j -gt $i) {
Write-Verbose "[$((Get-Date).TimeofDay) CONVERT] Removing lines $i to $($j-1)"
$list.RemoveRange($i, ($j - $i)
$list.RemoveRange($i, ($j - $i))
}

Try {
Expand Down

0 comments on commit 2958ad9

Please sign in to comment.