Releases: microsoft/terminal
Windows Terminal Preview v0.7.3291.0
Features
- Split Panes! The keybindings for splitting are now included by default. (#3585)
- Our window borders have gotten a significant makeover. THE BORDERS ARE NOW GREAT. THE THICKNESS IS GONE. (#3394)
- Known Issue: If Windows is set to dark theme, and you've got the "use my accent color on title bars" setting turned off, your window borders will be white. Really quite white. Even so, we think this is a significant step up.
- They will no longer hang over onto other monitors when you maximize Terminal.
- They will no longer accidentally blow up to gargantuan sizes like "an inch on each side."
- The resize handles are now, largely, exactly where you'd expect them.
- Huge thanks to @greg904 for working tirelessly to bring this one in!
- All input method editors (Ink, Emoji, Chinese, Japanese and Korean, as well as various others) now appear, appear in the right place, offer input feedback, and actually work. (#1919)
- You can now turn off dynamic titles with
suppressApplicationTitle
; when you do so, a tab will retain thename
ortabTitle
of its originating profile (#2814) - RTF data is now copied to the clipboard (#3535)
- We've finally caught up with the state of the art as it was in 1997, so more applications (usually the older ones) will receive colored content on paste.
- You can now set the background color of a selection using
selectionBackground
(at the profile level) (#3471) - Tabs can now be reordered! (#3478)
- Known Issue: You cannot reorder the tabs when running as admin. We're tracking this in #3581.
- You can try, but it will definitely crash.
- Known Issue: You cannot reorder the tabs when running as admin. We're tracking this in #3581.
- Fullscreen mode now exists and you can enter it using Alt+Enter or F11 (#3408)
- You can rebind fullscreen mode with the
toggleFullscreen
command.
- You can rebind fullscreen mode with the
- Azure Cloud Shell will now be offered on ARM64 devices (#3489)
- Key bindings now support arguments; check the default settings for some examples of how this works (#3391)
- As an example so you don't have to crack the settings open:
"command": "newTabProfile0"
is now better expressed as"command": { "action": "newTab", "index": 0 }
. It looks more verbose, but wow is it ever more flexible.
- As an example so you don't have to crack the settings open:
- A key binding, Ctrl+0, has been added to reset a terminal's font size to "default" (if you've zoomed it) (#3505)
- Rebind this with the command
resetFontSize
- Rebind this with the command
Changes
- The "Active Terminal" and "Focused Control" are now decoupled (#3540)
- We're a lot less likely to lose track of who is the terminal of repute in a multi-pane situation.
- Improvements to the Azure connection:
- All of its messages are now localizable (#3463)
- There's now more padding to the left of the tabs (#3513)
- Clicking the scroll arrow buttons will now move one line at a time (#3397)
- We've revamped how we launch processes to better support fixing #2563 (and others) (#3461)
- Various bits of internal refactoring; break everything out of App except Xaml platform init (#3465)
VT Improvements
- The Save/Restore Cursor sequences
DECSC
andDECRC
are now better-supported (#3160) - ... so is
HPA
(#3368)
Bug Fixes
backgroundImage
now expands environment variables (#3204)- Increase and decrease font size using keybindings works (#3629)
- Paste now replaces
\r\n
line endings with\r
(#3449)- Pasting content is now at least 98% less annoying.
- Alt+Arrow-Keys no longer print extra characters (#3117)
- When you’re scrolled up, pasting now scrolls down to the prompt when using snapOnInput (#3521)
- Terminal should no longer shuffle off this mortal coil when DWM buys the farm, like sometimes when your display topology changes (#3460)
- Quickly opening and closing tabs will crash less (#3256)
- Printing a binary file to your terminal using WSL won’t cause it to misbehave quite as badly (#3380)
- As a question, though, why would you do this? This came to us as a repro that was legitimately phrased as "Just run
cat /bin/*
".???
- As a question, though, why would you do this? This came to us as a repro that was legitimately phrased as "Just run
Windows Terminal Preview v0.6.2951.0
Features
- There's now a setting for launching the Terminal in a specific initial position on your screen or to have it maximized when it starts up (#2817)
- Set
initialPosition
to a string of the formatx, y
to force the terminal to launch in that position. Like,100, 200
. - The position specified is relative to your primary monitor. Negative values will be to the left of (x) or above (y) the primary monitor.
- Set
launchMode
tomaximized
to request that Terminal start up maximized on the monitor it would have landed on based on itsinitialPosition
- Set
- If you chose a color scheme that didn't exist, you got the wonderful black-on-black color scheme that was excellent for readability. Now instead, you get a warning that the settings couldn't find a valid scheme and we choose the default Campbell scheme instead so you can actually see things. (#3033)
- Terminal now also warns you about closing many tabs when clicking the X button on the window frame, like a browser (#3049)
- There are new keybindings,
increaseFontSize
anddecreaseFontSize
(bound by default to Ctrl+= and Ctrl+-) that help you increase and decrease the font size. (#2700)
Changes
- We've upgraded to the latest version of WinUI, 2.2! There's a bunch of improvements in our tab bar, including... (#3027)
- ... the ability to scroll your tabs with
<
and>
buttons - ... the ability to see all of your tabs
- ... a much more accessible color scheme
- A KNOWN BUG where the tab bar won't expand when you make the window wider; this is being tracked by #3300.
- (workaround: open a new tab)
- ... the ability to scroll your tabs with
- Performance improvements
- We now defer rendering the cursor until we know we're done printing text (#2960)
- We got a little excited about updating the cursor and would spend most of our time drawing the cursor blinking on and off or moving through the buffer, even while we were writing more text. Now, we control ourselves and only draw the cursor when done emitting a segment of text. This improves drawing and buffering performance.
- Things that change color in the middle of a line will now do so less slowly (#2937)
- Runs of simple characters will no longer incur an expensive layout pass (#2959)
- Re-instates text complexity check during text rendering to make simple/basic/ASCII text skip all analysis phases and render faster (less CPU!)
- We now defer rendering the cursor until we know we're done printing text (#2960)
- Characters of unknown width are now considered to be one cell wide (#2928)
- Improves layout of all glyphs that are "ambiguous" per the Unicode standard by forcing them to be narrow, as most other Terminals do. This should improve table/box drawing.
- If you see some emoji that have been crushed, smushed or smashed, please mention them by codepoint in #900.
- Emoji are almost all ambiguous, so this is troublesome.
Bug Fixes
- We'll no longer crash if you open a tab, close it, then try to draw some unexpected characters in any other tab (#2928)
- Weird enough, this was the same fix as the "ambiguous width" one above. Your homework is figuring out why!
- Text copied to the clipboard will, in a lot more cases, have the right number of line endings (#3239)
- Characters like
:
and'
will now make their way to legacy applications in a way they can understand (#3199)- (some old Windows applications, or new ones that are written to target consoles that have been dead and gone for tens of years, were trying to read the scancode out of a key event. Terminal wasn't putting the right one in sometimes.)
- correctly inform connection of resize events (#3228)
- Fix for Visual Studio 2019 preview embedded terminal component to relay resizing events correctly. - Revert "Patch fix for #1360 (#2924)" (#3212)
- See below. We tried fixing full-width characters at end-of-line and introduced a bunch of crashes, so this rolls it back to stop the crashes. - TermControl: force all ambiguous glyphs to be narrow (#2928)
- Improves layout of all glyphs that are "ambiguous" per the Unicode standard by forcing them to be narrow, as most other Terminals do. This should improve table/box drawing. - Replace ExpandEnvironmentStrings double calling with wil helper (#3198)
- Cleanliness fix. Turns out we don't need to jump through 12 hoops to expand environment variables because WIL has a nice helper. This makes us use it and stop the hoop jumping. - Defer cursor redrawing when writing the buffer (#2960)
- We got a little excited about updating the cursor and would spend most of our time drawing the cursor blinking on and off or moving through the buffer, even while we were writing more text. Now, we control ourselves and only draw the cursor when done emitting a segment of text. This improves drawing and buffering performance. - You can now use font names longer than 32 characters (#3107)
- We used to believe that font names could only be 32 characters or less because 32 characters would be enough for anyone. Now we believe that font names can be any length they choose to be.
- Two tabs emitting output at the same time will no longer corrupt oneanother (#3110)
- If you have a
globals
object in your settings file, it will no longer cause the rest of your settings to be ignored. - VT fixes
- Alt+Backspace followed by Enter will no longer result in the application receiving Alt+Enter (#2823)
- NUL will no longer show up in the buffer (#3015)
- Some applications spend a lot of time talking about nothing. We used to listen to them and broadcast their nothingness to the world. Now we ignore them and save everyone from having to hear that. (Applications that used NUL to waste time don't have an effect of inserting space into the buffer anymore.)
- The terminal will now know when the application wants to hide the cursor. It won't do anything about it, but it'll know. (#2829)
- The line above, but for extended text attributes like underline, strikethrough, and italics. Remember, the Terminal won't do anything with this newfound knowledge. (#2917)
Windows Terminal Preview v0.5.2762.0
Changes
- Terminal has been updated to include Cascadia Code 1910.04. (#3048)
Bug Fixes
- The maximize/restore button will now reflect the state of the window (#3025)
- You can once again double-click on the titlebar (#3024)
- You always could, but sometimes it wouldn't do anything. Now it will! Bonus: it'll do what you expect.
- Update cmd's default profile to disable acrylic (#3020)
- VT fixes
- "Exotic" inputs like Alt+< and any other Alt+ that isn't a letter (as defined by US-ASCII) will work more reliably (#2836)
- make filling chars (and, thus, erase line/char) unset wrap (#2831)
- Fix a number of crashes at the WinRT boundary (including some clipboard issues!) (#2927)
- PowerShell now has its own theme so it stops eating your
background
(#2936)
Windows Terminal Preview v0.5.2681.0
Bug Fixes
- The rightmost column of the screen will now be cleared properly for
EL
and (because of how the console hosting layer works,)ED
+cls
(#2879)
Windows Terminal Preview v0.5.2661.0
Features
- You’re going to find a new font on your system. Enjoy it! It’s called “Cascadia Code,” and it’s also an early version. It looks pretty good in terminals. (#2806)
- Your settings are going to get way better from here on in.
- WSL distributions will automatically show up in your menu, ready to use! (#2603) (#2798) (#2789)
- Special feature for upgraders only: existing profiles that point to long-dead distributions will not be removed.
- You can go clean up your key bindings and color schemes. (#2515)
- If you’ve been selfhosting with us since v0.1 and have never taken our advice to delete your profiles, you’re going to have two copies of CMD and PowerShell.
- It’s up to you how you’d like to proceed. You can probably delete one of each.
- There’s a settings schema! If you’re using VS Code, it can help you not write typos. (#2803)
- WSL distributions will automatically show up in your menu, ready to use! (#2603) (#2798) (#2789)
Changes
- You can now use short hex color codes (like
#ccc
) in your settings. (#2658) - You can now hide profiles (key: hidden) (#2801) (#2800)
- Some new defaults have landed (#2378)
- Padding: 8 all around
- Font size: 12? I think it’s actually 12, but the commit says 11. Good hygiene in commit messages is important, folks!
- A new binding command,
closeWindow
, has been added. By default, it will bind to alt+f4. It’ll prompt you before exiting! (#2526) (#2858) - When you double-click a word delimiter, it’ll select all delimiters. Same thing when you drag over one. (#2511)
- Space is special – space is different from the other delimiters in that selecting a period or a slash won’t automatically select every space on the screen (oops).
Bug Fixes
- Terminal will no longer take a trip upstate when it fails to put something on the clipboard (#2590)
- Terminal will be more resilient when your display adapter disappears (#2830)
- Making the window smaller now has a lower chance of crashing when the alternate buffer is engaged (#2666)
- You can now select text with your Surface Pen (or other pen) (#2586)
- Running CLS in CMD will now clear the active screen buffer (not the wrong one, and definitely not a screen buffer on some other computer) (#2729)
- HTML Copy improvements:
- [conhost] When you launch with VT mode enabled, tab stops are now set (#2816)
- Poorly-behaved legacy applications that like to print literal control characters are no longer going to be very sad and wrong when they do. (#1964)
VirtualTerminalLevel
= 1 is now engaged by default for Windows Terminal (and other pseudoconsole hosts) (#2824)- A huge contributor to the bug where copy forgot to include newlines has been addressed (#2797)
- Accessibility should be somewhat less crashy (#2609)
- VT handling improvements (conhost)
RIS
will properly clear the display and the scrollback (#2367)- The VT scrolling commands now check their boundaries better (#2505)
IL
andDL
now have proper margin handling (#2731)DECSTBM
clipping is now applied more consistently (#2764)- Lines inserted will maintain their RGB/256-color attributes (#2668)
- Hygiene: The panes implementation is now more consistent (#2494)
- Hygiene: TerminalApp and Page are now more cleanly separated so that we can support different hosting environments. (#2208)
Windows Terminal Preview v0.4.2382.0
Features
- HTML Copy! (#1224) (#2038)
- HTML copy is incontrovertible.
- If you want to paste plain text, the receiving application should provide that option.
- HTML copy is incontrovertible.
- There have been significant improvements to tab titles (#2373)
- tabTitle is no longer an override
- Any opened tab will default to being named after its profile (or tabTitle, if it is set)
- The shell can read and change this title.
- CMD likes to append the running command name to the existing title. It can now do that!
- You can now double-click and drag to continue selecting words (#2184)
- …and triple-click and drag to continue selecting lines!
- Your settings will no longer roam from machine to machine. (#2298)
- We always thought it’d be a good idea to roam settings, but really it ended up being a lot more trouble than it was worth.
- No longer will your WSL and PowerShell Core profiles from Machine A cause WT to fail to run on Machine B!
- We’ll migrate them to local storage for you.
- Even if you're using a symbolic link!
- You can now bind Ctrl+C to copy and it’ll still send a literal
^C
if you don’t have any text selected (#2446) - A new selection mode,
copyOnSelect
, has been added: Text will be copied to your clipboard when you select. Immediately. (#2152) - A broader range of settings errors will now result in useful diagnostics instead of useless diagnostics. (#2422)
- A new key binding action,
openNewTabDropdown
, has been added. By default, we bind it to Ctrl+Shift+Space.- As with all new default bindings, it will only be added for new users.
Changes
- Azure Cloud Shell no longer identifies itself as Visual Studio Code (#2219)
- (Dev builds only) Azure Cloud Shell only shows up if it would actually work on your build. (#2195)
- The settings file will never be rewritten once it exists. (#2475)
- (on 100%-scale displays) UIA text ranges will now appear in the right place on-screen (#2423)
Bug Fixes
- Powershell should no longer crash when you close its tab (#2198)
- Applications will now receive proper exit events when you close their tabs.
- Tab icons now flicker 100% less often (#2376)
- We won’t crash when you try to split panes for ants -- thanks @richardszalay! (#2450)
- Data copied to the clipboard will be kept once you exit WT (#2486)
- It’s a bit harder to accidentally detach the window from its dropdown menu. (#2438)
- The box cursor will be 74% less blurry and 100% more cool (#2491)
- Underlines won’t be in the wrong color any longer! (#2491)
- The windows key will no longer snap on input. (#2514)
- Azure Cloud Shell will no longer fail when it can't figure out a tenant's name (#2508)
Windows Terminal Preview v0.3.2171.0
Windows Terminal Preview v0.3.2142.0
Features
Accessibility Support
This is an early integration of our conhost accessibility work into the new Terminal. There's a number of downsides, like that the text range starts at the top of your entire buffer and that Narrator reads everything in it. (#2083) (#1691)
Azure Cloud Shell
New users (or existing users who delete their existing profiles; sorry, same old profile feature) will now have a cool azure cloud shell connection added to their list of profiles. (#1808)
Changes
General
- The UI is now much better. (#1948) (#1934) (#1898) (#929)
- [known bug] The “Maximize” cube won’t turn into the “Restore” icon when you snap or double-click the title bar.
- This is just cosmetic.
- [known bug] The “Maximize” cube won’t turn into the “Restore” icon when you snap or double-click the title bar.
- double- and triple-click selection now works, with customizable word delimiters! (#1197)
- New Panes Features
- You can now resize panes with the keyboard! First, you must add key bindings for
resizePane{Up,Down,Left,Right}
. (#1207) - You can now move focus between panes with the keyboard! You must add key bindings for
moveFocus{Up,Down,Left,Right}
. (#1910) - Panes key bindings will be set by default once we’re sure the feature is actually ready to ship!
- You can now resize panes with the keyboard! First, you must add key bindings for
- When your mouse leaves the window while you're selecting, the selection will continue. (#1523)
- Console Host now supports DECOM and DECCOLM! DECSTBM works better. (#1709) (#1331) (#1881)
- The About dialog now has links to really interesting stuff! (#1887)
Settings
- There's a new default key binding for
closePane
[*] (#2012)- Ctrl+Shift+W will close an open pane (or tab)
closeTab
is no longer bound by defaultcloseTab
closes all panes in a tab (without confirmation)
- There's a new set of default key bindings. [*] (#2014)
- Command line applications are important to us, and Ctrl+W and Ctrl+T are important to them.
- By default,
newTab
andclosePane
will be bound to Ctrl+Shift+T and Ctrl+Shift+W
- There's a new setting for background image alignment:
backgroundImageAlignment
(#1959)- Values:
center
,left
,top
,right
,bottom
,topLeft
,topRight
,bottomLeft
,bottomRight
- Values:
- If you leave the
guid
out of a newly-created profile, one will be generated for you. (#2117) - You can now map OEM keys (
{}\_+-=\\|/?\<\>:";'
) in key bindings! (#2067) - A new profile setting,
tabTitle
, was introduced for people who really don’t want to write code to set their tab titles. (#1358)- Writing code is the best way to put dynamic content in your title bar! It’s really, really cool. Most shells support it!
- You can now add key bindings for
copy
,copyTextWithoutNewlines
, andpaste
. [*] (#1093) - You can now add a key binding for
duplicateTab
[*] (#1685) - There is a new “Vintage” color scheme! [*] (#1901)
- You can now have a background image over top of acrylic or a solid color (#1107)
* New defaults won't be applied to existing profiles. You can either remove your existing profiles.json
or attempt to build a simulacrum of the new defaults.
Bug Fixes
- You can now open the settings file if you use the one true text editor, GVIM (or any other text editor that prefers the “edit” verb instead of the “open” verb.) (#1841)
- If you don’t have an editor bound for JSON files, we’ll mercilessly fall back to notepad.
- Complicated commandlines need a lot less escaping. Mostly, ones with spaces and quotes. (#1815)
- This may be a compatibility concern. Check your profiles to make sure they work!
- Padding no longer pads the scroll bar. Sorry about the padded scroll bars. (#1778)
- The terminal now works if you’re one of the six people who have enabled Use Legacy Console. (#1935)
- Pressing escape will only escape once, so you don’t escape twice (#1974)
- RTL text looks way less bad (#1873)
- You’ll no longer end up with broken Unicode sequences in long runs of emoji or other fancy text! (#1850)
- Your window will no longer overhang the edge of your screen in certain monitor shapes (elliptical, mostly) (#1921)
- Environment variables are now supported in
icon
. (#2050) - A number of crashes were fixed.
Other Changes
Windows Terminal - Preview v0.2 update 1831
This release fixes some of the main issues identified in v0.2.
Bugs Fixed
- AltGr-modified keys weren't working
- A crash that occurred when snapping the Terminal to the side of the screen
- A crash in pane/tab closing
- Our binaries were built with the
APPCONTAINER
flag, which made them fail store certification - Windows Terminal didn't work anywhere that required Direct2D software rendering
- Solarized and Campbell color schemes weren't totally correct
- The version number in the About dialog could not be copied
Windows Terminal - Preview v0.2
This is the first public preview release of Windows Terminal.
Early Preview Disclaimer
This very early preview release includes many usability issues, most notably the lack of support for assistive technology. Much of the internal work to support this is complete and it’s our top priority to support assistive technology very soon. To follow our progress, please track #634.