Jump to content
Microsoft Windows Bulletin Board

Windows Terminal Preview 1.17 Release


Recommended Posts

Guest Christopher Nguyen
Posted

The Windows Terminal team is back with our first release of the year! 1f389.png.22e46488f1f8b3d9a26ce0fc5194459b.png

This release introduces version 1.17 to Windows Terminal Preview and updates Windows Terminal to version 1.16 with these new features. As always, you can install Windows Terminal and Windows Terminal Preview from the Microsoft Store, from the GitHub releases page, or by using winget.

Here’s what’s new in Windows Terminal Preview 1.17:

 

[HEADING=1]Dropdown Menu Customization[/HEADING]

 

Windows Terminal now supports dropdown menu customization! Shoutout to @fwest98 for this feature! This feature includes support for adding folders, adding separators, and adding profiles. You can now arrange the dropdown menu to your liking! This is especially useful for organizing your Profiles. For now, this can be done in your [iCODE]settings.json[/iCODE] file. The first time you save your settings in 1.17, we’ll convert your existing menu to the new format. This is lossless!

 

Here’s an example of how I customized my dropdown menu!

 

I have four Profiles (Windows PowerShell, Command Prompt, Developer Command Prompt for VS 2022, Developer PowerShell for VS 2022). I made my Command Prompt profile appear at the top of my dropdown menu, followed by my Windows PowerShell profile. After that, I added a separator and put all my VS 2022 profiles all under one folder called [iCODE]My VS Profiles[/iCODE] to keep things tidy.

 

[HEADING=2]JSON[/HEADING]

 

    "profiles": 
   {
       "list": 
       [
           {
               "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
               "hidden": false,
               "name": "Command Prompt"
           },
           {
               "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
               "hidden": false,
               "name": "Windows PowerShell"
           },
           {
               "guid": "{b16adc35-bf43-5693-b902-a45c96cb4735}",
               "hidden": false,
               "name": "Developer Command Prompt for VS 2022",
               "source": "Windows.Terminal.VisualStudio"
           },
           {
               "guid": "{3f518484-8030-5878-852d-8c9f0c8dd93e}",
               "hidden": false,
               "name": "Developer PowerShell for VS 2022",
               "source": "Windows.Terminal.VisualStudio"
           }
       ]
   },

   "newTabMenu": [
       { "type":"profile", "profile": "Command Prompt" },
       { "type":"profile", "profile": "Windows PowerShell" },
   { "type":"separator"},
       {
           "type":"folder",
           "name": "My VS Profiles",
           "icon": "",
           "entries":[
               { "type":"profile", "profile": "Developer Command Prompt for VS 2022" },
               { "type":"profile", "profile": "Developer PowerShell for VS 2022" }
           ]
       },
   ]

 

And here is the result!

Dropdown.thumb.png.2d81f05e6287817a9276deb998a27361.png

 

[HEADING=1]Process Restart[/HEADING]

 

After a process has been terminated, you can press Ctrl+D to close its pane or Enter to relaunch it.

If we can determine your working directory, we’ll also try to preserve it after you restart the process. ProcessRestart.png.a527406f11eaf5a17e68f313d6775e7d.png

 

[HEADING=1]Mica Support[/HEADING]

 

Windows Terminal now supports using Mica as a background material on Windows 11.

Mica is an opaque, dynamic material that incorporates the theme and desktop wallpaper to create a highly personalized appearance. Mica is also designed for performance as it only captures the background wallpaper once to create its visualizations. You can read more about the Mica material here.

 

Mica support can be enabled in your [iCODE]settings.json[/iCODE] file by setting [iCODE]useMica[/iCODE] to [iCODE]true[/iCODE] in your [iCODE]theme[/iCODE] settings. Note that this is just a [iCODE]theme.window[/iCODE] property. Let’s try this out!

Here is a Terminal without Mica applied. PreMica.thumb.png.cd85d76b1f0f7a2cba445f3c8ff00ad4.png Let’s try Mica out by creating a new theme called [iCODE]myNewTheme[/iCODE] (I know, I’m creative 1f60f.png.9c57e08fb16fdb956319d2019c779210.png) in our [iCODE]settings.json[/iCODE] and setting [iCODE]useMica[/iCODE] to [iCODE]true[/iCODE].

1f449.png.fae82a92d4c4d239b7c7022a6044f8be.png Tip: For the best visual results, set [iCODE]unfocusedBackground[/iCODE] to [iCODE]#00000000[/iCODE] in [iCODE]tab[/iCODE] and [iCODE]tabRow[/iCODE].

 

[HEADING=2]JSON[/HEADING]

 

"theme": "myNewTheme",
   "themes": 
   [
       {
           "name": "myNewTheme",
           "tab": 
           {
               "unfocusedBackground": "#00000000"
           },
           "tabRow": 
           {
               "background": "#00000000",
               "unfocusedBackground": "#00000000"
           },
           "window": 
           {
               "applicationTheme": "dark",
               "useMica": true
           }
       }
   ]

 

