-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PastePlain] Introduce Paste as Plain Text module #23645
Merged
Merged
Changes from 28 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
a43f487
[PastePlain] Introduce Paste as Plain Text module
carlos-zamora 368e9ef
fix build
carlos-zamora 3bc93d1
add telemetry
carlos-zamora 319b244
update settings UI
carlos-zamora 2c63095
Merge branch 'main' into dev/cazamor/paste-as-plain-text
carlos-zamora 4cc9630
spell
carlos-zamora 486685d
Add navigation items to Settings and OOBE
jaimecbernardo 6229910
Add PastePlain to the Quick Access flyout
jaimecbernardo c4ab3f4
try to fix PastePlain not being enabled from runner/settings
carlos-zamora ded551a
load dll properly
carlos-zamora 86fcf81
installer files
carlos-zamora 49917e7
Add PastePlain project name
snickler 0bf55fd
Use win32 APIs in the module interface instead
jaimecbernardo be78609
Merge branch 'main' into dev/cazamor/paste-as-plain-text
jaimecbernardo 993eb9c
Fix spellcheck
jaimecbernardo d66bc4a
Fix build errors
jaimecbernardo d8ed767
Add success, error and invoke telemetry
jaimecbernardo 600c101
Add Settings Telemetry
jaimecbernardo 39f101c
Add GPO definitions
jaimecbernardo f78bb02
Fix analyzer errors
jaimecbernardo b48988d
Use static_cast instead of reinterpret_cast
jaimecbernardo 556e44c
Add images to Settings
jaimecbernardo e8d2efc
Add note about replacing clipboard contents
jaimecbernardo 6417ad9
Fix learn more text
jaimecbernardo 05e9ed3
Add link to readme
jaimecbernardo 8293013
Remove unneeded C# app
jaimecbernardo adb2401
Fix installer
jaimecbernardo 3f18ad3
Fix spellchecker
jaimecbernardo 08f427e
Merge branch 'main' into dev/cazamor/paste-as-plain-text
jaimecbernardo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" | ||
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > | ||
|
||
<?include $(sys.CURRENTDIR)\Common.wxi?> | ||
|
||
<Fragment> | ||
<DirectoryRef Id="PastePlainInstallFolder" FileSource="$(var.BinDir)modules\$(var.PastePlainProjectName)"> | ||
<!-- !Warning! Make sure to change Component Guid if you update the file list --> | ||
<Component Id="Module_PastePlain" Win64="yes"> | ||
<File Source="$(var.BinDir)modules\$(var.PastePlainProjectName)\PowerToys.PastePlainModuleInterface.dll" KeyPath="yes" /> | ||
</Component> | ||
</DirectoryRef> | ||
|
||
<ComponentGroup Id="PastePlainComponentGroup" Directory="INSTALLFOLDER"> | ||
<ComponentRef Id="Module_PastePlain" /> | ||
</ComponentGroup> | ||
|
||
</Fragment> | ||
</Wix> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any way I can test this and make sure I did it right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@carlos-zamora
I think the only way to test it is by setting the registry key manually.