From ec11cb737cd2b3add872808f71e320568937d675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Flor=20Chac=C3=B3n?= <14323496+florelis@users.noreply.github.com> Date: Thu, 9 Oct 2025 13:02:22 -0700 Subject: [PATCH 1/4] Bump version to 1.13 --- src/binver/binver/version.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/binver/binver/version.h b/src/binver/binver/version.h index 8d973fd233..af954bffb8 100644 --- a/src/binver/binver/version.h +++ b/src/binver/binver/version.h @@ -2,7 +2,7 @@ #define STRINGIZE(s) STRINGIZE2(s) #define VERSION_MAJOR 1 -#define VERSION_MINOR 12 +#define VERSION_MINOR 13 #define VERSION_BUILD 0 #define VERSION_REVISION 0 @@ -29,3 +29,4 @@ #define VER_FILEOS VOS_NT_WINDOWS32 #define VER_FILEFLAGS VER_VER_DEBUG #define VER_FILETYPE VFT_APP + From 315aca018641550f520f2507659c085c5016cedf Mon Sep 17 00:00:00 2001 From: Flor Elisa Chacon Ochoa Date: Thu, 9 Oct 2025 13:03:40 -0700 Subject: [PATCH 2/4] Clear release notes for version --- doc/ReleaseNotes.md | 30 ++---------------------------- 1 file changed, 2 insertions(+), 28 deletions(-) diff --git a/doc/ReleaseNotes.md b/doc/ReleaseNotes.md index eb73670206..dd430b8ef3 100644 --- a/doc/ReleaseNotes.md +++ b/doc/ReleaseNotes.md @@ -1,29 +1,3 @@ -## New in v1.12 -* MCP server available; run `winget mcp` for assistance on configuring your client. -* App Installer now uses WinUI 3. The package dependency on WinUI 2 has been replaced by a dependency on the Windows App Runtime 1.8. -* Manifest schema and validation updated to v1.12. This version update adds `Font` as an `InstallerType` and `NestedInstallerType`. +## New in v1.13 -## Bug Fixes -* 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. - -## Experimental Features -* Experimental support for Fonts - ---- -### Experimental support for Fonts -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. -```JSON -{ - "$schema" "https://aka.ms/winget-settings.schema.json", - "experimentalFeatures": { - "fonts": true - } -} -``` -Manifest Schema version updated to 1.12.0 to add support for fonts. - -Experimental initial Font Install and Uninstall via manifest for user and machine scopes has been added. - -The font 'list' command has been updated with a new '--details' feature for an alternate view of the installed fonts. + \ No newline at end of file From 3d35744f8303ea35ae7faec82ab0e21acf5861d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Flor=20Elisa=20Chac=C3=B3n=20Ochoa?= Date: Mon, 13 Oct 2025 18:03:54 -0700 Subject: [PATCH 3/4] 12 + 1 = 28 --- doc/ReleaseNotes.md | 2 +- src/binver/binver/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ReleaseNotes.md b/doc/ReleaseNotes.md index 3a73b303e7..8ec1e210c6 100644 --- a/doc/ReleaseNotes.md +++ b/doc/ReleaseNotes.md @@ -1,3 +1,3 @@ -## New in v1.13 +## New in v1.28 diff --git a/src/binver/binver/version.h b/src/binver/binver/version.h index af954bffb8..1474dc5a5d 100644 --- a/src/binver/binver/version.h +++ b/src/binver/binver/version.h @@ -2,7 +2,7 @@ #define STRINGIZE(s) STRINGIZE2(s) #define VERSION_MAJOR 1 -#define VERSION_MINOR 13 +#define VERSION_MINOR 28 #define VERSION_BUILD 0 #define VERSION_REVISION 0 From 4e06fa000537cf851d2ab440c9862f08c4e07f50 Mon Sep 17 00:00:00 2001 From: Flor Elisa Chacon Ochoa Date: Tue, 14 Oct 2025 12:24:47 -0700 Subject: [PATCH 4/4] Update repair logic --- .../Microsoft.WinGet.Client.Engine/Helpers/AppxModuleHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PowerShell/Microsoft.WinGet.Client.Engine/Helpers/AppxModuleHelper.cs b/src/PowerShell/Microsoft.WinGet.Client.Engine/Helpers/AppxModuleHelper.cs index e8b8d1ad09..271e856d00 100644 --- a/src/PowerShell/Microsoft.WinGet.Client.Engine/Helpers/AppxModuleHelper.cs +++ b/src/PowerShell/Microsoft.WinGet.Client.Engine/Helpers/AppxModuleHelper.cs @@ -155,7 +155,7 @@ public void RegisterAppInstaller(string releaseTag) } var packageVersion = new Version(versionFromLocalPackage); - if (packageVersion.Major == 1 && packageVersion.Minor > 15) + if (packageVersion.Major == 1 && packageVersion.Minor > 15 && packageVersion.Minor < 28) { releaseTag = $"1.{packageVersion.Minor - 15}.{packageVersion.Build}"; }