Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Manifest validation no longer fails using `UTF-8 BOM` encoding when the schema header is on the first line
* Upgrading a portable package with dev mode disabled will no longer remove the package from the PATH variable.
* Fixed source open failure when there were multiple sources but less than two non-explicit sources.
* Corrected property of `Font` experimental feature to accurately reflect `fonts` as the required setting value

## Font Support
Font Install and Uninstall via manifest and package source for user and machine scopes has been added.
Expand Down
4 changes: 2 additions & 2 deletions src/AppInstallerCommonCore/ExperimentalFeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ namespace AppInstaller::Settings
case Feature::Resume:
return ExperimentalFeature{ "Resume", "resume", "https://aka.ms/winget-settings", Feature::Resume };
case Feature::Font:
return ExperimentalFeature{ "Font", "Font", "https://aka.ms/winget-settings", Feature::Font };
return ExperimentalFeature{ "Font", "fonts", "https://aka.ms/winget-settings", Feature::Font };

default:
THROW_HR(E_UNEXPECTED);
}
Expand Down