Giusy Digital
Giusy Digital
> And if they raise it for the future? Maybe the format of the preset can be compatible as it happened with 6.3.0 (when loading it in 7.0.0). Nope, left-right...
I have a `_build` folder where I give the `ninja` command. How can a make a clean folder? Delete and recreate `_build`?
Did it. I got the same warnings.
But I don't see them when I compile from AUR. This is really weird.
Isn't there a reliable way to check the Pipewire version in the application rather than relying on a script?
That is the system Pipewire version. Where is the Flatpak version? Anyway, I'm afraid a simple comparison is not enough. String versions should be compared to say if one is...
> At least from some testing this was correct enough for me. No, string comparison is made character by character, so `0.3.5` > `0.3.44`, but you don't expect so.
> I don’t think AdwToast makes sense as it’s too easy to miss. A message dialog is better but still, some users might just click through and ignore it. If...
Anyway I'm missing something. ``` if (static_cast(info->version) >= "0.3.44") ``` We get `info->version`, but the other string where does it come from? Is it hardcoded in Easyeffects? In any case,...
> Yes. So for a reliable comparison you need to extract numbers from version strings with regular expressions, then convert them to integer and compare. > I think this situation...