Andreas Ganske

Results 18 issues of Andreas Ganske

Currently, hiding an app is implemented by setting the `rowId` to the negative number, so it can be reversed later by again multiplying it by `-1`. However, this seems to...

Migrates the code to swift 4 and updates project settings to fix all warnings.

When having a protocol define inheritance from `NSObjectProtocol` like this: ```swift protocol TestProtocol: NSObjectProtocol { … } ``` Cuckoo generates: ```swift class MockTestProtocol: TestProtocol, Cuckoo.ProtocolMock { … } ``` which...

enhancement

Xcode has build identifiers that identify a version uniquely. When using `xcodes list` the following Xcode build identifiers, which are rendered in paranthesis (e.g. `14A30`) are available: ```sh 1.0 (7B85)...

When using `.async()` with a cancelled promise, the continuation was never completed, because the error was ignored (default catch policy ignores cancellation). This fixes it. I also already bumped the...

This fixes two semantic issues: And brings two documentation comments in sync with the code.

This ignores touches outside of the `RSColorPickerView` when it is cropped to a circle.

Any plans on supporting Apple Silicon (M1 currently) natively (meaning not relying on Rosetta 2 emulating x86)? The only discussion I found was #1333 from @tkreind and it was closed...

We saw some issues when using Swift-JWT with the `ES512` signer, which uses the BlueECC crypto underneath. The issue was, that the generated signature is sometimes invalid, producing `r` and...