{"id":5182,"date":"2019-10-23T12:55:40","date_gmt":"2019-10-23T19:55:40","guid":{"rendered":"http:\/\/devblogs.microsoft.com\/commandline\/?p=5182"},"modified":"2019-10-23T12:55:40","modified_gmt":"2019-10-23T19:55:40","slug":"windows-terminal-preview-1910-release","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/commandline\/windows-terminal-preview-1910-release\/","title":{"rendered":"Windows Terminal Preview 1910 Release"},"content":{"rendered":"<p>Another update to the Windows Terminal has just been released! As always, you can download the Terminal from the <a href=\"https:\/\/www.microsoft.com\/en-us\/p\/windows-terminal-preview\/9n0dx20hk701\" rel=\"noopener noreferrer\" target=\"_blank\">Microsoft Store<\/a>, the <a href=\"https:\/\/businessstore.microsoft.com\/en-us\/store\/details\/windows-terminal-preview\/9N0DX20HK701\" rel=\"noopener noreferrer\" target=\"_blank\">Microsoft Store for Business<\/a>, and <a href=\"https:\/\/github.com\/microsoft\/terminal\/releases\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub<\/a>.<\/p>\n<p>\ud83d\udc49 <strong>Note:<\/strong> In the About popup within the Terminal, this version will appear as v0.6.<\/p>\n<h2>Updated UI<\/h2>\n<p>The Terminal now has even better tabs! The <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/communitytoolkit\/controls\/tabview\" rel=\"noopener noreferrer\" target=\"_blank\">WinUI TabView<\/a> used in the Terminal has been updated to version 2.2. This version has better color contrast, rounded corners on the dropdown, and tab separators. Also, when too many tabs fill the screen, you can now scroll through them with buttons!<\/p>\n<p><a href=\"http:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/tabview2.2.png\"><img decoding=\"async\" src=\"http:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/tabview2.2.png\" alt=\"\" width=\"1501\" height=\"879\" class=\"alignnone size-full wp-image-5183\" srcset=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/tabview2.2.png 1501w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/tabview2.2-300x176.png 300w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/tabview2.2-768x450.png 768w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/tabview2.2-1024x600.png 1024w\" sizes=\"(max-width: 1501px) 100vw, 1501px\" \/><\/a><\/p>\n<h2>Dynamic Profiles<\/h2>\n<p>Windows Terminal now automatically detects any Windows Subsystem for Linux (WSL) distribution installed on your machine along with PowerShell Core. If you install any of these after this update of the Terminal, they will appear in your profiles.json file!<\/p>\n<p><a href=\"http:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/dynamic-profiles.png\"><img decoding=\"async\" src=\"http:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/dynamic-profiles.png\" alt=\"\" width=\"1501\" height=\"879\" class=\"alignnone size-full wp-image-5184\" srcset=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/dynamic-profiles.png 1501w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/dynamic-profiles-300x176.png 300w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/dynamic-profiles-768x450.png 768w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/10\/dynamic-profiles-1024x600.png 1024w\" sizes=\"(max-width: 1501px) 100vw, 1501px\" \/><\/a><\/p>\n<p>\ud83d\udc49 <strong>Note:<\/strong> If you don&#8217;t want a profile to appear in your dropdown, you can set <code>\"hidden\"<\/code> to <code>true<\/code> in your profiles.json file.<\/p>\n<p><code>\"hidden\": true<\/code><\/p>\n<h2>Cascading Settings<\/h2>\n<p>The Terminal now has an improved settings model! It ships with a defaults.json file with all of the default settings included. If you&#8217;d like to see what&#8217;s included in the default settings file, you can hold down the <code>Alt<\/code> key and click on the settings button in the dropdown menu. This file is an auto-generated file and changes made to the file are ignored and overwritten. Your own profiles.json file is where you can add as many custom settings as you&#8217;d like. \ud83d\ude0a If you&#8217;d like to reset your settings, Scott Hanselman (<a href=\"https:\/\/twitter.com\/shanselman\" rel=\"noopener noreferrer\" target=\"_blank\">@shanselman<\/a>) has written an <a href=\"https:\/\/www.hanselman.com\/blog\/NowIsTheTimeToMakeAFreshNewWindowsTerminalProfilesjson.aspx\" rel=\"noopener noreferrer\" target=\"_blank\">excellent blog post<\/a> on how to do just that!<\/p>\n<p>If you add a new profile, scheme, key binding, or global setting in your profiles.json, it&#8217;ll be treated as an added setting. If you create a new profile whose GUID matches an existing one, then your new profile will override the old one. If there is a default key binding included in the defaults.json file that you would like to free up, you can set that key binding to <code>null<\/code> in your profiles.json.<\/p>\n<p><code>{\n    \"command\": null, \"keys\": [\"ctrl+shift+w\"]\n}<\/code><\/p>\n<h2>New Launch Settings<\/h2>\n<p>You can now set the Terminal to launch as maximized or set its initial position! Setting the Terminal to launch as maximized can be done by adding the global setting <code>\"launchMode\"<\/code>. This setting accepts either <code>\"default\"<\/code> or <code>\"maximized\"<\/code>.<\/p>\n<p><code>\"launchMode\": \"maximized\"<\/code><\/p>\n<p>If you&#8217;d like to set the Terminal&#8217;s initial position, you can add <code>\"initialPosition\"<\/code> as a global setting. This property accepts a string with the X and Y coordinates separated by a comma. For example, if you&#8217;d like the Terminal to launch at the top left of your primary screen, you&#8217;d add the following to your profiles.json:<\/p>\n<p><code>\"initialPosition\": \"0,0\"<\/code><\/p>\n<p>\ud83d\udc49 <strong>Note:<\/strong> If you&#8217;re using multiple monitors and would like to set the Terminal to launch to the left or above your primary monitor, you will have to use negative coordinates.<\/p>\n<h2>Bug Fixes<\/h2>\n<p>\ud83d\udc1b You can now double-click on the tab bar to maximize the window!<\/p>\n<p>\ud83d\udc1b One of the main bugs causing newline issues with copy and paste has been fixed!<\/p>\n<p>\ud83d\udc1b HTML copy doesn&#8217;t leave the clipboard open anymore!<\/p>\n<p>\ud83d\udc1b You can now use font names longer than 32 characters!<\/p>\n<p>\ud83d\udc1b There is no longer text corruption when running two tabs at the same time!<\/p>\n<p>\ud83d\udc1b General stability improvements (less crashes)!<\/p>\n<h2>Top Contributors<\/h2>\n<p>We love working with our community and we&#8217;d like to call out those who have especially made an impact!<\/p>\n<h3>Contributors Who Opened the Most Non-Duplicate Issues<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/egmontkob\" rel=\"noopener noreferrer\" target=\"_blank\">egmontkob<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/skyline75489\" rel=\"noopener noreferrer\" target=\"_blank\">skyline75489<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener noreferrer\" target=\"_blank\">j4james<\/a><\/p>\n<h3>Contributors Who Created the Most Merged Pull Requests<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/skyline75489\" rel=\"noopener noreferrer\" target=\"_blank\">skyline75489<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/paul-cheung\" rel=\"noopener noreferrer\" target=\"_blank\">paul-cheung<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/martin389\" rel=\"noopener noreferrer\" target=\"_blank\">martin389<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/xiaoyinl\" rel=\"noopener noreferrer\" target=\"_blank\">xiaoyinl<\/a><\/p>\n<h3>Contributors Who Provided the Most Comments on Pull Requests<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/skyline75489\" rel=\"noopener noreferrer\" target=\"_blank\">skyline75489<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/martin389\" rel=\"noopener noreferrer\" target=\"_blank\">martin389<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener noreferrer\" target=\"_blank\">j4james<\/a><\/p>\n<h2>Until Next Time<\/h2>\n<p>Feel free to reach out to Kayla (<a href=\"https:\/\/twitter.com\/cinnamon_msft\" rel=\"noopener noreferrer\" target=\"_blank\">@cinnamon_msft<\/a>) on Twitter if you have any questions or feedback! You can also file an issue on <a href=\"https:\/\/github.com\/microsoft\/terminal\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub<\/a> if you encounter any problems or have any feature requests. See you next month!<\/p>\n<p><a href=\"http:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/08\/teamsignatures.jpg\"><img decoding=\"async\" src=\"http:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/08\/teamsignatures.jpg\" alt=\"\" width=\"882\" height=\"143\" class=\"alignnone size-full wp-image-5005\" srcset=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/08\/teamsignatures.jpg 882w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/08\/teamsignatures-300x49.jpg 300w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2019\/08\/teamsignatures-768x125.jpg 768w\" sizes=\"(max-width: 882px) 100vw, 882px\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Another update to the Windows Terminal has just been released! As always, you can download the Terminal from the Microsoft Store, the Microsoft Store for Business, and GitHub. \ud83d\udc49 Note: In the About popup within the Terminal, this version will appear as v0.6. Updated UI The Terminal now has even better tabs! The WinUI TabView [&hellip;]<\/p>\n","protected":false},"author":3539,"featured_media":5183,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10,2,3,4,5,6,8,9,782],"tags":[22,27,29,45,48,1002,59,69,70,72],"class_list":["post-5182","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cmd","category-command-line","category-linux-tools","category-ms-dos","category-windows-10","category-windows-console","category-windows-store","category-bash-on-ubuntu-on-windows","category-windows-terminal","tag-bash","tag-cmd","tag-command-line","tag-ms-dos","tag-powershell","tag-release","tag-terminal","tag-windows","tag-windows-10","tag-wsl"],"acf":[],"blog_post_summary":"<p>Another update to the Windows Terminal has just been released! As always, you can download the Terminal from the Microsoft Store, the Microsoft Store for Business, and GitHub. \ud83d\udc49 Note: In the About popup within the Terminal, this version will appear as v0.6. Updated UI The Terminal now has even better tabs! The WinUI TabView [&hellip;]<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts\/5182","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/users\/3539"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/comments?post=5182"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts\/5182\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/media\/5183"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/media?parent=5182"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/categories?post=5182"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/tags?post=5182"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}