PowerToys/src
martinchrzan 375953641b
Fixing issues when color picker freezes (#8376)
* Fixing issue when color picker was frozen because other application was locking clipboard

* Fixed another issue where holding activation keys constantly would trigger show color picker numberous times and it would cause some events to be attached multiple times
2020-12-05 14:25:55 +01:00
..
action_runner LEGO: check in for master to temporary branch. 2020-12-01 03:34:18 +00:00
codeAnalysis spelling: suppressions 2020-10-30 14:42:28 -04:00
common Fix runner warnings (#8211) 2020-11-30 16:16:49 +02:00
core Merge pull request #8183 from microsoft/users/niels9001/colorpicker-imageupdates 2020-12-01 10:12:05 -08:00
logging CI: disable multiple msbuild instances (#8253) 2020-11-27 14:18:23 +03:00
modules Fixing issues when color picker freezes (#8376) 2020-12-05 14:25:55 +01:00
runner LEGO: check in for master to temporary branch. 2020-12-01 03:34:18 +00:00
settings CI: disable multiple msbuild instances (#8253) 2020-11-27 14:18:23 +03:00
settings-web [settings-web] Update packages (#7849) 2020-11-05 08:53:27 +01:00
tests/win-app-driver Merge branch 'master' into dev/crutkas/upgradeNuget 2020-11-03 10:57:50 -08: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 Update Version.props 2020-10-20 15:58:26 -07: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.