Krzysztof Bąk
Krzysztof Bąk
Even though I can pass a scope value to the `key` attribute in the `vc-recaptcha` directive, it is initialized only once, right after the recaptcha widget is created. This is...
Relates to: #219 This modification makes possible to pass a promise as a site key.
CMake should build two architectures at once, as a convenience, to avoid switching build systems. === Update === This cannot be done with a pure CMake. Two different build directories...
The code is prepared for translations, hence it's time to start adding them. The following can be the first: - Polish, - Italian, - German.
When a DLL is loaded into processes as a result of invoking `SetWindowHookEx`, the DLL remains in the processes after exiting Hotkey Detective. As a consequence, the DLL cannot be...
Introduce a status bar with some useful information, so the user has any feedback whether the program is running correctly or not. Possible items to put: - Status (OK or...
Following up on a discussion which started in #8. It would be nice from the user experience point of view if Hotkey Detective could display combinations pressed by the user...
[RegisterHotKey](https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-registerhotkey) isn't the only method that can be used to register a hotkey. Application can post [WM_SETHOTKEY](https://learn.microsoft.com/en-us/windows/win32/inputdev/wm-sethotkey) message to a window to assign a hotkey to it, but this is...
There are a couple of places in the code where the default `std::exception` is thrown. A good programming practice is to define and use custom exceptions instead. When this is...
Some things to consider: - [x] Honor OS dark mode, currently HKD always renders in a white mode. - [x] Make the table more readable. - [x] Replace the application...