Uplink03

Results 12 comments of Uplink03

I don't see any "File System Watcher" anywhere. The dev tools don't say anything either. This is the only thing I get, all just leaving Atom idle with some Go...

Oh, that's where it was hiding. Thanks. I scrolled that page several times, but missed it each time. And using Control+F isn't an option in settings (that's something for the...

I was trying to debug this, but Android Studio claimed that the bytecode didn't match the source code for CameraKitView, so I've cloned branch _v1.0.0-beta4_, added the _camerakit_ directory to...

When I got this error I was verifying a subscription with `VerifyProduct` instead of `VerifySubscription`, or the other way around. There are two functions and you pretty much have to...

Looks like league/flysystem 2.0 changed its structure, so now this is in here: * **File**: vendor/league/flysystem/src/Local/LocalFilesystemAdapter.php * **Class path**: League\Flysystem\Local\LocalFilesystemAdapter Version 1.x is the one that fixes this error: `composer...

The workaround I have now is: 1. `composer require --dev league/flysystem=^1.1` 2. Edit _vendor/barryvdh/laravel-ide-helper/src/IdeHelperServiceProvider.php_ Remove or comment out this code (search for `Application`, lines 119-121 in mine): ```php if ((int)...

I've taken the liberty to integrate the temp file buffer functionality from EscapeGaufretteExtension into my own fork (**but don't use this** - see next comment): https://github.com/Uplink03/Gaufrette/tree/enhance/escape-gaufrette I didn't take the...

UPDATE: **DON'T USE THIS CODE**. It's introduces an incompatible API change. Just check out what happens in TempFileBuffer's `flush` method: the content is the temp file's filename. Without reviewing the...

_Note: This comment is preliminary. I hope to narrow things down and provide a set up where I can reproduce the issue reliably. This looks like gremlin territory, so no...

CameraKit 1.0 breaks API compatibility with CameraKit 0.13 The example code uses _com.wonderkiln.camerakit.CameraView_ from CameraKit 0.13 which has a `captureImage` that works like that, but in CameraKit 1.0 with _com.camerakit.CameraKitView_...