From 1c5717daf792db7bc42d2c832fffdedc1506befd Mon Sep 17 00:00:00 2001 From: Lyubomir Ternavskiy <127299159+LyubomirT@users.noreply.github.com> Date: Wed, 1 May 2024 03:58:33 -0400 Subject: [PATCH] Update help dialog content in wincuts.py --- help.html | 17 +++++++++++++++++ wincuts.py | 17 ++--------------- 2 files changed, 19 insertions(+), 15 deletions(-) create mode 100644 help.html diff --git a/help.html b/help.html new file mode 100644 index 0000000..c90c214 --- /dev/null +++ b/help.html @@ -0,0 +1,17 @@ +
WinCuts is a Windows-native tool designed to enhance productivity by allowing users to set up and manage custom keyboard shortcuts for shell/cmd commands.
+The 'Window Patch' feature allows commands that require a specific window context to execute properly. It is particularly useful for applications that do not respond well to being launched via shortcuts due to their reliance on a specific startup environment. Use this feature with caution as it modifies the way commands are executed and can lead to unexpected behavior if used improperly.
+Use the uninstaller provided in the installation directory to remove WinCuts from your system. This will ensure that all files and startup entries are properly cleaned up.
+Go to the integration directory and run cleanup.exe. After that, you can safely delete the installation directory.
+WinCuts is a Windows-native tool designed to enhance productivity by allowing users to set up and manage custom keyboard shortcuts for shell/cmd commands.
-The 'Window Patch' feature allows commands that require a specific window context to execute properly. It is particularly useful for applications that do not respond well to being launched via shortcuts due to their reliance on a specific startup environment. Use this feature with caution as it modifies the way commands are executed and can lead to unexpected behavior if used improperly.
-Run cleanup.exe from the integration folder to safely uninstall the application.
- """) + data = open("help.html", "r").read() + text_browser.setHtml(data) button_ok = QPushButton('OK', self) button_ok.clicked.connect(self.accept)