Voila! Here is our Terminal with Mica! It’s definitely a big (yet subtle) change. PostMica.thumb.png.cc4c3790abcb77c28128f258ef2ac7b0.png

 

[HEADING=1]Launch Position Params[/HEADING]

 

You can now configure all of the launch position parameters in the Startup section of the Settings UI. LaunchPositionParams-1.thumb.png.3dc2f2c11eeda7c65bd3906c17ca18e9.png

 

[HEADING=1]Color Schemes Page updates[/HEADING]

 

Our Color Schemes page has been revamped yet again for a more intuitive user flow thanks to your feedback! 1f3a8.png.2c599f4fa72c6cef2934f44fc369e2fa.png

Now, clicking on a color scheme in the list view and adding a new scheme will immediately take you to the edit scheme page. The “Delete” and “Set as Default” buttons have also been moved to the edit scheme page.

 

[HEADING=2]New Design on Windows Terminal 1.17 Preview[/HEADING]

 

117ColorSchemes.thumb.png.3c4b01c5e0f3c6a00405d91dc5615a9e.png

 

[HEADING=2]Old Design on Windows Terminal 1.15 Stable[/HEADING]

 

115ColorSchemes.thumb.png.85299d1374275a8de3af7452cb5f16a1.png

 

Also, when configuring a profile’s color scheme, you will now see a tiny preview of that color scheme before you select it. PinkVenom-1.thumb.png.38fdc610988e6a66f94ba2b4cac777d6.png

 

[HEADING=2]Other Color Scheme Improvements[/HEADING]

 

1f6e0.png.40d1c7853e359a286454ad2306d9c70b.png You can now configure a color scheme (per profile) to apply in System Light theme and System Dark theme

 

1f6e0.png.ec5b571c038e1c9c5f342fee3652eb7d.png You can now configure a color scheme (per profile) to apply in Application theme

 

[HEADING=1]Virtual Terminal (VT) and Output[/HEADING]

 

HUGE shoutout to @j4james for his amazing contributions in the VT space. James worked tirelessly to improve support for VT features, including rewriting how text output is processed in Windows Terminal. Here is a brief summary of the VT contributions that James made for this release:

 

1f31f.png.607677707d780928123a9bf57da406ab.png Added support for [iCODE]DEC[/iCODE] macro operations

 

1f31f.png.4199e1acc0a3e6b1217768544ae023e3.png Added support for [iCODE]DECARM[/iCODE] (Auto Repeat Mode)

 

1f31f.png.4bcf5723c505c6b6c1be02673c231b78.png Added support for [iCODE]IRM[/iCODE] (Insert Replace Mode)

 

1f31f.png.5d142904ebcf5db3118f66ef6473dc94.png Added support for private options in [iCODE]DSR[/iCODE] queries

 

1f31f.png.3e6c1a96990077c3ef3e6d211abd350c.png Added support for selective erase operations ([iCODE]DECSED[/iCODE])

 

1f31f.png.2e14e5f5ea709eab249641d95e4fb99d.png Added support for the [iCODE]DECRQM[/iCODE] escape sequence

 

1f31f.png.59c97053c8ff9d5432a4c1f42eeb9407.png Added support for the rectangular area operations ([iCODE]DEC*RA[/iCODE])

 

1f31f.png.682ea615c2c12e2efb35f86ef0f8cc6b.png Merged the legacy and extended attributes

 

1f31f.png.46b331e3ae9fd86611c5ebb37cf67e6e.png Rewrote how we handled text embedded in a stream of VT, which closed 8 bugs!

 

1f31f.png.f5c1d41216219908a9419ad293c9a0d6.png Added support for line rendition attributes ([iCODE]DECDHL[/iCODE]) over ConPTY

 

1f31f.png.df4bec8372785051277054ad27c14b11.png Added support for soft fonts over ([iCODE]DECDLD[/iCODE]) ConPTY as well

 

1f31f.png.25a21bee4daafa7bc3038f7f94d7deaa.png Wide characters will no longer cause weird cursor leavings

 

1f31f.png.9360ca5958df5cb1c8e4795004a569a3.png VT reports once again work when [iCODE]DECARM[/iCODE] is disabled

 

Thanks again for all your help, James! 1f973.png.947400bb1dff3c5b1bf08ce2449d679b.png

 

[HEADING=1]Usability Updates[/HEADING]

 

26a1.png.cdd57905352966c691683235ff4222a9.png wt now supports the [iCODE]--pos[/iCODE] and [iCODE]--size[/iCODE] commandline arguments to control the position and size of the new window (thanks @ianjoneill!)

 

26a1.png.42ac2989269a2ee81a166db4324a277d.png When you duplicate a tab, the new tab will open next to the current tab (thanks @vamsiikrishnaak!)

 

26a1.png.22b9b139bbe249c4d9d6630058d2eff9.png You can now use [iCODE]exe[/iCODE] and [iCODE]dll[/iCODE] resources for icon paths

 

[HEADING=1]Accessibility Improvements[/HEADING]

 

1f6e0.png.c3879f7b186d135ae05f34138a0bd91f.png We’ve removed a leading cause of crashes closing panes and tabs while screen reading was active

 

