Patrick Klein

Results 10 issues of Patrick Klein

**What does this PR aim to accomplish?:** This PR implements support for setting a static IP via NetworkManager. See #4783. **How does this PR accomplish the above?:** The codes adds...

Discussion

**Is your feature request related to a problem? Please describe.** Feroxbuster always stops exploring a directory when a directory listing is detected. I think that this behavior is desired in...

enhancement
pinned

This is a draft PR to implement notifications on watch failure. The system always sends a notification in the current state of the PR, but I am happy to address...

I am wondering whether it is possible to define assertions over (anonymous) tuple structs, as in the following example: ```rust #[derive(DekuRead, DekuWrite)] #[deku(type = "u8", bits = "1")] pub enum...

enhancement

Implements feature #554. This merge request introduces the functionality to parse List[T] options from strings using a specified separator. An example of how this can be utilized is demonstrated [below](https://github.com/tiangolo/typer/blob/a6a797dc7958ac2cbfbae4c70bab2ee6d34fc353/docs_src/multiple_values/multiple_options/tutorial003_an.py):...

feature
p3

Adds a NetworkRequest class. I have noticed that HTTP requests are implemented several times across the KeepassXC codebase ([HibpDownloader](https://github.com/keepassxreboot/keepassxc/blob/develop/src/gui/IconDownloader.h), [IconDownloader](https://github.com/keepassxreboot/keepassxc/blob/develop/src/updatecheck/UpdateChecker.h), and [UpdateChecker)](https://github.com/keepassxreboot/keepassxc/blob/develop/src/core/HibpDownloader.h). The implementations share a lot of boilerplate code...

refactor

Fix bug where pressing home on empty tag field crashes the program. Bug is caused by https://github.com/libklein/keepassxc/blob/develop/src/gui/tag/TagsEdit.cpp#L340. The `currentText().isEmpty()` allows to invalidate the invariant if the current (and only) tag...

high priority :rotating_light:
crash :boom:

Allows horizontal scrolling when pressing Shift + Scroll. This is currently limited to the EntryView. The code changes are minimal: We listen to `wheelEvent` and forward it to the parent...

# What should this feature do? Allow parsing command line *options* with an arbitrary number of values. This would allow to type ```bash cli arg1 arg2 --option 1, 2, 3...