File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5- The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6- and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
5+ The format is based on [ Keep a Changelog] [ keep-a-changelog ] ,
6+ and this project adheres to [ Semantic Versioning] [ semver ] .
7+
8+ [ keep-a-changelog ] : https://keepachangelog.com/en/1.0.0/
9+ [ semver ] : https://semver.org/spec/v2.0.0.html
710
811## [ Unreleased]
912
13+ ## [ 0.3.2] - 2024-10-07
14+
15+ ### Fixed
16+
17+ - Fix uninstall (#37 )
18+
1019## [ 0.3.1] - 2023-07-17
1120
1221### Fixed
@@ -53,7 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5362
5463- Initial release
5564
56- [ Unreleased ] : https://github.com/anypackage/programs/compare/v0.3.1...HEAD
65+ [ Unreleased ] : https://github.com/anypackage/programs/compare/v0.3.2...HEAD
66+ [ 0.3.2 ] : https://github.com/anypackage/programs/releases/tag/v0.3.2
5767[ 0.3.1 ] : https://github.com/anypackage/programs/releases/tag/v0.3.1
5868[ 0.3.0 ] : https://github.com/anypackage/programs/releases/tag/v0.3.0
5969[ 0.2.2 ] : https://github.com/anypackage/programs/releases/tag/v0.2.2
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2023 Thomas Nieto
3+ Copyright (c) 2024 Thomas Nieto
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -16,26 +16,26 @@ It shows applications that appear in Add/Remove Programs.
1616
1717## Install AnyPackage.Programs
1818
19- ``` PowerShell
19+ ``` powershell
2020Install-PSResource AnyPackage.Programs
2121```
2222
2323## Import AnyPackage.Programs
2424
25- ``` PowerShell
25+ ``` powershell
2626Import-Module AnyPackage.Programs
2727```
2828
2929## Sample usages
3030
3131### Get list of installed packages
3232
33- ``` PowerShell
33+ ``` powershell
3434Get-Package -Name *7zip*
3535```
3636
3737### Uninstall package
3838
39- ``` PowerShell
39+ ``` powershell
4040Get-Package -Name *7zip* | Uninstall-Package
4141```
Original file line number Diff line number Diff line change 11@ {
22 RootModule = ' ProgramsProvider.dll'
3- ModuleVersion = ' 0.3.1 '
3+ ModuleVersion = ' 0.3.2 '
44 CompatiblePSEditions = @ (' Desktop' , ' Core' )
55 GUID = ' 84cf5334-85e0-4263-8471-60394099cefb'
66 Author = ' Thomas Nieto'
7- Copyright = ' (c) 2023 Thomas Nieto. All rights reserved.'
7+ Copyright = ' (c) 2024 Thomas Nieto. All rights reserved.'
88 Description = ' Windows programs provider for AnyPackage.'
99 PowerShellVersion = ' 5.1'
1010 RequiredModules = @ (
Original file line number Diff line number Diff line change 44 <TargetFramework >net461</TargetFramework >
55 <LangVersion >latest</LangVersion >
66 <Nullable >enable</Nullable >
7- <Copyright >© 2023 Thomas Nieto. All rights reserved.</Copyright >
7+ <Copyright >© 2024 Thomas Nieto. All rights reserved.</Copyright >
88 </PropertyGroup >
99
1010 <ItemGroup >
You can’t perform that action at this time.
0 commit comments