Skip to content

Commit f805d9b

Browse files
authored
[v1.12] Fix Font feature property name (#5947)
Backports the same changes as #5946 for whenever the next cut of 1.12 is made
1 parent 53044ac commit f805d9b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

doc/ReleaseNotes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* Manifest validation no longer fails using `UTF-8 BOM` encoding when the schema header is on the first line
99
* Upgrading a portable package with dev mode disabled will no longer remove the package from the PATH variable.
1010
* Fixed source open failure when there were multiple sources but less than two non-explicit sources.
11+
* Corrected property of `Font` experimental feature to accurately reflect `fonts` as the required setting value
1112

1213
## Font Support
1314
Font Install and Uninstall via manifest and package source for user and machine scopes has been added.

src/AppInstallerCommonCore/ExperimentalFeature.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ namespace AppInstaller::Settings
7676
case Feature::Resume:
7777
return ExperimentalFeature{ "Resume", "resume", "https://aka.ms/winget-settings", Feature::Resume };
7878
case Feature::Font:
79-
return ExperimentalFeature{ "Font", "Font", "https://aka.ms/winget-settings", Feature::Font };
80-
79+
return ExperimentalFeature{ "Font", "fonts", "https://aka.ms/winget-settings", Feature::Font };
80+
8181
default:
8282
THROW_HR(E_UNEXPECTED);
8383
}

0 commit comments

Comments
 (0)