4076 Commits

Author SHA1 Message Date
Mike Griese
972464b403 Log when WindowsTerminal.exe starts (#17745)
as discussed in team sync

(cherry picked from commit 60ac45c2398e3d8f04680559188526b75b29fde8)
Service-Card-Id: 93750274
Service-Version: 1.20
2024-08-20 11:44:12 -05:00
Dustin L. Howett
60544d783b Restore the ability to disable checking for URLs (#17731)
Fixes #17727

(cherry picked from commit 735ef2823ed72d80ce91df0176646979e4568831)
Service-Card-Id: 93736212
Service-Version: 1.20
2024-08-20 11:44:10 -05:00
Carlos Zamora
56e96c30b0 schema: add reloadEnvironmentVariables to newTerminalArgs (#17696)
(cherry picked from commit 1511d2c2ad4220721afb3f4689d9f1d2895c0bd7)
Service-Card-Id: 93522518
Service-Version: 1.20
2024-08-20 11:44:09 -05:00
Dustin L. Howett
7e67791f45 Switch to the new and beautiful VS Dev Shell icons (#17706)
We got some new icons for Developer Command Prompt and Developer
PowerShell from our friends over on Visual Studio!

This pull request includes them in the package, and fixes up the VS
dynamic profiles to reset any icons that matched the old paths.

This may be a minor breaking change for user settings, but we're making
the assumption that if they didn't change their VS profile icons from
the defaults, they probably want to follow us to the new defaults.

To prevent anything like this from happening again, we're going to stop
serializing icons for stub profiles.

I've also included a VS version of the PowerShell "black" icon which is
currently unused, but can be used in the future for PS7+-based VS Dev
Shell.

Closes #17627

(cherry picked from commit 06c07ab50dd75af3e1a1afc51cb4c688190fda92)
Service-Card-Id: 93531228
Service-Version: 1.20
2024-08-20 11:44:07 -05:00
Carlos Zamora
a8064e7eef Log number of interactive sessions (#17682)
This sends a telemetry event if a session is interacted with.
Specifically, key events are essential to have an interactive session in
Windows Terminal, so we're tracking sessions that have had a key down
event.

(cherry picked from commit ac865e6666d16e436bd3df4f62697557990ce652)
Service-Card-Id: 93498659
Service-Version: 1.20
2024-08-13 16:22:48 -05:00
Leonard Hecker
85e79e9c8d Fix colors getting lost on reflow (#17568)
The "copy the remaining attributes" loop assumes that it has full
ownership over the rows that it copies. For that to be true,
we have to of course make sure that the current write-cursor
is at a fresh, new row in the first place.

## Validation Steps Performed
* In a new pwsh tab with 120 colums:
  ``Write-Host -NoNewline "`e[36m$('a'*120)`e[m"; sleep 10``
* Resize the window wider
* Color doesn't get lost

(cherry picked from commit 2f43886ab593ca3d7f215d2352a510c69d7aa1c8)
Service-Card-Id: 93522523
Service-Version: 1.20
2024-08-13 16:22:47 -05:00
Leonard Hecker
a11b37efad AtlasEngine: Fix a buffer overrun (#17536)
The strided `memcpy` between buffers failed to account for situations
where the destination stride is smaller than the source stride.
The solution is to only copy as many bytes as are in each row.

## Validation Steps Performed
Even with AppVerifier the issue could not be reproduced.
Adding an `assert(srcStride <= mapped.RowPitch)`, however, did trap
the bug when WARP is used while BackendD3D is force-enabled.

(cherry picked from commit ae8c868a1c3d66dcee66e4e854b5285a4cae7040)
Service-Card-Id: 92972719
Service-Version: 1.20
2024-07-09 17:52:39 -05:00
Dustin L. Howett
58073ce869 Fix MacType renderer warning callback
Fixes: c318eb947
v1.20.11781.0
2024-06-26 14:49:08 -05:00
Windows Console Service Bot
18f564df43 Localization Updates for #17369 (#17380)
(cherry picked from commit 5359e71ca19ae1ebca48bc620dd590f4e24dd072)
Service-Card-Id: 92701123
Service-Version: 1.20
2024-06-25 19:45:29 -05:00
flyingcat
30882240a5 Make subsequent windows open in the foreground (#17368)
Sometimes subsequent WT windows open in the background behind other
applications. This PR tries to fix it.

Refs #15895
Refs #15479

Mysterious bug (and annoying). There are even some discussions about
happening to the first startup, not just subsequent ones. Sometimes the
window may show up without animation too. So I don't think this is the
final solution, but it did get solved on my computer, for now.

## Validation Steps Performed
0. Quit all WT windows if some.
1. Open File Explorer, click "Open in Terminal" in context menu.
2. Move the newly opened window and minimize it.
3. Back to step 1 and repeat several times.
4. All the windows should open in the foreground correctly (yet possibly
without animation).

---------

Co-authored-by: Mike Griese <migrie@microsoft.com>
(cherry picked from commit c52ba7dec6386e11befb62e81e4c0c970a9c5e3e)
Service-Card-Id: 92715121
Service-Version: 1.20
2024-06-25 19:44:16 -05:00
Leonard Hecker
c318eb9473 Warn when using old MacType versions (#17369)
This adds a check for whether MacType is injected and whether it's
a known bad version (pre-2023). In that case we avoid calling the
known faulty `ID2D1Device4` interface. We could avoid it in general to
fix the issue without a warning (it's only a very mild optimization),
but on the other hand, the bug that MacType has is a very serious one
and it's probably better overall to suggest users to update.

See: https://github.com/snowie2000/mactype/pull/938

* MacType 2021.1-RC1 results in a warning and no crash 
* MacType 2023.5.31 results in no warning 

---------

Co-authored-by: Dustin L. Howett <duhowett@microsoft.com>
(cherry picked from commit 9317d42045dbf44e3c8f5991acf9dd30a8fc5987)
Service-Card-Id: 92687128
Service-Version: 1.20
2024-06-07 17:55:36 -05:00
Leonard Hecker
0e6ecdafef Support valid out-of-bounds access in utextAccess (#17361)
`utextAccess` apparently doesn't actually need to clamp the
`chunkOffset` to be in range of the current chunk. Also, I missed to
implement the part of the spec that says to leave the iterator on the
first/last chunk of the `UText` in case of an out-of-bounds index.

This PR fixes the issue by simply not returning early, doing a more
liberal clamp of the offset, and then checking whether it was in range.

As an aside, this also fixes a one-off bug when hovering URLs that
end on the very last cell of the viewport (or are cut off).

Closes #17343

## Validation Steps Performed
* Write an URL that wraps across the last 2 lines in the buffer
* Scroll 1 line up
* No assert 
* Hovering the URL shows the full, still visible parts of the URL 

(cherry picked from commit 261a3fec7a7a9b6bd14a1c46ce4bd0a9bb2ebc7e)
Service-Card-Id: 92678595
Service-Version: 1.20
2024-06-07 17:54:09 -05:00
Windows Console Service Bot
72596d9371 Localization Updates - fix issues in Korean, Italian, Spanish (#17304)
Closes #12665
Closes #12712
Closes #16867

(cherry picked from commit 13de7c668577ae270ce9528d6a895fd169ece7cc)
Service-Card-Id: 92614019
Service-Version: 1.20
2024-06-07 17:51:16 -05:00
Tushar Singh
20d5b843fd Fix hyperlinks using an extra character at the end (#17326)
Closes: #17323

- Run `echo Hello ^(https://github.com/microsoft/terminal^)` in cmd.
- Ctrl+click on the URL opens `https://github.com/microsoft/terminal` in
the browser.
- Hovering over the url in the terminal shows
`https://github.com/microsoft/terminal` in the hover UI.

(cherry picked from commit 212f43e7fb35ea2d64370d435034a961cf5cee1c)
Service-Card-Id: 92637504
Service-Version: 1.20
2024-06-07 17:51:15 -05:00
Dustin L. Howett
27fff2c1a3 build: move ESRP to a parameterized subtask which takes signingId (#17216)
This centralized all our ESRP calls in one file, which will make it
easier in the future when we are invariable required to change how we
call it again.

(cherry picked from commit 5ce7fb74036726c33eb5e565be2ae759aacd72a8)
Service-Card-Id: 92577954
Service-Version: 1.20
v1.20.11381.0
2024-05-17 12:41:17 -05:00
Dustin L. Howett
5f3492f8bc build: switch to ESRP v5, which supports managed identities (#17134)
This required me to push a bunch more parameters through the build
pipeline, but it gave me the opportunity to define them as variables
that can be set at queue time.

(cherry picked from commit 2f52f27197731a91d202fe101239091338860427)
Service-Card-Id: 92577964
Service-Version: 1.20
2024-05-17 12:41:16 -05:00
Leonard Hecker
b02c11b4aa AtlasEngine: Improve robustness against weird font sizes (#17258)
This clamps the font sizes between 1 and 100. Additionally, it fixes
a warning that I randomly noticed when reproducing the issue: D2D
complained that `EndDraw` must be called before releasing resources.
Finally, this fixes a crash when the terminal size is exactly (1,1)
cells, which happened because the initial (invalid) size was (1,1) too.

This doesn't fully fix all font-size related issues, but that's
currently difficult to achieve, as for instance the swap chain size
isn't actually based on the window size, nay, it's based on the cell
size multiplied by the cell count. So if the cell size is egregiously
large then we get a swap chain size that's larger than the display and
potentially larger than what the GPU supports which results in errors.

Closes #17227

(cherry picked from commit f62d2d5d2c7b4188daf1d46f48faacf5ee2c717d)
Service-Card-Id: 92546859
Service-Version: 1.20
2024-05-16 18:59:45 -05:00
Dustin L. Howett
fc6f83e086 ServicingPipeline: Warn when local release-XX branch is not uptodate (#17260)
This prevents me from making dumb mistakes, really.

(cherry picked from commit bf55c444601117dfb09b405752f4ea105e078997)
Service-Card-Id: 92546837
Service-Version: 1.20
2024-05-16 18:59:44 -05:00
Leonard Hecker
488bef7bca
Backport session persistence fixes in #17211 and #17268 (#17269)
As the title says, this backports the changes in #17211 and #17268:
* `PersistState` being called when the window is closed
  (as opposed to closing the tab). The settings check was missing.
* Avoid persisting windows with 0 tabs (= last tab gets closed).
2024-05-16 02:10:53 +02:00
Leonard Hecker
c6c078834c Fix race conditions in UiaTextRangeBase (#17257)
We need to lock the buffer when getting the viewport/cursor position.
This caused the UIA overlay to randomly fail to update.

## Validation Steps Performed
* Open a cmd tab and hold any key immediately
* Repeat until you're somewhat confident it's gone 

(cherry picked from commit e1b102a3540d7cc5aa24c2e3357e778357a679be)
Service-Card-Id: 92546851
Service-Version: 1.20
2024-05-13 12:34:28 -05:00
Tushar Singh
2c5018db43 Fix single-tab window tear-off crash (#17251)
## Validation Steps Performed
- Opened multi-tab terminal window with Narrator. Narrator can read
characters from the tabs.
- Started a drag and drop (tear-off) of a tab, and it didn't crash. This
was repeated multiple times.

(cherry picked from commit 30ef1f461d778429898542a1da5b799361b169bb)
Service-Card-Id: 92546868
Service-Version: 1.20
2024-05-13 12:34:27 -05:00
Leonard Hecker
0cc5194def Add nullptr checks to shared_ptr conversions (#17199)
We use `if (auto self = weakSelf.get())` in a lot of places.
That assigns the value to `self` and then checks if it's truthy.
Sometimes we need to add a "is (app) closing" check because XAML,
so we wrote something akin to `if (self = ...; !closing)`.

But that's wrong because the correct `if (foo)` is the same as
`if (void; foo)` and not `if (foo; void)` and that meant that
we didn't check for `self`'s truthiness anymore.

This issue became apparent now, because we added a new kind of
delayed callback invocation (which is a lot cheaper).
This made the lack of a `nullptr` check finally obvious.

(cherry picked from commit 6d0342f0bb31bf245843411c6781d6d5399ff651)
Service-Card-Id: 92509287
Service-Version: 1.20
2024-05-07 17:14:43 -05:00
Leonard Hecker
2b156d2efe Make UTextFromTextBuffer newline aware (#17120)
This PR achieves two things:
* When encountering rows with newlines (`WasForceWrapped` = `false`)
  we'll now copy the contents out of the row and append a `\n`.
  To make `utext_clone` cheap, it adds a reference counted buffer.
* Text extraction in `Terminal::GetHyperlinkAtBufferPosition`
  was fixed by using a higher level `TextBuffer::GetPlainText`
  instead of iterating through each cell.

Closes #16676
Closes #17065

## Validation Steps Performed
* In pwsh execute the following:
  ``"`e[999C`e[22Dhttps://example.com/foo`nbar"``
* Hovering over the URL only underlines `.../foo` and not `bar` 
* The tooltip ends in `.../foo` and not `.../fo` 

(cherry picked from commit 5b8eadb2ea16206bac2bb1c0b06f35bd4d0aae15)
Service-Card-Id: 92509615
Service-Version: 1.20
2024-05-07 17:12:35 -05:00
Dustin L. Howett
e349130d4e Fix ed2923ba by backporting HRESULT change from de7f9312 v1.20.11271.0 2024-05-06 16:30:48 -05:00
Dustin L. Howett
42bc7f20a9 PGO: train 1.20 separately 2024-05-06 16:03:08 -05:00
Leonard Hecker
ed2923ba8c AtlasEngine: Fix several error handling bugs (#17193)
This fixes:
* `HRESULT`s not being shown as unsigned hex
* `D2DERR_RECREATE_TARGET` not being handled
* 4 calls not checking their `HRESULT` return
  Out of the 4 only `CreateCompatibleRenderTarget` will throw in
  practice, however it throws `D2DERR_RECREATE_TARGET` which is common.
  Without this error handling, AtlasEngine may crash.

* Set Graphics API to Direct2D
* Use `DXGIAdapterRemovalSupportTest.exe` to trigger
  `D2DERR_RECREATE_TARGET`
* No error message is shown 
* If the `D2DERR_RECREATE_TARGET` handling is removed, the application
  never crashes due to `cursorRenderTarget` being `nullptr` 

(cherry picked from commit b31059e53e23f4d7dabe466cf4c46c08cafb6fba)
Service-Card-Id: 92500372
Service-Version: 1.20
2024-05-06 16:01:27 -05:00
Dustin L. Howett
345d266350 Take wrapping into account when expanding wordwise selections (#17170)
Closes #17165

(cherry picked from commit 6cda6797f8289cb727ba9fe95f4649a5eec417f0)
Service-Card-Id: 92471634
Service-Version: 1.20
2024-05-06 15:59:58 -05:00
Dustin L. Howett
47da9a0502 Fix RequestLaunchPosition (e2a076c038) v1.20.11215.0 2024-04-30 15:58:05 -05:00
James Holderness
12a5c95b98 Fix the DECTCEM reset position in the conpty stream (#17148)
## Summary of the Pull Request

When the conpty renderer determines that it needs to hide the cursor,
it does so by inserting a `DECTCEM` reset sequence at the start of the
output buffer, assuming that is the start of the frame. But when the
`_noFlushOnEnd` flag is set, you can have multiple frames pending in the
buffer, and the `DECTCEM` sequence will then end up in the wrong place.

This PR fixes the issue by saving the buffer size at the start of the
frame, and using that saved offset as the insert position for the
`DECTCEM` sequence.

## Validation Steps Performed

I have a game that was frequently affected by this issue (the cursor
would be visible when it was meant to be hidden). With this PR applied,
it now works perfectly.

## PR Checklist
- [x] Closes #15449

(cherry picked from commit ef318a14502ee933e4034d7b4bf5739d7d394ad1)
Service-Card-Id: 92457090
Service-Version: 1.20
2024-04-30 14:26:41 -05:00
Mike Griese
fa7198de88 Fix repositioning with the cursor, again (#17141)
This shouldn't have ever worked...? This looks like it was a typo and
should have been `mark.end`.

Thanks @joadoumie for asking about the moving the cursor in the prompt,
that convo lead to me finding this.

(cherry picked from commit d14ff939dc418fa04401304fdef539424dbb5bd5)
Service-Card-Id: 92441646
Service-Version: 1.20
2024-04-30 14:26:39 -05:00
Dustin L. Howett
164df3c959 Revert "Properly fix ConPTY buffer corking (#16793)"
This reverts commit 275e8d115a6337764cfd4e4bc8586e8952c3917a.
2024-04-30 14:15:03 -05:00
Dustin L. Howett
743d5681cf Update Cascadia Code to 2404.23 (#17137)
This update adds support for:

- Unicode 16 Large Type Pieces (they are really cool, you *have* to see
them)
- Unicode 13 Sextants (U+1FB00 - U+1FB3B)
- Octants, sedecimants, eights, miscellanrous blocks, separated
quadrants and sextants, and diagonals
- Segmented digits (think LED numbers)
- Checkerboards

It also fixes the coordinate system used in all of the blocks,
half-blocks, quadrants and eights for consistency.

This update does **not** include the new "Nerd Fonts" variant of
Cascadia Code or Cascadia Mono.

With big thanks to @PhMajerus for contributing all of the new symbols
for legacy computing.

See microsoft/cascadia-code#723, microsoft/cascadia-code#708 and
microsoft/cascadia-code#727 for more details.

(cherry picked from commit 41bb28c46d0e03d4b652cc340bb63790e0868ece)
Service-Card-Id: 92434845
Service-Version: 1.20
2024-04-26 11:33:08 -05:00
Mike Griese
464c0a3b3d Fix persisting the size of a focus mode window (#17068)
While I was fixing the initial position thing, I figured I'd fix this
too. We were mistakenly accounting for the size of the titlebar when we
should launch into focus mode (without one)

Closes #10730

(cherry picked from commit f36d589a8eb60fe9ff4c8efaad8eac088647e8a8)
Service-Card-Id: 92410732
Service-Version: 1.20
2024-04-26 11:33:06 -05:00
Dustin L. Howett
fb3147fd44 build: disable CheckCFlags for now, as it is blowing up the build (#17116)
OneBranch no likey. A test build is running now.

(cherry picked from commit 19f43f70bdbf6ea3d3c575b6a532cae2ee5ca6a2)
Service-Card-Id: 92421264
Service-Version: 1.20
2024-04-26 11:33:04 -05:00
Dustin L. Howett
849766cda3 [REPLAY] Move to AzureFileCopy@6 for Managed Identity support (#17121)
This is required for us to move off Entra ID Application identity.

(cherry picked from commit 2e7c3fa3132fa3bff23255480c593cbd3432eee5)

This was approved in #16957, so I will merge with one signoff.

(cherry picked from commit 3a63832c31c3e4ef7b22169216a5a14607efe3eb)
Service-Card-Id: 92421061
Service-Version: 1.20
2024-04-26 11:33:03 -05:00
PankajBhojwani
7bb70b0330 Update Azure Cloud Shell API to the newer version (#17115)
Updates the `api-version` to `2023-02-01-preview` when requesting for
CloudShell settings and shell

## Validation Steps Performed
Can still use Azure Cloud Shell through Windows Terminal

(cherry picked from commit ce4e0df7b0da5549a69219cd3e866b1bda1c2fbd)
Service-Card-Id: 92411552
Service-Version: 1.20
2024-04-26 11:33:01 -05:00
Leonard Hecker
f442109748 AtlasEngine: Fix custom shader time imprecision (#17104)
Since floats are imprecise we need to constrain the time value into a
range that can be accurately represented. Assuming a monitor refresh
rate of 1000 Hz, we can still easily represent 1000 seconds accurately
(roughly 16 minutes). So to solve this, we'll simply treat the shader
time modulo 1000s. This may lead to some unexpected jank every 16min
but it keeps any ongoing animation smooth otherwise.

(cherry picked from commit daffb2dbbffaeb78a5d9763f0c222927cf3af109)
Service-Card-Id: 92409332
Service-Version: 1.20
2024-04-23 16:50:22 -05:00
Leonard Hecker
8c1316cf09 Fix TerminalPage not being released on window close (#17107)
Because this holds onto the root element, `TerminalPage` gets "leaked"
on Windows 10 when a window is closed until another is opened.

## Validation Steps Performed
* Set a breakpoint in `Renderer::~Renderer`
* Open and close a window
* Breakpoint used to not get hit and now it does 

(cherry picked from commit a590a1bff076317a1f0d1fd7565af4b6f0f0acf3)
Service-Card-Id: 92407667
Service-Version: 1.20
2024-04-23 16:49:58 -05:00
Mike Griese
e2a076c038 Also remember to persist window positions (#17066)
This got lost in #16598. `TerminalPage` needs to ask the window where
the it actually is, so it can persist it. More details in
https://github.com/microsoft/terminal/pull/16598#discussion_r1511519304

Closes #17010

(cherry picked from commit 643f7167a66428c777f1e59b03a38279a5c2b688)
Service-Card-Id: 92360686
Service-Version: 1.20
2024-04-23 16:49:57 -05:00
Leonard Hecker
ff99f4b7c4
[1.20] Backport session persistence improvements (#17049)
This contains all the changes of 5dda507, c4c5206, 9f08ee7, and
5f10159 (#16598 and all related PRs), but without the buffer restore
feature. The hope is that these changes fix some rarer issues
we've been hearing about, where persistence doesn't work correctly.

## Validation Steps Performed
This changeset was tested on Windows 11 with 2 windows and 4 tabs
where 1 tab had 2 mixed split panes. All windows and tabs got
restored properly. It didn't crash on Windows 10.
2024-04-23 16:47:14 -05:00
Dustin L. Howett
7637e89566
[1.20] Revert search result highlighting from stable (#17103)
This wasn't guarded under velocity, and some of the fixes are coming in
too hot to be serviced into 1.20.

Reverts PR #16227 and #16691
2024-04-23 12:00:23 -07:00
Leonard Hecker
8a6941c269 Replace WinRT clipboard API with Win32 for copying (#17006)
In the spirit of #15360 this implements the copy part.
The problem is that we have an issue accessing the clipboard while
other applications continue to work just fine. The major difference
between us and the others is that we use the WinRT clipboard APIs.
So, the idea is that we just use the Win32 APIs instead.

The feel-good side-effect is that this is (no joke) 200-1000x faster,
but I suspect no one will notice the -3ms difference down to <0.01ms.

The objective effect however is that it just works.

This may resolve #16982.

* Cycle through Text/HTML/RTF-only in the Interaction settings
* Paste the contents into Word each time
* Text is plain and HTML/RTF are colored 

(cherry picked from commit 5f3a857192b2fa6f4e5ae87eb3ee59a1571515a2)
Service-Card-Id: 92308708
Service-Version: 1.20
2024-04-22 17:27:52 -05:00
Leonard Hecker
c0b2f55b87 Add more TraceLogging to ApiDispatchers (#17085)
More TraceLogging = More better?
I made this change as I noticed that most calls are not being logged.
Even after this change some crucial information won't be logged
(for instance arrays of `INPUT_RECORD`), because I couldn't come up
with a clever way to do so, but I think this is better than nothing.

(cherry picked from commit f49cf44b799b4a4017ab7dce5c29694cda0fe725)
Service-Card-Id: 92374415
Service-Version: 1.20
2024-04-22 17:25:39 -05:00
Tushar Singh
248665b9bb Fix window style under minimized state (#17058)
Closes: #13961

This PR changes the window styling we use under the minimized state. We
now retain the active window styling so the content's height doesn't
change when switching between minimized and maximized states.

## Validation Steps Performed
- Open Terminal and go into Maximized mode.
- Click on the Minimize button.
- No `SizeChanged` event in `ControlCore`.
- Click on the WT icon in the taskbar to restore it.
- No `SizeChanged` event in `ControlCore`.

(cherry picked from commit 11c4aa459d846f3ea9cd68cf5555cbe83cfef4ab)
Service-Card-Id: 92350319
Service-Version: 1.20
2024-04-22 17:25:32 -05:00
Mike Griese
b5b32dad19 Add a WT_SETTINGS_DIR env variable that portable profiles can use (#16949)
Basically, title.

It'd be a neat idea for portable installs of the Terminal to reference
files that are right there in the portable install.

This PR adds a `WT_SETTINGS_DIR` var to Terminal's own env block. This
allows us to resolve profiles relative to our own settings folder.

Closes #16295

(cherry picked from commit 36c81f24fbbc3473a3b1bbb214b8234a52740a1a)
Service-Card-Id: 92352620
Service-Version: 1.20
2024-04-22 17:22:54 -05:00
Leonard Hecker
a2ab91f8a4 Make ploc translations predictable (#16924)
(cherry picked from commit 77d5e23ef2229f7cde8b24fcb2498dccc4c7ca60)
Service-Card-Id: 92350470
Service-Version: 1.20
2024-04-16 10:49:08 -05:00
Windows Console Service Bot
6e3fc69ae2 Localization Updates - main - associated with #16886 (#17035)
(cherry picked from commit f4d8a74082be50783c5d5c92c5bd631f0dfe938c)
Service-Card-Id: 92350383
Service-Version: 1.20
2024-04-16 10:41:39 -05:00
Harsh Narayan Jha
485b4ab2ab Fix: UI style errors: Menu items capitalization and … (ellipses) mark misuse (#16886)
I changed the improper capitalization and misuse of ellipses mark (...)
in the context menu and various other places.

Fixes issues #16819 and #16846

## PR Checklist
- [ ] Closes #16846
- [x] Tests added/passed - NA
- [x] Documentation updated - NA
- If checked, please file a pull request on [our docs
repo](https://github.com/MicrosoftDocs/terminal) and link it here: #xxx
- [x] Schema updated (if necessary) - NA

(cherry picked from commit 8bd9578b3ca9d18ba362ce1fff9b396d426b39e9)
Service-Card-Id: 92350387
Service-Version: 1.20
2024-04-16 10:36:49 -05:00
Windows Console Service Bot
5a4508a79c Localization Updates - main - 04/06/2024 03:04:16 (#17025)
(cherry picked from commit b90eb93d26bdfe2ee5b3a6970f9984a1f66e6794)
Service-Card-Id: 92279783
Service-Version: 1.20
2024-04-16 10:32:44 -05:00
Dustin L. Howett
3cfd13d01d ci/rel: publish symbols using the internal symbol request API instead (#16991)
Work is ongoing to remove individually-authenticated service accounts
from some pipelines. This moves us closer to that goal.

Tested in Nightly 2403.28002.

(cherry picked from commit 2bcbe6b49208cb2040091b1cd2c9b3df8e69f5bd)
Service-Card-Id: 92239368
Service-Version: 1.20
2024-04-16 10:32:44 -05:00