1f6e0.png.e559274440fa57921f8c318b88f2895b.png Our internal management window will no longer appear as an empty pane to screen readers

 

[HEADING=1]Miscellaneous Improvements[/HEADING]

 

1f6e0.png.9ddadd3df195079995fffc5559d27cc5.pngWindows Terminal now supports remaining FinalTerm mark types (command input start, command executed, and command finished)

 

1f6e0.png.c7ae946de45bbf044b96e31c143e11dc.pngYou can now set the scroll bar to be [iCODE]always[/iCODE] displayed in [iCODE]$profile.scrollbarState[/iCODE]

 

1f6e0.png.d660087bd6231841f91bb3d69c035a56.pngThe contents of the Terminal package are now code-signed, so those of you who deploy it unzipped will no longer get in trouble with your IT folks 1f609.png.e1af4572e9b7b83e65923021a46da11d.png 1f609.png.44e4789c4b9fd942087f813bd114b815.png

 

[HEADING=1]Bug Fixes[/HEADING]

 

1f41b.png.8fc54ddd96eed9815ad9110852af84cd.png The Export and Find context menu items work on unfocused tabs (thanks @ianjoneill!)

 

1f41b.png.289d45ea55afca8a16ed73e9cb830db0.png We’ve retooled how we launch Terminal elevated when you use an elevate: true profile (or Ctrl+Shift-click a profile in the dropdown menu.) (thanks @jboelter!)

 

1f41b.png.31e9d5dbbd569dbda3725fe46c624d81.png The about dialog (and other dialogs) will finally block the entire window even if you resize it

 

1f41b.png.09ee20293ba4a6093d31400cf66541c3.png We now attempt to account for transparent tab backgrounds when calculating the text foreground color

 

1f41b.png.64d4b6e9b091ed8f6f54e4481470c669.png You can now drag/drop more than 16 items directly out of 7-Zip (and some other applications) (thanks @jiejasonliu!)

 

1f41b.png.4ce7f9e10940a4cddc60e1089d2217ea.png Malformed settings objects will no longer cause an “Application error 0x%” settings warning

 

1f41b.png.a807dcf8186daf8001e7a7b5b1569a9e.png “Use Acrylic in Tab Row” no longer requires a relaunch

 

1f41b.png.34770b99d9809d7d8e9e225b9b660c8a.png Split pane borders no longer display in the wrong theme color

 

1f41b.png.c912d8c60fe617e1c80339ec3a5ad26f.png In separate titlebar mode, Terminal will now default to a dark title bar when you are using a dark theme

 

1f41b.png.2bdf4fffcd948ccea5052f5a6de6da51.png The “Add Appearance” button will now be read out properly by screen readers

 

[HEADING=1]Top contributors[/HEADING]

 

We love working with the community and recognizing those who made an impact for each release. Here are the community members who helped out for this one!

 

[HEADING=2]Contributors who opened the most non-duplicate issues[/HEADING]

 

1f3c6.png.83eaf5ef693b7904849f181e6114c419.png j4james

 

1f3c6.png.b3c2e5d4f39a63f9185f216217cd4b90.png brupelo

 

1f3c6.png.c574482e3d176ee4c1c6e1e3ea873e34.png Shubham786786

 

[HEADING=2]Contributors who created the most merged pull requests[/HEADING]

 

1f3c6.png.88e018912625c660e2e2ca63a5281b95.png AtariDreams

 

1f3c6.png.ecebdd046f4e5066c8d93b8e6920f4c0.png j4james

 

1f3c6.png.eb0fd5f734d37e5e2079cb1cd54f74b6.png @ianjoneill!

 

[HEADING=2]Contributors who provided the most comments on pull requests[/HEADING]

 

1f3c6.png.505f9802cab6fc5ae1a6d69cfa396afe.png j4james

 

1f3c6.png.18d69980ee758c1e14a9ff5f611b007c.png mrange

 

1f3c6.png.eb15f9e815cd7a14deea081b7148e44f.png KalleOlaviNiemitalo

 

I would also like to give additional recognition to @musvaage, @sashashura, @grammar-police, @d-caldasCaridad, and @jsoref for their help on documentation, code health, grammar, spelling, workflow security and maintenance!

 

[HEADING=1]Mahalo![/HEADING]

 

We hope you enjoy this latest release of Windows Terminal Preview! More information on these new features can be found on our docs site and if you find any bugs or have feature requests, feel free to file them on GitHub. If you have any questions you can reach out to Christopher Nguyen (@nguyen_dows) on Twitter. Happy New Year everyone!

 

P.S. “Mahalo” means “Thank you” in Hawaiian 1f642.png.061e9330994f81a6fb950e8eb9d885b0.png 1f919.png.3f424568a623fa3ebc2b00f52a9f1d0c.png

 

Jan2023Signatures.thumb.png.9f47927f3635b9279d602b5f3ed726a0.png

 

The post Windows Terminal Preview 1.17 Release appeared first on Windows Command Line.

 

Continue reading...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...