Windows Terminal Preview 1.17 Release

The Windows Terminal team is back with our first release of the year! 1f389.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:

Dropdown Menu Customization​


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 settings.json 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 My VS Profiles to keep things tidy.

JSON​


Code:
    "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.png

Process Restart​


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

Mica Support​


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 settings.json file by setting useMica to true in your theme settings. Note that this is just a theme.window property. Let’s try this out!
Here is a Terminal without Mica applied. PreMica.png Let’s try Mica out by creating a new theme called myNewTheme (I know, I’m creative 1f60f.png) in our settings.json and setting useMica to true.
1f449.png Tip: For the best visual results, set unfocusedBackground to #00000000 in tab and tabRow.

JSON​


Code:
"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.png

Launch Position Params​


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

Color Schemes Page updates​


Our Color Schemes page has been revamped yet again for a more intuitive user flow thanks to your feedback! 1f3a8.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.

New Design on Windows Terminal 1.17 Preview​


117ColorSchemes.png

Old Design on Windows Terminal 1.15 Stable​


115ColorSchemes.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.png

Other Color Scheme Improvements​


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

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

Virtual Terminal (VT) and Output​


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 Added support for DEC macro operations

1f31f.png Added support for DECARM (Auto Repeat Mode)

1f31f.png Added support for IRM (Insert Replace Mode)

1f31f.png Added support for private options in DSR queries

1f31f.png Added support for selective erase operations (DECSED)

1f31f.png Added support for the DECRQM escape sequence

1f31f.png Added support for the rectangular area operations (DEC*RA)

1f31f.png Merged the legacy and extended attributes

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

1f31f.png Added support for line rendition attributes (DECDHL) over ConPTY

1f31f.png Added support for soft fonts over (DECDLD) ConPTY as well

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

1f31f.png VT reports once again work when DECARM is disabled

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

Usability Updates​


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

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

26a1.png You can now use exe and dll resources for icon paths

Accessibility Improvements​


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

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

Miscellaneous Improvements​


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

1f6e0.pngYou can now set the scroll bar to be always displayed in $profile.scrollbarState

1f6e0.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 1f609.png

Bug Fixes​


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

1f41b.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 The about dialog (and other dialogs) will finally block the entire window even if you resize it

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

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

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

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

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

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

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

Top contributors​


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!

Contributors who opened the most non-duplicate issues​


1f3c6.png j4james

1f3c6.png brupelo

1f3c6.png Shubham786786

Contributors who created the most merged pull requests​


1f3c6.png AtariDreams

1f3c6.png j4james

1f3c6.png @ianjoneill!

Contributors who provided the most comments on pull requests​


1f3c6.png j4james

1f3c6.png mrange

1f3c6.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!

Mahalo!​


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 1f919.png

Jan2023Signatures.png

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

Continue reading...
 

Similar threads

C
Replies
0
Views
80
Christopher Nguyen
C
C
Replies
0
Views
90
Christopher Nguyen
C
C
Replies
0
Views
70
Christopher Nguyen
C
C
Replies
0
Views
22
Christopher Nguyen
C
C
Replies
0
Views
122
Christopher Nguyen
C
Back
Top Bottom