Felix Bühler

Results 110 comments of Felix Bühler

I tried this excluding update and still all updates get installed: ``` provisioner "windows-update" { search_criteria = "AutoSelectOnWebSites=1 and IsInstalled=0" filters = [ "exclude:$_.Title -Like '*Preview*'", "exclude:$_.InstallationBehavior.CanRequestUserInput", "exclude:$_.KBArticleIDs -Contains 'KB5030219'",...

using `"exclude:$_.Title -Like '*Cumulative*'",` will result in ``` virtualbox-iso.win-11: Skipped (filter) Windows update (2023-09-12; 130700.99 MB): 2023-09 Cumulative Update for Windows 11 Version 22H2 for x64-based Systems (KB5030219) ``` Is...

ok got it. The `KB` in-front is not correct. The correct code is: ``` filters = [ "exclude:$_.Title -Like '*Preview*'", "exclude:$_.InstallationBehavior.CanRequestUserInput", "exclude:$_.KBArticleIDs -Contains '5030219'", "include:$true", ] ```

@winterqt could you please rebase the PR. I am interested how the results changed.

another issue i noticed with a dark theme, that should get fixed. the tv-show view has an issue: ![Screenshot-2022-02-17_140935](https://user-images.githubusercontent.com/1315818/154488491-b962dfdf-597d-4245-b049-4c601e301a1e.png) here the series "Sløborn" has been clicked/selected on. It uses a...

i could provide an PR myself, but first i want to check if this would be accepted.

also the default should be `/usr/local/bin` which is the location for locally compiled packages (executing qmake, ...) `/usr/bin` should only be used by distro-package maintainers.

`INSTALL_ROOT` is nice, but it is different to `PREFIX`. `INSTALL_ROOT` will create a folder `usr/` in its root, which `PREFIX` will not. i am a bit scared breaking things, when...

I recently switch to `cmake` because of qt6. And with cmake this this is not relevant any more... So if you want, close it.

This would be very helpful for NixOS. The package does already exist, but no module has been created yet.