Results 72 comments of Семён Марьясин

Yes, I do want a fully static build. But the new approach with `smth_STATIC` constants implies that one should provide separate static flags for each library. Since we already know...

Hello! Looks like the fix is not required for the development branch, because it already does not call `destroyAllWindows()`. So the problem should not happen on development branch.

Yes, if there are plans for a new release then it should be enough.

Yes, this is not required anymore, because in new version there is no call to `destroyAllWindows`. Thank you!

The patch results in an error when trying to login: Uncaught TypeError: this.log is not a function Because the log function is declared on iCloudStore but not on iCloudAuthenticationStore.

At least something like an option to convert `float` to `int` dropping the remainder. Then we could at least mock `mynumber.toFixed(2)` with `(mynumber*100 | toInteger) / 100`.

Looks like Apple have changed their APIs and the API used by ipatool does not work anymore?..

Looks like this happens because `kstool` somehow mixes `MCELFStreamer` and `MCSectionMachO`. `MCELFStreamer::ChangeSection` accepts a generic `MCSection` and casts it to `MCSectionELF`; but somehow it is given `MCSectionMachO` which should not...

Using the version with this PR applied every day for more than 3 months, works fine.

Got this issue with `aiohttp.GunicornUVLoopWebWorker` after updating `uvloop` to `0.22.1`. Note that `uvloop==0.21.0` does work properly, and `uvloop==0.22.1` does not. For now added the following to my `requirements.txt`: `uvloop!=0.22.1` — ...