winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

ReleaseNotes.md (898B)


      1 ## New in v1.12
      2 * MCP server available; run `winget mcp` for assistance on configuring your client.
      3 * App Installer now uses WinUI 3. The package dependency on WinUI 2 has been replaced by a dependency on the Windows App Runtime 1.7.
      4 * Manifest schema and validation updated to v1.12. This version update adds "Font" as an InstallerType and NestedInstallerType.
      5 
      6 ## Bug Fixes
      7 * Manifest validation no longer fails using `UTF-8 BOM` encoding when the schema header is on the first line
      8 
      9 ## Experimental Features
     10 * Experimental support for Fonts
     11 
     12 ---
     13 ### Experimental support for Fonts
     14 The following snippet enables experimental support for fonts via `winget settings`. The `winget font list` command will list installed font families and the number of installed font faces.
     15 ```JSON
     16 {
     17   "$schema" "https://aka.ms/winget-settings.schema.json",
     18   "experimentalFeatures": {
     19     "fonts": true
     20   }
     21 }
     22 
     23 ```