PowerToys/src
Roy ba2ef23414
[PowerToys Run] Add Support for Uris (#5160)
* url handler plugin

* updates

* Add seperate interface classes
rename to uri module

* Update path

* Update implementation to remove slow DNS lookup ( and let browser handle it)

* tabs to spaces

* - Update icon/assets
- Finalize Project

* Update wix project

* Implement UpdateBrowserIconPath

* Implemented Microsoft.CodeAnalysis.FxCopAnalyzers

* Add Language component to installer

* Update logic to determine icon

* Update Translation File to "Open in browser"

* Added test for typing http://test.com and which result to expect on each keystoke

* Implement StyleCop

* Added ipv6 tests

* Fix Solution LineBreaks

* Added Microsoft.Plugin.Uri as build Dependency

* Use ArgumentNullException instead of InvalidOperationException

* Fix wrong Directory in wix installer

Co-authored-by: Roy <royvou@hotmailcom>
2020-08-10 15:53:43 -07:00
..
action_runner bootstrapper: add support for silent arg (#5590) 2020-08-07 12:00:14 +03:00
codeAnalysis chore: move codeAnalysis folder to src (#5311) 2020-07-30 11:59:24 +03:00
common bootstrapper: add support for silent arg (#5590) 2020-08-07 12:00:14 +03:00
core Localized Image resizer tooltip (#5529) 2020-08-07 17:54:56 -07:00
modules [PowerToys Run] Add Support for Uris (#5160) 2020-08-10 15:53:43 -07:00
runner runner: don't try to restart explorer (#5763) 2020-08-07 15:26:34 +03:00
settings URL audit (#5685) 2020-08-06 10:09:50 -07:00
settings-web Bump elliptic from 6.5.0 to 6.5.3 in /src/settings-web (#5302) 2020-07-30 12:36:53 -07:00
tests/win-app-driver [FancyZones] Feature to create zone layouts spanning multiple monitors (#5289) 2020-08-07 10:06:25 +02:00
.clang-format Formatting chores (#1441) 2020-03-05 13:07:06 +03:00
.editorconfig Removing warnings relative to passing in unlocalized string literals. Most of these pertain to debug messages and aren't user facing. We may want to revisit localizing these later. 2020-06-23 17:51:17 -07:00
Directory.Build.props Move from sdk-provided cppwinrt-1.x to cppwinrt-2.x nuget package (#2246) 2020-04-29 22:02:18 +02:00
README.md Spelling: ... (#3398) 2020-05-26 17:02:36 +02:00
Version.props Now working on 0.20.2 (#5834) 2020-08-10 16:30:25 +02:00

PowerToys Source Code

Code organization

The PowerToys are split into DLLs for each PowerToy module (modules folder), and an executable (runner folder) that loads and manages those DLLs.

The settings window is a separate executable, contained in settings folder. It utilizes a WebView to display an HTML-based settings window (contained in settings-web folder).

The common contains code for a static library with helper functions, used by both the runner and the PowerToys modules.