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 29, 2021
1 parent 16d5a3e commit ffa4bf5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ Our [prioritized roadmap][roadmap] of features and utilities will dictate what t

### Keyboard manager
- Now an independent exe. This now runs high priority in its own process. When your CPU is under load, this should allow the process to continue to be prioritized
- Now DPI Aware

### Color Picker
- uses a centralized keyhook. This should improve activation
Expand Down

1 comment on commit ffa4bf5

@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:

  • keyhook
  • Nefario
  • SCOOBE
  • Shortcutguide
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 ABOUTBOX Addins adopsinsider akamaihd alertsolid ALogo AMirror antialiased asyncwebview Aut 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 jsoref jsx Kaizala keyof keyparts LLogo Lync lzw mayitbeegh 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 UCHAR Ungroup Unpublish Unsync Untag Visio Voicemail vsconfig VSTS webapp webkit webp webview Wifi windowsapp 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 JSX keyhook LZW Nefario rshift SCOOBE Shortcutguide Stringify Windowsapp "');
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.