Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
crutkas committed Apr 15, 2021
1 parent 9ff63b4 commit 501d3b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ Install from the [Microsoft PowerToys GitHub releases page][github-release-link]
This is our preferred method.

#### Experimental version
To install the Video Conference mute, please use the [v0.28 pre-release experimental version of PowerToys][github-prerelease-link] to try out this version. It includes all improvements from v0.27 in addition to the Video conference utility. Click on `Assets` to show the files available in the release and then download the .exe installer.

We hope to have an updated version in February 2021 with the new DirectShow driver.
To install the Video Conference mute, please use the [v0.36 experimental version of PowerToys][github-prerelease-link] to try out this version. It includes all improvements from v0.35 in addition to the Video conference utility. Click on `Assets` to show the files available in the release and then download the .exe installer.

### Via WinGet (Preview)
Download PowerToys from [WinGet](https://github.com/microsoft/winget-cli#installing-the-client). To install PowerToys, run the following command from the command line / PowerShell:
Expand Down Expand Up @@ -78,7 +76,9 @@ Our [prioritized roadmap][roadmap] of features and utilities that the core team

### 0.35 - March 2021 Update

Our goals for the [v0.35 release cycle][github-release-link] were to add in new functionality to support quick swapping layouts for FancyZones, wrap up work for the DirectShow migration for Video Conference Mute so we can migrate into the main dev branch as well as fixing bugs. The 0.36 experimental release will happen the week of April 5th toward the end of the week pending testing. Throughout these efforts, we continue working towards stability across all PowerToys utilities.
Our goals for the [v0.35 release cycle][github-release-link] were to add in new functionality to support quick swapping layouts for FancyZones, wrap up work for the DirectShow migration for Video Conference Mute so we can migrate into the main dev branch as well as fixing bugs.

The 0.36 experimental release was released as well which includeds Video Conference Mute.

Our [prioritized roadmap][roadmap] of features and utilities will dictate what the core team is focusing on for the near future.

Expand Down Expand Up @@ -166,4 +166,4 @@ The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has

<!-- items that need to be updated release to release -->
[github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=is%3Aopen+is%3Aissue+project%3Amicrosoft%2FPowerToys%2F19
[github-prerelease-link]: https://github.com/microsoft/PowerToys/releases/tag/v0.28.0
[github-prerelease-link]: https://github.com/microsoft/PowerToys/releases/tag/v0.36.0

1 comment on commit 501d3b9

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Misspellings found, please review:

  • includeds
To accept these changes, run the following commands from this repository on this branch
pushd $(git rev-parse --show-toplevel)
perl -e '
my @expect_files=qw('".github/actions/spell-check/expect.txt"');
@ARGV=@expect_files;
my @stale=qw('"AAD Addins adopsinsider akamaihd alertsolid ALogo AMirror antialiased asyncwebview Breadcrumb Btn capitalized Checkedin checknetisolation Chicklet Childof choiceref CLogo colorpickerref Commdlg commondataservicecds concat COPYDATASTRUCT corehr CPlus CRM crmcustomerinsightsapp cw Dataflows Devagya Dialpad dirname DLogo DMap downlevel DPICHANGED Drakula DRM dropref EABF EAC EACB EACC EADA EADB EADF EAE EAEE EAEF EAF EAFC EAFD eb EBC EBD EBDA EBE EBEC EBEE EBEF EBF EBFC ECAA ECAB ECAC ECAF ECCA ECCB ECCD ECDC ECDE ECDF ECEB ECED ECEE ECFE ECFF EDBB EDBC EDBD EDBE EDBF EDCA EDCB EDCC EDCD EDCE EDCF EDDB EDDC EDDD EDDE EDDF EDE EDFF edgelogo edgeoldlogo editorbody editorhead editorheadbuttons editortitle editorzone Edu EEB EEBA EEBB EEBC EEBD EEBE EEBF EECB EECC EECD EECE EECF EED EEED EEEF EEF EFB EFBA EFC EFDA EFDE EFE EFEB EFFC EFFE ELogo Entitlements eventdatemissed Favicon FSharp Giftbox grayscale Iconset IIcon IInput INav Inbox Intellisense jsx Kaizala keyof keyparts LLogo Lync mixin MLogo Moveto myuri nowrap npmjs Oject OLogo Onboarding onedrive onedrivelogo osx Pano PCOPYDATASTRUCT Phishing php phptest PLogo pointstar powerappscds Printfax py Qand RSHIFT rutkas scss Sharei Sharepoint Shelveset Signin sixpointstar Skype Slideshow SLogo spinbuttonref spoprod Staffhub Starburst Strikethrough stringify stylesheet subsetted subsetter svgr SVGSVG Symlink talenthrcore Taskboard Telemarketer TFVC Timeline toggleleft toggleoff toggleon toggleref toggleright truetype tslint TVM twelvepointstar txyewy typings Ungroup Unpublish Unsync Untag Visio Voicemail VSTS webapp webkit webp webview Wifi wmonk woff XAngle XCOPY YAngle YLogo YourUserName "');
my $re=join "|", @stale;
my $suffix=".".time();
my $previous="";
sub maybe_unlink { unlink($_[0]) if $_[0]; }
while (<>) {
  if ($ARGV ne $old_argv) { maybe_unlink($previous); $previous="$ARGV$suffix"; rename($ARGV, $previous); open(ARGV_OUT, ">$ARGV"); select(ARGV_OUT); $old_argv = $ARGV; }
  next if /^(?:$re)(?:(?:\r|\n)*$| .*)/; print;
}; maybe_unlink($previous);'
perl -e '
my $new_expect_file=".github/actions/spell-check/expect.txt";
use File::Path qw(make_path);
make_path ".github/actions/spell-check";
open FILE, q{<}, $new_expect_file; chomp(my @words = <FILE>); close FILE;
my @add=qw('"Concat EB includeds JSX rshift Stringify "');
my %items; @items{@words} = @words x (1); @items{@add} = @add x (1);
@words = sort {lc($a) cmp lc($b)} keys %items;
open FILE, q{>}, $new_expect_file; for my $word (@words) { print FILE "$word\n" if $word =~ /\w/; };
close FILE;'
popd

Please sign in to comment.