Skip to content

Commit

Permalink
Merge branch 'main' into dev/zhaopengwang/test/37733-ui-test-fancyzon…
Browse files Browse the repository at this point in the history
…es-editor
  • Loading branch information
Zhaopeng Wang committed Mar 5, 2025
2 parents 1491a93 + fc94cd7 commit 3bf27cf
Show file tree
Hide file tree
Showing 12 changed files with 74 additions and 112 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
170 changes: 66 additions & 104 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/devdocs/settingsv2/dsc-configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ Note that we've supplied `Debug` option, so a `%TEMP\PowerToys.DSC.TestConfigure
Finally, you can test it with winget by invoking it as such:

```ps
winget configure .\configuration.dsc.yaml --accept-configuration-agreements --disable-interactivity
winget configure .\configuration.winget --accept-configuration-agreements --disable-interactivity
```
12 changes: 6 additions & 6 deletions src/dsc/Microsoft.PowerToys.Configure/examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ This folder contains samples of DSC files that can be used to configure PowerToy
> [!NOTE]
> PowerToys DSC user documentation can be found on [Learn Microsoft PowerToys documentation](https://aka.ms/powertoys-docs-dsc-configure).
### [configuration.dsc.yaml](./configuration.dsc.yaml)
### [configuration.winget](./configuration.winget)

Sample configuration file that changes the enabled state of some modules, changes an integer setting and a hotkey setting.

### [installAndConfiguration.dsc.yaml](./installAndConfiguration.dsc.yaml)
### [installAndConfiguration.winget](./installAndConfiguration.winget)

Installs PowerToys and applies configuration.dsc.yaml to it.
Installs PowerToys and applies configuration.winget to it.

### [enableAllModules.dsc.yaml](./enableAllModules.dsc.yaml)
### [enableAllModules.winget](./enableAllModules.winget)

Enables all PowerToys utilities.

### [disableAllModules.dsc.yaml](./disableAllModules.dsc.yaml)
### [disableAllModules.winget](./disableAllModules.winget)

Disables all PowerToys utilities.

### [configureLauncherPlugins.dsc.yaml](./configureLauncherPlugins.dsc.yaml)
### [configureLauncherPlugins.winget](./configureLauncherPlugins.winget)

Enables PowerToys Run and all its plugins and changes action keyword and global state for the Program plugin.
Original file line number Diff line number Diff line change
Expand Up @@ -487,10 +487,10 @@ private async void DeleteLayout(FrameworkElement element)
}
}

model.Delete();
App.FancyZonesEditorIO.SerializeAppliedLayouts();
App.FancyZonesEditorIO.SerializeCustomLayouts();
App.FancyZonesEditorIO.SerializeDefaultLayouts();
model.Delete();
}
}

Expand Down

1 comment on commit 3bf27cf

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (2)

Initializet
Tes

These words are not needed and should be removed ahk AMPROPERTY AMPROPSETID Breadcrumb CDEF comdef ddf devenum DEVMON DEVSOURCE DGR DIIRFLAG dshow DVH DVHD DVSD DVSL EData ERole fdw FILEINFOSIG Filtergraph Filterx HCERTSTORE IKs iljxck IYUV KSPROPERTY lcb ldx lld LONGLONG LTRB majortype makecab MEDIASUBTYPE mediatype mfplat mic mjpg Msimg msiquery ORAW outpin overlaywindow PAUDIO PINDIR Pnp ppmt previouscamera PROPBAG propvarutil reencoded REFGUID REGFILTER REGFILTERPINS REGPINTYPES regsvr shmem sizeread stl strsafe strutil subquery SYNCMFT TMPVAR vcdl vdi vid VIDCAP VIDEOINFOHEADER vih webcam wistd WVC

To accept these unrecognized words as correct and remove the previously acknowledged and now absent words, you could run the following commands

... in a clone of the [email protected]:microsoft/PowerToys.git repository
on the dev/zhaopengwang/test/37733-ui-test-fancyzones-editor branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.24/apply.pl' |
perl - 'https://github.com/microsoft/PowerToys/actions/runs/13677657257/attempts/1'
If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

Please sign in to comment.