├── LICENSE ├── Patcher ├── 安装.CMD └── 安装组策略.cmd ├── PowerToys ├── global.json └── src │ ├── ActionRunner │ └── Resources.resx │ ├── Monaco │ └── index.html │ ├── Update │ └── Resources.resx │ ├── Version.props │ ├── common │ ├── interop │ │ └── keyboard_layout.cpp │ └── sysinternals │ │ └── Eula │ │ └── eula.c │ ├── gpo │ └── assets │ │ └── zh-CN │ │ └── PowerToys.adml │ ├── modules │ ├── AdvancedPaste │ │ └── AdvancedPaste │ │ │ └── Strings │ │ │ └── en-us │ │ │ └── Resources.resw │ ├── CropAndLock │ │ └── CropAndLock │ │ │ └── main.cpp │ ├── EnvironmentVariables │ │ └── EnvironmentVariablesUILib │ │ │ └── Strings │ │ │ └── en-us │ │ │ └── Resources.resw │ ├── FileLocksmith │ │ ├── FileLocksmithContextMenu │ │ │ ├── Resources.resx │ │ │ └── dllmain.cpp │ │ ├── FileLocksmithExt │ │ │ └── Resources.resx │ │ └── FileLocksmithUI │ │ │ └── Strings │ │ │ └── en-us │ │ │ └── Resources.resw │ ├── Hosts │ │ └── HostsUILib │ │ │ └── Strings │ │ │ └── en-us │ │ │ └── Resources.resw │ ├── MeasureTool │ │ └── MeasureToolUI │ │ │ └── Strings │ │ │ └── en-us │ │ │ └── Resources.resw │ ├── MouseWithoutBorders │ │ ├── App │ │ │ ├── Class │ │ │ │ ├── Common.Clipboard.cs │ │ │ │ ├── Common.Encryption.cs │ │ │ │ ├── Common.Event.cs │ │ │ │ ├── Common.Helper.cs │ │ │ │ ├── Common.MachineStuff.cs │ │ │ │ ├── Common.Service.cs │ │ │ │ ├── EasyMouseOption.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── IClipboardHelper.cs │ │ │ │ ├── InputHook.cs │ │ │ │ ├── Program.cs │ │ │ │ └── SocketStuff.cs │ │ │ ├── Control │ │ │ │ ├── Machine.cs │ │ │ │ └── Machine.designer.cs │ │ │ ├── Core │ │ │ │ └── Receiver.cs │ │ │ ├── Form │ │ │ │ ├── Settings │ │ │ │ │ ├── SettingsFormPage.Designer.cs │ │ │ │ │ ├── SettingsFormPage.cs │ │ │ │ │ ├── SetupPage1.Designer.cs │ │ │ │ │ ├── SetupPage2a.Designer.cs │ │ │ │ │ ├── SetupPage2aa.Designer.cs │ │ │ │ │ ├── SetupPage2ab.Designer.cs │ │ │ │ │ ├── SetupPage2b.Designer.cs │ │ │ │ │ ├── SetupPage3a.Designer.cs │ │ │ │ │ ├── SetupPage3a.cs │ │ │ │ │ ├── SetupPage4.Designer.cs │ │ │ │ │ └── SetupPage5.Designer.cs │ │ │ │ ├── frmAbout.Designer.cs │ │ │ │ ├── frmAbout.cs │ │ │ │ ├── frmInputCallback.cs │ │ │ │ ├── frmLogon.Designer.cs │ │ │ │ ├── frmMatrix.Designer.cs │ │ │ │ ├── frmMatrix.cs │ │ │ │ ├── frmMatrix.resx │ │ │ │ ├── frmMessage.Designer.cs │ │ │ │ ├── frmScreen.Designer.cs │ │ │ │ └── frmScreen.cs │ │ │ └── Helper │ │ │ │ └── FormHelper.cs │ │ └── ModuleInterface │ │ │ └── dllmain.cpp │ ├── NewPlus │ │ ├── NewShellExtensionContextMenu.win10 │ │ │ └── resources.resx │ │ └── NewShellExtensionContextMenu │ │ │ ├── NewShellExtensionContextMenu.vcxproj │ │ │ ├── NewShellExtensionContextMenu.vcxproj.filters │ │ │ ├── TemplateExamples │ │ │ ├── 模板文件夹里的一切都会出现在新建+菜单中.txt │ │ │ └── 示例文件夹 │ │ │ │ ├── 另一个示例文本文件.txt │ │ │ │ └── 示例文本文件.txt │ │ │ └── resources.resx │ ├── PowerOCR │ │ └── PowerOCR │ │ │ └── Properties │ │ │ └── Resources.resx │ ├── ShortcutGuide │ │ └── ShortcutGuide │ │ │ ├── Assets │ │ │ └── ShortcutGuide │ │ │ │ ├── no_active_window.svg │ │ │ │ ├── overlay.svg │ │ │ │ └── overlay_portrait.svg │ │ │ └── Resources.resx │ ├── Workspaces │ │ ├── WorkspacesEditor │ │ │ ├── Models │ │ │ │ └── Project.cs │ │ │ └── Properties │ │ │ │ └── Resources.resx │ │ ├── WorkspacesLauncher │ │ │ └── Resource.resx │ │ ├── WorkspacesLauncherUI │ │ │ └── Properties │ │ │ │ └── Resources.resx │ │ └── WorkspacesSnapshotTool │ │ │ └── Resource.resx │ ├── ZoomIt │ │ └── ZoomIt │ │ │ ├── ZoomIt.rc │ │ │ └── Zoomit.cpp │ ├── alwaysontop │ │ └── AlwaysOnTop │ │ │ └── Resources.resx │ ├── awake │ │ └── Awake │ │ │ ├── Core │ │ │ └── Constants.cs │ │ │ └── Properties │ │ │ └── Resources.resx │ ├── colorPicker │ │ └── ColorPickerUI │ │ │ ├── Properties │ │ │ └── Resources.resx │ │ │ └── ViewModels │ │ │ └── ColorEditorViewModel.cs │ ├── fancyzones │ │ ├── FancyZonesLib │ │ │ └── Resources.resx │ │ └── editor │ │ │ └── FancyZonesEditor │ │ │ └── Properties │ │ │ └── Resources.resx │ ├── imageresizer │ │ ├── ImageResizerContextMenu │ │ │ └── Resources.resx │ │ ├── dll │ │ │ └── Resources.resx │ │ └── ui │ │ │ ├── Properties │ │ │ └── Resources.resx │ │ │ └── Views │ │ │ ├── EnumValueConverter.cs │ │ │ └── InputPage.xaml │ ├── keyboardmanager │ │ ├── KeyboardManagerEditor │ │ │ └── Resources.resx │ │ └── KeyboardManagerEngineLibrary │ │ │ └── KeyboardEventHandlers.cpp │ ├── launcher │ │ ├── Plugins │ │ │ ├── Community.PowerToys.Run.Plugin.UnitConverter │ │ │ │ ├── InputInterpreter.cs │ │ │ │ ├── Main.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ ├── Main.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Community.PowerToys.Run.Plugin.ValueGenerator │ │ │ │ ├── Generators │ │ │ │ │ ├── Base64 │ │ │ │ │ │ ├── Base64DecodeRequest.cs │ │ │ │ │ │ └── Base64Request.cs │ │ │ │ │ ├── GUID │ │ │ │ │ │ └── GUIDRequest.cs │ │ │ │ │ └── Uri │ │ │ │ │ │ ├── DataEscapeRequest.cs │ │ │ │ │ │ ├── DataUnescapeRequest.cs │ │ │ │ │ │ ├── HexEscapeRequest.cs │ │ │ │ │ │ ├── HexUnescapeRequest.cs │ │ │ │ │ │ ├── UrlDecodeRequest.cs │ │ │ │ │ │ └── UrlEncodeRequest.cs │ │ │ │ ├── InputParser.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Community.PowerToys.Run.Plugin.WebSearch │ │ │ │ ├── Main.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.Plugin.Folder │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.Plugin.Indexer │ │ │ │ ├── Main.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.Plugin.Program │ │ │ │ ├── Main.cs │ │ │ │ ├── Programs │ │ │ │ │ └── UWPApplication.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.Plugin.Shell │ │ │ │ ├── Main.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.Plugin.Uri │ │ │ │ ├── Main.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.Plugin.WindowWalker │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.History │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.OneNote │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.PowerToys │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ ├── Components │ │ │ │ │ └── ResultHelper.cs │ │ │ │ ├── Main.cs │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.TimeDate │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ ├── Microsoft.PowerToys.Run.Plugin.WindowsSettings │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx │ │ │ └── Microsoft.PowerToys.Run.Plugin.WindowsTerminal │ │ │ │ ├── Main.cs │ │ │ │ └── Properties │ │ │ │ └── Resources.resx │ │ └── PowerLauncher │ │ │ └── Properties │ │ │ └── Resources.resx │ ├── peek │ │ └── Peek.UI │ │ │ └── Strings │ │ │ └── en-us │ │ │ └── Resources.resw │ ├── powerrename │ │ ├── PowerRenameContextMenu │ │ │ └── Resources.resx │ │ ├── PowerRenameUILib │ │ │ ├── PowerRenameXAML │ │ │ │ └── MainWindow.xaml.cpp │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw │ │ └── dll │ │ │ └── Resources.resx │ ├── previewpane │ │ ├── GcodePreviewHandler │ │ │ └── Properties │ │ │ │ └── Resource.resx │ │ ├── MarkdownPreviewHandler │ │ │ └── Properties │ │ │ │ └── Resources.resx │ │ ├── MonacoPreviewHandler │ │ │ └── Properties │ │ │ │ └── Resources.resx │ │ ├── PdfPreviewHandler │ │ │ └── Properties │ │ │ │ └── Resources.resx │ │ ├── QoiPreviewHandler │ │ │ └── Properties │ │ │ │ └── Resource.resx │ │ ├── SvgPreviewHandler │ │ │ └── Properties │ │ │ │ └── Resource.resx │ │ └── powerpreview │ │ │ └── Resources.resx │ └── registrypreview │ │ ├── RegistryPreview │ │ └── RegistryPreviewXAML │ │ │ └── MainWindow.xaml.cs │ │ └── RegistryPreviewUILib │ │ └── Strings │ │ └── en-US │ │ └── Resources.resw │ ├── runner │ ├── Resources.resx │ └── main.cpp │ └── settings-ui │ ├── Settings.UI.Library │ └── ColorFormatModel.cs │ └── Settings.UI │ ├── Assets │ └── Settings │ │ └── Scripts │ │ ├── CheckCmdNotFoundRequirements.ps1 │ │ ├── DisableModule.ps1 │ │ ├── EnableModule.ps1 │ │ ├── InstallPowerShell7.ps1 │ │ └── InstallWinGetClientModule.ps1 │ ├── Converters │ └── ZoomItTypeSpeedSliderConverter.cs │ ├── SettingsXAML │ ├── App.xaml.cs │ ├── OOBE │ │ └── Views │ │ │ ├── OobeShellPage.xaml │ │ │ └── OobeShellPage.xaml.cs │ └── Views │ │ ├── ColorPickerPage.xaml │ │ ├── ImageResizerPage.xaml │ │ ├── MouseUtilsPage.xaml │ │ ├── MouseWithoutBordersPage.xaml │ │ ├── PowerLauncherPage.xaml │ │ ├── PowerOcrPage.xaml │ │ ├── PowerPreviewPage.xaml │ │ ├── PowerRenamePage.xaml │ │ └── ZoomItPage.xaml │ ├── Strings │ └── en-us │ │ └── Resources.resw │ └── ViewModels │ ├── CmdNotFoundViewModel.cs │ ├── DashboardViewModel.cs │ └── PowerAccentViewModel.cs ├── README.md ├── Tools ├── README.md ├── autosort.py ├── autosort_newgptbroken.py ├── autosort_old.py ├── bin │ └── es.exe ├── blank ├── clean.cmd ├── clean.txt ├── modify.cmd ├── modify_arm64.cmd ├── zhcn_modify_list.txt ├── zhcn_modify_list2.txt └── zhcn_modify_list2.txt.bak └── to.pic ├── 1bs.png ├── 1ws.png ├── 2bs.png ├── 2ws.png ├── 3bs.png ├── 3ws.png ├── 4bs.png ├── 4ws.png ├── 5bs.png ├── 5ws.png ├── 6bs.png ├── 6ws.png ├── PCTMOD.topic.png ├── PCTMODx0.topic.png ├── PCTMODx1.topic.png ├── PCTMODx10.topic.png ├── PCTMODx11.topic.png ├── PCTMODx12.topic.png ├── PCTMODx2.topic.png ├── PCTMODx3.topic.png ├── PCTMODx4.topic.png ├── PCTMODx5.topic.png ├── PCTMODx6.topic.png ├── PCTMODx7.topic.png ├── PCTMODx8.topic.png ├── PCTMODx9.topic.png ├── PT hero image.png ├── PowerToysCN-20.topic.png ├── PowerToysCN-21.topic.png ├── PowerToysCN-22.topic.png └── PowerToysCN-23.topic.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/LICENSE -------------------------------------------------------------------------------- /Patcher/安装.CMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Patcher/安装.CMD -------------------------------------------------------------------------------- /Patcher/安装组策略.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Patcher/安装组策略.cmd -------------------------------------------------------------------------------- /PowerToys/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/global.json -------------------------------------------------------------------------------- /PowerToys/src/ActionRunner/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/ActionRunner/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/Monaco/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/Monaco/index.html -------------------------------------------------------------------------------- /PowerToys/src/Update/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/Update/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/Version.props -------------------------------------------------------------------------------- /PowerToys/src/common/interop/keyboard_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/common/interop/keyboard_layout.cpp -------------------------------------------------------------------------------- /PowerToys/src/common/sysinternals/Eula/eula.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/common/sysinternals/Eula/eula.c -------------------------------------------------------------------------------- /PowerToys/src/gpo/assets/zh-CN/PowerToys.adml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/gpo/assets/zh-CN/PowerToys.adml -------------------------------------------------------------------------------- /PowerToys/src/modules/AdvancedPaste/AdvancedPaste/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/AdvancedPaste/AdvancedPaste/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/modules/CropAndLock/CropAndLock/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/CropAndLock/CropAndLock/main.cpp -------------------------------------------------------------------------------- /PowerToys/src/modules/EnvironmentVariables/EnvironmentVariablesUILib/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/EnvironmentVariables/EnvironmentVariablesUILib/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/modules/FileLocksmith/FileLocksmithContextMenu/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/FileLocksmith/FileLocksmithContextMenu/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/FileLocksmith/FileLocksmithContextMenu/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/FileLocksmith/FileLocksmithContextMenu/dllmain.cpp -------------------------------------------------------------------------------- /PowerToys/src/modules/FileLocksmith/FileLocksmithExt/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/FileLocksmith/FileLocksmithExt/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/FileLocksmith/FileLocksmithUI/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/FileLocksmith/FileLocksmithUI/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/modules/Hosts/HostsUILib/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/Hosts/HostsUILib/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/modules/MeasureTool/MeasureToolUI/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MeasureTool/MeasureToolUI/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Clipboard.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Encryption.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Event.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Helper.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.MachineStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.MachineStuff.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/Common.Service.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/EasyMouseOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/EasyMouseOption.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/Extensions.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/IClipboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/IClipboardHelper.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/InputHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/InputHook.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/Program.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Class/SocketStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Class/SocketStuff.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Control/Machine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Control/Machine.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Control/Machine.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Control/Machine.designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Core/Receiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Core/Receiver.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SettingsFormPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SettingsFormPage.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SettingsFormPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SettingsFormPage.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage1.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage2a.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage2a.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage2aa.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage2aa.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage2ab.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage2ab.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage2b.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage2b.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage3a.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage3a.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage3a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage3a.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage4.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage4.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/Settings/SetupPage5.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmAbout.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmAbout.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmInputCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmInputCallback.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmLogon.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmLogon.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmMatrix.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmMatrix.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmMatrix.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmMatrix.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmMatrix.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmMessage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmMessage.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmScreen.Designer.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Form/frmScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Form/frmScreen.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/App/Helper/FormHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/App/Helper/FormHelper.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/MouseWithoutBorders/ModuleInterface/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/MouseWithoutBorders/ModuleInterface/dllmain.cpp -------------------------------------------------------------------------------- /PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu.win10/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu.win10/resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/NewShellExtensionContextMenu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/NewShellExtensionContextMenu.vcxproj -------------------------------------------------------------------------------- /PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/NewShellExtensionContextMenu.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/NewShellExtensionContextMenu.vcxproj.filters -------------------------------------------------------------------------------- /PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/TemplateExamples/模板文件夹里的一切都会出现在新建+菜单中.txt: -------------------------------------------------------------------------------- 1 | 访问 https://aka.ms/PowerToysOverview_NewPlus 了解如何使用新建+ -------------------------------------------------------------------------------- /PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/TemplateExamples/示例文件夹/另一个示例文本文件.txt: -------------------------------------------------------------------------------- 1 | 另一个示例文本文件 -------------------------------------------------------------------------------- /PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/TemplateExamples/示例文件夹/示例文本文件.txt: -------------------------------------------------------------------------------- 1 | 示例文本文件 -------------------------------------------------------------------------------- /PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/NewPlus/NewShellExtensionContextMenu/resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/PowerOCR/PowerOCR/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/PowerOCR/PowerOCR/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/ShortcutGuide/ShortcutGuide/Assets/ShortcutGuide/no_active_window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/ShortcutGuide/ShortcutGuide/Assets/ShortcutGuide/no_active_window.svg -------------------------------------------------------------------------------- /PowerToys/src/modules/ShortcutGuide/ShortcutGuide/Assets/ShortcutGuide/overlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/ShortcutGuide/ShortcutGuide/Assets/ShortcutGuide/overlay.svg -------------------------------------------------------------------------------- /PowerToys/src/modules/ShortcutGuide/ShortcutGuide/Assets/ShortcutGuide/overlay_portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/ShortcutGuide/ShortcutGuide/Assets/ShortcutGuide/overlay_portrait.svg -------------------------------------------------------------------------------- /PowerToys/src/modules/ShortcutGuide/ShortcutGuide/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/ShortcutGuide/ShortcutGuide/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/Workspaces/WorkspacesEditor/Models/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/Workspaces/WorkspacesEditor/Models/Project.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/Workspaces/WorkspacesEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/Workspaces/WorkspacesEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/Workspaces/WorkspacesLauncher/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/Workspaces/WorkspacesLauncher/Resource.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/Workspaces/WorkspacesLauncherUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/Workspaces/WorkspacesLauncherUI/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/Workspaces/WorkspacesSnapshotTool/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/Workspaces/WorkspacesSnapshotTool/Resource.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/ZoomIt/ZoomIt/ZoomIt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/ZoomIt/ZoomIt/ZoomIt.rc -------------------------------------------------------------------------------- /PowerToys/src/modules/ZoomIt/ZoomIt/Zoomit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/ZoomIt/ZoomIt/Zoomit.cpp -------------------------------------------------------------------------------- /PowerToys/src/modules/alwaysontop/AlwaysOnTop/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/alwaysontop/AlwaysOnTop/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/awake/Awake/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/awake/Awake/Core/Constants.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/awake/Awake/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/awake/Awake/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/colorPicker/ColorPickerUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/colorPicker/ColorPickerUI/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/colorPicker/ColorPickerUI/ViewModels/ColorEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/colorPicker/ColorPickerUI/ViewModels/ColorEditorViewModel.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/fancyzones/FancyZonesLib/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/fancyzones/FancyZonesLib/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/fancyzones/editor/FancyZonesEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/fancyzones/editor/FancyZonesEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/imageresizer/ImageResizerContextMenu/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/imageresizer/ImageResizerContextMenu/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/imageresizer/dll/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/imageresizer/dll/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/imageresizer/ui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/imageresizer/ui/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/imageresizer/ui/Views/EnumValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/imageresizer/ui/Views/EnumValueConverter.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/imageresizer/ui/Views/InputPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/imageresizer/ui/Views/InputPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/modules/keyboardmanager/KeyboardManagerEditor/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/keyboardmanager/KeyboardManagerEditor/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/keyboardmanager/KeyboardManagerEngineLibrary/KeyboardEventHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/keyboardmanager/KeyboardManagerEngineLibrary/KeyboardEventHandlers.cpp -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.UnitConverter/InputInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.UnitConverter/InputInterpreter.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.UnitConverter/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.UnitConverter/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.UnitConverter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.UnitConverter/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.VSCodeWorkspaces/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.VSCodeWorkspaces/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.VSCodeWorkspaces/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.VSCodeWorkspaces/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Base64/Base64DecodeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Base64/Base64DecodeRequest.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Base64/Base64Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Base64/Base64Request.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/GUID/GUIDRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/GUID/GUIDRequest.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/DataEscapeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/DataEscapeRequest.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/DataUnescapeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/DataUnescapeRequest.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/HexEscapeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/HexEscapeRequest.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/HexUnescapeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/HexUnescapeRequest.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/UrlDecodeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/UrlDecodeRequest.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/UrlEncodeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Generators/Uri/UrlEncodeRequest.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/InputParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/InputParser.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.WebSearch/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.WebSearch/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.WebSearch/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.WebSearch/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Folder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Folder/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Programs/UWPApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Programs/UWPApplication.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Uri/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Uri/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Uri/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Uri/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.History/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.History/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.OneNote/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.OneNote/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.PowerToys/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.PowerToys/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Registry/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Registry/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Service/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Service/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Components/ResultHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Components/ResultHelper.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.TimeDate/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.TimeDate/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsTerminal/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsTerminal/Main.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsTerminal/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsTerminal/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/launcher/PowerLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/launcher/PowerLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/peek/Peek.UI/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/peek/Peek.UI/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/modules/powerrename/PowerRenameContextMenu/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/powerrename/PowerRenameContextMenu/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/powerrename/PowerRenameUILib/PowerRenameXAML/MainWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/powerrename/PowerRenameUILib/PowerRenameXAML/MainWindow.xaml.cpp -------------------------------------------------------------------------------- /PowerToys/src/modules/powerrename/PowerRenameUILib/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/powerrename/PowerRenameUILib/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/modules/powerrename/dll/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/powerrename/dll/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/previewpane/GcodePreviewHandler/Properties/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/previewpane/GcodePreviewHandler/Properties/Resource.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/previewpane/MarkdownPreviewHandler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/previewpane/MarkdownPreviewHandler/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/previewpane/MonacoPreviewHandler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/previewpane/MonacoPreviewHandler/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/previewpane/PdfPreviewHandler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/previewpane/PdfPreviewHandler/Properties/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/previewpane/QoiPreviewHandler/Properties/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/previewpane/QoiPreviewHandler/Properties/Resource.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/previewpane/SvgPreviewHandler/Properties/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/previewpane/SvgPreviewHandler/Properties/Resource.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/previewpane/powerpreview/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/previewpane/powerpreview/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/modules/registrypreview/RegistryPreview/RegistryPreviewXAML/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/registrypreview/RegistryPreview/RegistryPreviewXAML/MainWindow.xaml.cs -------------------------------------------------------------------------------- /PowerToys/src/modules/registrypreview/RegistryPreviewUILib/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/modules/registrypreview/RegistryPreviewUILib/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/runner/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/runner/Resources.resx -------------------------------------------------------------------------------- /PowerToys/src/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/runner/main.cpp -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI.Library/ColorFormatModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI.Library/ColorFormatModel.cs -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/CheckCmdNotFoundRequirements.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/CheckCmdNotFoundRequirements.ps1 -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/DisableModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/DisableModule.ps1 -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/EnableModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/EnableModule.ps1 -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/InstallPowerShell7.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/InstallPowerShell7.ps1 -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/InstallWinGetClientModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/Assets/Settings/Scripts/InstallWinGetClientModule.ps1 -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/Converters/ZoomItTypeSpeedSliderConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/Converters/ZoomItTypeSpeedSliderConverter.cs -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/App.xaml.cs -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/OOBE/Views/OobeShellPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/OOBE/Views/OobeShellPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/OOBE/Views/OobeShellPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/OOBE/Views/OobeShellPage.xaml.cs -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/ColorPickerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/ColorPickerPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/ImageResizerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/ImageResizerPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/MouseUtilsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/MouseUtilsPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/MouseWithoutBordersPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/MouseWithoutBordersPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerLauncherPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerLauncherPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerOcrPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerOcrPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerPreviewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerPreviewPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerRenamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/PowerRenamePage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/ZoomItPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/SettingsXAML/Views/ZoomItPage.xaml -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/ViewModels/CmdNotFoundViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/ViewModels/CmdNotFoundViewModel.cs -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/ViewModels/DashboardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/ViewModels/DashboardViewModel.cs -------------------------------------------------------------------------------- /PowerToys/src/settings-ui/Settings.UI/ViewModels/PowerAccentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/PowerToys/src/settings-ui/Settings.UI/ViewModels/PowerAccentViewModel.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/README.md -------------------------------------------------------------------------------- /Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/README.md -------------------------------------------------------------------------------- /Tools/autosort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/autosort.py -------------------------------------------------------------------------------- /Tools/autosort_newgptbroken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/autosort_newgptbroken.py -------------------------------------------------------------------------------- /Tools/autosort_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/autosort_old.py -------------------------------------------------------------------------------- /Tools/bin/es.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/bin/es.exe -------------------------------------------------------------------------------- /Tools/blank: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/clean.cmd -------------------------------------------------------------------------------- /Tools/clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/clean.txt -------------------------------------------------------------------------------- /Tools/modify.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/modify.cmd -------------------------------------------------------------------------------- /Tools/modify_arm64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/modify_arm64.cmd -------------------------------------------------------------------------------- /Tools/zhcn_modify_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/zhcn_modify_list.txt -------------------------------------------------------------------------------- /Tools/zhcn_modify_list2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/zhcn_modify_list2.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/Tools/zhcn_modify_list2.txt.bak -------------------------------------------------------------------------------- /to.pic/1bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/1bs.png -------------------------------------------------------------------------------- /to.pic/1ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/1ws.png -------------------------------------------------------------------------------- /to.pic/2bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/2bs.png -------------------------------------------------------------------------------- /to.pic/2ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/2ws.png -------------------------------------------------------------------------------- /to.pic/3bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/3bs.png -------------------------------------------------------------------------------- /to.pic/3ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/3ws.png -------------------------------------------------------------------------------- /to.pic/4bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/4bs.png -------------------------------------------------------------------------------- /to.pic/4ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/4ws.png -------------------------------------------------------------------------------- /to.pic/5bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/5bs.png -------------------------------------------------------------------------------- /to.pic/5ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/5ws.png -------------------------------------------------------------------------------- /to.pic/6bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/6bs.png -------------------------------------------------------------------------------- /to.pic/6ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/6ws.png -------------------------------------------------------------------------------- /to.pic/PCTMOD.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMOD.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx0.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx0.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx1.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx1.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx10.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx10.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx11.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx11.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx12.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx12.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx2.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx2.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx3.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx3.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx4.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx4.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx5.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx5.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx6.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx6.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx7.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx7.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx8.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx8.topic.png -------------------------------------------------------------------------------- /to.pic/PCTMODx9.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PCTMODx9.topic.png -------------------------------------------------------------------------------- /to.pic/PT hero image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PT hero image.png -------------------------------------------------------------------------------- /to.pic/PowerToysCN-20.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PowerToysCN-20.topic.png -------------------------------------------------------------------------------- /to.pic/PowerToysCN-21.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PowerToysCN-21.topic.png -------------------------------------------------------------------------------- /to.pic/PowerToysCN-22.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PowerToysCN-22.topic.png -------------------------------------------------------------------------------- /to.pic/PowerToysCN-23.topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaloop/PowerToys-CN/HEAD/to.pic/PowerToysCN-23.topic.png --------------------------------------------------------------------------------