sryze

Results 61 comments of sryze

I signed it!

It's not cool to do breaking changes like this in a patch release.

+1, I've got the same error, this fixed it in my case as well.

What's the error? I guess that you don't have the Visual C++ runtime 14.0 installed on your system: https://www.microsoft.com/en-us/download/details.aspx?id=48145 Other than that, I'm not sure what else could fail. It...

I'm having the same problem here, see this screen shot for example (taken on iPad 2 in portrait orientation, image size is 148x198): ![simulator screen shot 12 dec 2016 11...

After commenting out these two lines in `MWZoomingScrollView` it started working: ```objective-c self.contentOffset = CGPointMake((boundsSize.width - imageSize.width * self.zoomScale) / 2.0, (boundsSize.height - imageSize.height * self.zoomScale) / 2.0); ``` I...

Same issue on macOS, it works for some time after startup but then goes back to the default behavior, very strange

Adding `set PYTHONNOUSERSITE=1` right before the `python.exe` line in `C:\Program Files\Amazon\AWSSAMCLI\bin\sam.cmd` fixed it for me. ``` set PYTHONNOUSERSITE=1 "%~dp0/../runtime/python.exe" -m samcli %* ```