PowerToys/src
vldmr11080 c355a2b61e
Use JSON data file for storing PowerRename settings instead of registry (#1909)
* Use JSON data file for storing PowerRename settings instead of registry

* Address PR comments and made several improvements

* Remove WindowsApp.lib dependencies in test app and unit tests

* Revert changes in vcxproj for unit test

* Solve linker warnings generated while linking WindowsApp.lib

* Don't migrate enabled flag. Always read / write from registry.
2020-04-08 19:12:46 +02:00
..
action_runner Cleanup project output/intermediate dirs (#1640) 2020-03-20 21:41:48 +03:00
codeAnalysis Getting analysis up and going 2019-12-12 11:23:36 -08:00
common runner: implement automatic MSIX package uninstallation on startup (#1920) 2020-04-03 18:51:28 +02:00
modules Use JSON data file for storing PowerRename settings instead of registry (#1909) 2020-04-08 19:12:46 +02:00
runner Opening settings when user is opening already running Powertoys (#1957) 2020-04-07 13:17:18 +03:00
settings Settings: fix broken "Restart as administrator" button (#1733) 2020-03-27 17:38:58 +03:00
settings-web Settings: fix broken "Restart as administrator" button (#1733) 2020-03-27 17:38:58 +03:00
tests/win-app-driver Tests: Editor settings tests (#1682) 2020-04-08 16:33:05 +03:00
.clang-format Formatting chores (#1441) 2020-03-05 13:07:06 +03:00
README.md Update README.md 2019-10-25 15:21:16 +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 libary with helper functions, used by both the runner and the PowerToys modules.