PowerToys/src
Stefan Markovic 5cfbd72fa8
[PowerRename] Fluent UX (#13678)
* PowerRename new UI

* Add scrollviewer

* Don't deploy PowerRenameUI_new

* Visual updates

* Visual updates

* Updates

* Update Resources.resw

* Added docs button

* Update MainWindow.xaml

* Wire Docs button

* RegEx -> regular expressions

* Update Show only renamed list on search/replace text changed

* Update Show only renamed list on search/replace text changed - proper fix
Set searchTerm to NULL when cleared - fix Show only renamed files on clear searchTerm

* Files/folders input error handling

* Fix renaming with keeping UI window opened

After renaming folder, all of it's children need path update.
Without path update, further renaming of children items would
fail.

* Update only children, not all items with greater depth

* Fix dictionary false positives

* Remove .NET dep

* Rename PowerRenameUI_new to PowerRenameUILib
Rename executable PowerRenameUIHost to PowerRename

Co-authored-by: Laute <Niels.Laute@philips.com>
2021-10-25 14:40:19 +01:00
..
ActionRunner LEGO: check in for master to temporary branch. (#12785) 2021-08-16 14:19:55 +01:00
codeAnalysis spelling: suppressions 2020-10-30 14:42:28 -04:00
common [PowerRename] Fluent UX (#13678) 2021-10-25 14:40:19 +01:00
logging build: Treat warnings as errors in the remaining projects (#8689) 2020-12-21 18:51:48 +03:00
modules [PowerRename] Fluent UX (#13678) 2021-10-25 14:40:19 +01:00
runner Mouse Utils - Find My Mouse (#13916) 2021-10-22 13:30:18 +01:00
settings-ui [Settings] Fixing ColorPickerButton a11y bugs (#13961) 2021-10-22 17:15:17 +02:00
tests/win-app-driver Migrate winappdriver test project to .NET Core (#8412) 2020-12-10 06:53:07 -08:00
Update LEGO: check in for master to temporary branch. (#12785) 2021-08-16 14:19:55 +01:00
.clang-format
.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
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.