Max
Max
Still seeing this issue as well. Looking in the plist file I see that xcode is outputting a `FailureSummaries` block for the entire test target, including the error message. Other...
I also noticed this issue for the chi-square distribution. ``` Distribution::ChiSquare.q_chi2(3, 2000) => 1.0 ```
That doesn't look too bad, but for our app we have 33 different localization files. I like your idea of dynamically generating the output file list. Even if Xcode doesn't...
I don't mind signing and building myself, but it would definitely be awesome if this could be trivially installed through the app store.
I think this also relates to the `dsize` pointer.
Did some more investigating. All of the TGA files used for the GUI and such are compressed with RLE, which Qt5 does not support. However even if I re-encode them...
I managed to get the TGA files loaded using [SOIL](http://www.lonesock.net/soil.html) since it natively supports RLE compressed TGA, but now I'm also running into the same issue with all of the...
I found a way to do this without too much code duplication using a generic custom serializer https://stackoverflow.com/a/69438279/503402
I've changed our build script to `/usr/local/bin/carthage outdated --xcode-warnings || echo "warning: failed to check for outdated Carthage dependencies"` because it should really never fail our build. It would still...
I finally found this issue and... wow, over 3 years old. We're using fastlane on Jenkins and this bug (or something similar) is causing our test results to randomly fluctuate....