|
3 | 3 | * Bumped the winget version to 1.28 to match the package version. |
4 | 4 | * Additional [options for limiting the size of log files](https://github.com/microsoft/winget-cli/blob/master/doc/Settings.md#file). |
5 | 5 |
|
6 | | -# Feature: 'source edit' |
| 6 | +# New Feature: 'source edit' |
7 | 7 | New feature that adds an 'edit' subcommand to the 'source' command. This can be used to set an explicit source to be implicit and vice-versa. For example, with this feature you can make the 'winget-font' source an implicit source instead of explicit source. |
8 | 8 |
|
9 | 9 | To use the feature, try `winget source edit winget-font` to set the Explicit state to the default. |
10 | 10 |
|
| 11 | +# New Experimental Feature: 'listDetails' |
| 12 | + |
| 13 | +The new experimental feature `listDetails` enables a new option for the `list` command, `--details`. When supplied, the output is no longer a table view of the results but is instead a series of `show` like outputs drawing data from the installed item. |
| 14 | + |
| 15 | +An example output for a single installed package is: |
| 16 | +```PowerShell |
| 17 | +> wingetdev list Microsoft.VisualStudio.2022.Enterprise --details |
| 18 | +Visual Studio Enterprise 2022 [Microsoft.VisualStudio.2022.Enterprise] |
| 19 | +Version: 17.14.21 (November 2025) |
| 20 | +Publisher: Microsoft Corporation |
| 21 | +Local Identifier: ARP\Machine\X86\875fed29 |
| 22 | +Product Code: 875fed29 |
| 23 | +Installer Category: exe |
| 24 | +Installed Scope: Machine |
| 25 | +Installed Location: C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
| 26 | +Available Upgrades: |
| 27 | + winget [17.14.23] |
| 28 | +``` |
| 29 | + |
| 30 | +If sixels are enabled and supported by the terminal, an icon for the installed package will be shown. |
| 31 | + |
| 32 | +To enable this feature, add the 'listDetails' experimental feature to your settings. |
| 33 | +``` |
| 34 | +"experimentalFeatures": { |
| 35 | + "listDetails": true |
| 36 | +}, |
| 37 | +``` |
| 38 | + |
11 | 39 | ## Bug Fixes |
12 | 40 | * Portable Packages now use the correct directory separators regardless of which convention is used in the manifest |
13 | 41 | * `--suppress-initial-details` now works with `winget configure test` |
|
0 commit comments