[PR #1088] [CLOSED] inbox: Merged PR 3330475: Synchronize the font between the WDDMCon Renderer and the SCREEN_INFORMATION #24469

Open
opened 2026-01-31 09:03:29 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/microsoft/terminal/pull/1088
Author: @DHowett-MSFT
Created: 6/1/2019
Status: ❌ Closed

Base: master ← Head: inbox


📝 Commits (8)

  • bd0e055 Merged PR 3286042: Add chafa resource into the DLL built by Windows Razzle
  • 45350b4 Merged PR 3300188: Merge GitHub changes up to 82e75ce3
  • 05cc6bf Merged PR 3300214: Fix a bunch of static analysis issues (GH553)
  • 62f7309 Merged PR 3300252: Migrate GitHub changes up until 2fdcb679
  • c70f904 Merged PR 3302855: [Git2Git] Merge accumulated build fixes from RS_ONECORE_DEP_ACIOSS
  • c910045 Merged PR 3315789: Migrate GitHub changes up until cfc72cee
  • 7b07539 Merged PR 3315880: Guard try_query calls with a null check on the pointer we're QI-ing from
  • 259cc1c Merged PR 3330629: [Git2Git] Merged PR 3330475: Synchronize the font between the WDDMCon Renderer and the SCREEN_INFORMATION

📊 Changes

51 files changed (+834 additions, -304 deletions)

View changed files

➕ .editorconfig (+13 -0)
📝 .gitignore (+0 -1)
📝 build/pipelines/ci.yml (+4 -0)
📝 build/pipelines/release.yml (+4 -0)
➕ build/pipelines/templates/build-console-audit-job.yml (+53 -0)
📝 build/pipelines/templates/build-console-ci.yml (+2 -2)
📝 build/pipelines/templates/build-console-int.yml (+2 -2)
📝 build/pipelines/templates/release-sign-and-bundle.yml (+9 -7)
📝 src/StaticAnalysis.ruleset (+7 -0)
📝 src/buffer/out/precomp.h (+0 -1)
📝 src/cascadia/TerminalApp/App.cpp (+3 -3)
📝 src/cascadia/TerminalApp/App.h (+0 -2)
📝 src/cascadia/TerminalApp/CascadiaSettingsSerialization.cpp (+0 -2)
📝 src/cascadia/TerminalConnection/pch.h (+0 -1)
📝 src/cascadia/TerminalControl/TermControl.cpp (+68 -36)
📝 src/cascadia/TerminalControl/TermControl.h (+1 -0)
📝 src/cascadia/TerminalCore/ITerminalApi.hpp (+3 -0)
📝 src/cascadia/TerminalCore/Terminal.cpp (+10 -1)
📝 src/cascadia/TerminalCore/Terminal.hpp (+5 -1)
📝 src/cascadia/TerminalCore/TerminalApi.cpp (+32 -1)

...and 31 more files

📄 Description

Synchronize the font between the WDDMCon Renderer and the SCREEN_INFORMATION when the OneCore Interactivity library starts up. #21717424

Retrieved from rs_onecore_dep_acioss ccca0315e7db34c09f5fcd9dfabae666ede1687b

Fixes #958.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/microsoft/terminal/pull/1088 **Author:** [@DHowett-MSFT](https://github.com/DHowett-MSFT) **Created:** 6/1/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `inbox` --- ### 📝 Commits (8) - [`bd0e055`](https://github.com/microsoft/terminal/commit/bd0e0550bbc2e1c8229179e9fb3a6c221904e6ed) Merged PR 3286042: Add chafa resource into the DLL built by Windows Razzle - [`45350b4`](https://github.com/microsoft/terminal/commit/45350b49ad6d2823717fd6ee531826c674586054) Merged PR 3300188: Merge GitHub changes up to 82e75ce3 - [`05cc6bf`](https://github.com/microsoft/terminal/commit/05cc6bf2ea72acaae0a3e6f9778d766ad1bad6ad) Merged PR 3300214: Fix a bunch of static analysis issues (GH553) - [`62f7309`](https://github.com/microsoft/terminal/commit/62f7309eb54637ce22a8961685cc12aaaba161e4) Merged PR 3300252: Migrate GitHub changes up until 2fdcb679 - [`c70f904`](https://github.com/microsoft/terminal/commit/c70f904922b001ab22e6ff4df31798d6c932c5a6) Merged PR 3302855: [Git2Git] Merge accumulated build fixes from RS_ONECORE_DEP_ACIOSS - [`c910045`](https://github.com/microsoft/terminal/commit/c91004518726480a59a0abbc6f9bd55a10010e13) Merged PR 3315789: Migrate GitHub changes up until cfc72cee - [`7b07539`](https://github.com/microsoft/terminal/commit/7b07539740e5488736ec0afcbdd19e6f5930b726) Merged PR 3315880: Guard try_query calls with a null check on the pointer we're QI-ing from - [`259cc1c`](https://github.com/microsoft/terminal/commit/259cc1c8dfcbc45aa6b3d48ad8c736e461fc4248) Merged PR 3330629: [Git2Git] Merged PR 3330475: Synchronize the font between the WDDMCon Renderer and the SCREEN_INFORMATION ### 📊 Changes **51 files changed** (+834 additions, -304 deletions) <details> <summary>View changed files</summary> ➕ `.editorconfig` (+13 -0) 📝 `.gitignore` (+0 -1) 📝 `build/pipelines/ci.yml` (+4 -0) 📝 `build/pipelines/release.yml` (+4 -0) ➕ `build/pipelines/templates/build-console-audit-job.yml` (+53 -0) 📝 `build/pipelines/templates/build-console-ci.yml` (+2 -2) 📝 `build/pipelines/templates/build-console-int.yml` (+2 -2) 📝 `build/pipelines/templates/release-sign-and-bundle.yml` (+9 -7) 📝 `src/StaticAnalysis.ruleset` (+7 -0) 📝 `src/buffer/out/precomp.h` (+0 -1) 📝 `src/cascadia/TerminalApp/App.cpp` (+3 -3) 📝 `src/cascadia/TerminalApp/App.h` (+0 -2) 📝 `src/cascadia/TerminalApp/CascadiaSettingsSerialization.cpp` (+0 -2) 📝 `src/cascadia/TerminalConnection/pch.h` (+0 -1) 📝 `src/cascadia/TerminalControl/TermControl.cpp` (+68 -36) 📝 `src/cascadia/TerminalControl/TermControl.h` (+1 -0) 📝 `src/cascadia/TerminalCore/ITerminalApi.hpp` (+3 -0) 📝 `src/cascadia/TerminalCore/Terminal.cpp` (+10 -1) 📝 `src/cascadia/TerminalCore/Terminal.hpp` (+5 -1) 📝 `src/cascadia/TerminalCore/TerminalApi.cpp` (+32 -1) _...and 31 more files_ </details> ### 📄 Description Synchronize the font between the WDDMCon Renderer and the SCREEN_INFORMATION when the OneCore Interactivity library starts up. #21717424 Retrieved from rs_onecore_dep_acioss ccca0315e7db34c09f5fcd9dfabae666ede1687b Fixes #958. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 09:03:29 +00:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#24469