From 4c7e9000ad8e2d76ad30ed78c7047215c0080309 Mon Sep 17 00:00:00 2001 From: Dennis <74433222+HovKlan-DH@users.noreply.github.com> Date: Tue, 24 Nov 2020 16:40:16 +0100 Subject: [PATCH 1/6] Update README.md --- README.md | 31 ++++--------------------------- 1 file changed, 4 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index afd820a..e946b4a 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # HovText -HovText is a free open source C# Windows clipboard manager. With it you will be able to copy any text or picture and save it within the clipboard manager. It will remove the formatting from any text, meaning that if e.g. the text has been marked as bold in Word and you paste it to e.g. Wordpad then it will only paste it as clear text - the formatting will not be copied. +HovText is a free open source Windows .NET Framework clipboard manager. With it you will be able to copy any text or picture and save it within the clipboard manager. It will remove the formatting from any text, meaning that if e.g. the text has been marked as bold in Word and you paste it to e.g. Wordpad then it will only paste it as clear text - the formatting will not be copied. It is a REBOOTED edition meaning that it has been revived from the dead and it is completely rewritten from the legacy HovText version, available at https://hovtext.com/. The new edition is robust in terms of the clipboard chain and it should now work, in contrary to the old version. I am by far no skilled C# developer and this is my first C# project. I am by nature a "spaghetti programmer" which you will be able to see in the source code but the important thing is that it works as intended ;-) -![Settings](https://hovtext.com/documentation/General.jpg) +![Settings](http://hovtext.com/documentation/pics/General1.jpg) ## Documentation @@ -14,28 +14,5 @@ The full documentation for how to use this application is available here, https: ## Requirements -.NET 4.x - -## Bugs - -I am struggling with the hotkey manager I am using, HotkeyListener. I have tried doing the hotkey management myself but failed in getting this right. I then stumpled on the HotkeyListener which is really nice as it has a method for catching key combinations for new hotkeys and then convert that to a string, so it can be saved and restored from registry. I like this but for some weird reason I cannot use the `CTRL+½` combination, which I used previously so I am really curious if this is something I have done wrong or if it is an error in HotkeyListener. Also it seems impossible for me to update the hotkey on-the-fly without it still registring the old hotkey. - -So the hotkey thing is currently a little messy I will admit and I would really appreciate some feedback on it, if this can be done differently - either fixing the problem with the library or maybe help me doing this myself with my own code, so I do not need to include a DLL file? - -## Todo - -* Application behaviour - * I need to be able to paste unformatted text only on hotkey - UI ready for it but cannot figure out the code for it yet -* Save and restore original text formats - or at least the last one - * I cannot save the original clipboard and restore it back -* Location of notification area - top left/right, bottom left/right -* Mouse doubleclick on tray icon disables it - * Not sure if you can detect either a single-click and a double-click - it should react differently on double-click -* Clean-up source code and beautify it for release - * This is borring and will take some time - -## Software used in project - -HovText has been developed in Visual Studio 2019. - -It also uses another GibHub project, https://github.com/Willy-Kimura/HotkeyListener by Willy Kimura. +Windows 7 or newer +.NET Framework 4.x From e8c57257cb303c09702b5d39a4852f329f1c44b1 Mon Sep 17 00:00:00 2001 From: Dennis <74433222+HovKlan-DH@users.noreply.github.com> Date: Tue, 24 Nov 2020 16:54:59 +0100 Subject: [PATCH 2/6] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e946b4a..edd8a2e 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,13 @@ HovText is a free open source Windows .NET Framework clipboard manager. With it you will be able to copy any text or picture and save it within the clipboard manager. It will remove the formatting from any text, meaning that if e.g. the text has been marked as bold in Word and you paste it to e.g. Wordpad then it will only paste it as clear text - the formatting will not be copied. -It is a REBOOTED edition meaning that it has been revived from the dead and it is completely rewritten from the legacy HovText version, available at https://hovtext.com/. The new edition is robust in terms of the clipboard chain and it should now work, in contrary to the old version. - -I am by far no skilled C# developer and this is my first C# project. I am by nature a "spaghetti programmer" which you will be able to see in the source code but the important thing is that it works as intended ;-) +It is a REBOOTED edition meaning that it has been revived from the dead and it is completely rewritten from the legacy HovText version, available at https://hovtext.com/. The new edition is more robust in terms of the clipboard chain and it should now work, in contrary to the old version. ![Settings](http://hovtext.com/documentation/pics/General1.jpg) ## Documentation -The full documentation for how to use this application is available here, https://hovtext.com/documentation/ +The full documentation for how to use this application is available on the HovText home page, https://hovtext.com/documentation/ ## Requirements From aa1e1a8fe2ffee86f4cd434234e8fc5b6d0593f5 Mon Sep 17 00:00:00 2001 From: Dennis <74433222+HovKlan-DH@users.noreply.github.com> Date: Tue, 24 Nov 2020 17:08:49 +0100 Subject: [PATCH 3/6] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index edd8a2e..89b682a 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,11 @@ It is a REBOOTED edition meaning that it has been revived from the dead and it i ![Settings](http://hovtext.com/documentation/pics/General1.jpg) +## Capabilities + +* Remove test formatting when copying text to the clipboard +* Clipboard manager that will remember all copied texts or pictures + ## Documentation The full documentation for how to use this application is available on the HovText home page, https://hovtext.com/documentation/ From 2fb72447bf9d7f383ef006be4ab544009666cb00 Mon Sep 17 00:00:00 2001 From: Dennis <74433222+HovKlan-DH@users.noreply.github.com> Date: Tue, 24 Nov 2020 17:09:39 +0100 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 89b682a..5afa7a2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ It is a REBOOTED edition meaning that it has been revived from the dead and it i ## Capabilities -* Remove test formatting when copying text to the clipboard +* Remove text formatting when copying text to the clipboard (it will place the clear-text in the clipboard) * Clipboard manager that will remember all copied texts or pictures ## Documentation From b0e0b4135db6b651e551f494f02f985e324e5b0b Mon Sep 17 00:00:00 2001 From: Dennis <74433222+HovKlan-DH@users.noreply.github.com> Date: Tue, 24 Nov 2020 17:13:41 +0100 Subject: [PATCH 5/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5afa7a2..5d03873 100644 --- a/README.md +++ b/README.md @@ -17,5 +17,5 @@ The full documentation for how to use this application is available on the HovTe ## Requirements -Windows 7 or newer -.NET Framework 4.x +* Windows 7 or newer +* .NET Framework 4.x From 4373d6d33b4c5f095fa4df49d5a7fb3ee92e37dc Mon Sep 17 00:00:00 2001 From: Dennis <74433222+HovKlan-DH@users.noreply.github.com> Date: Tue, 24 Nov 2020 17:14:04 +0100 Subject: [PATCH 6/6] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5d03873..73f373d 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ It is a REBOOTED edition meaning that it has been revived from the dead and it i * Remove text formatting when copying text to the clipboard (it will place the clear-text in the clipboard) * Clipboard manager that will remember all copied texts or pictures -## Documentation - -The full documentation for how to use this application is available on the HovText home page, https://hovtext.com/documentation/ - ## Requirements * Windows 7 or newer * .NET Framework 4.x + +## Documentation + +The full documentation for how to use this application is available on the HovText home page, https://hovtext.com/documentation/