Cal Stephens

Results 16 issues of Cal Stephens

Running `git-of-theseus-stack-plot cohorts.json` fails on the public release of macOS Mojave, running Python 3.7. On the other hand, `git-of-theseus-survival-plot survival.json` works just fine. I'm getting a traceback with a `TypeError`:...

When I was experimenting this morning, I typed up this sample class: ```swift class InterfaceController: WKInterfaceController { @IBOutlet weak var activityRingInterfaceScene: WKInterfaceSKScene! var activityRingScene = ActivityRingScene() override func willActivate() {...

#### Summary This PR proposes a new rule to prefer simplified generic extension syntax, using bracket syntax or sugared type syntax for applicable standard library types, instead of generic type...

#### Summary This PR proposes a new rule to prefer the shorthand `if let` optional unwrapping syntax added in Swift 5.7: > Omit the right-hand side of the expression when...

#### Summary This PR proposes a rule to prefer opaque generic parameter syntax (using `some`) over the more-verbose named generic parameter syntax where equivalent. ```swift // WRONG func spaceshipDashboard( warpDrive:...

This PR fixes an issue where `AnimationKeypath`s in a `SolidLayer` could be incorrect. For this background shape, the keypath is supposed to be `Accent.Color` but the Core Animation rendering engine...

This PR fixes two issues: 1. Fixes #2269 2. Fixes #2228 For #2269, we were failing to parse the animation. It's missing some fields that iOS requires, but that web...

This PR fixes an issue where a Repeater could be displayed incorrectly (just once, instead of repeating) due to an issue with how the parent group was being set up....

This PR marks `DotLottieCache` as `Sendable`, which is required to use the SwiftUI `LottieView` with targeted concurrency checking enabled. Fixes #2235. This is the same approach used for `DefaultAnimationCache`: https://github.com/airbnb/lottie-ios/blob/master/Sources/Public/AnimationCache/DefaultAnimationCache.swift#L67

## Change summary This PR adds a macOS example app for EpoxyCore. This reflects our usage of EpoxyCore macOS support in Lottie. Before #162, the example app looks like this:...