Martin Dufort
Martin Dufort
+1 for this. In some weird cases, our app would crash on launch without allowing time for the Sentry SDK to report the bug. When the user restarts, then same...
Hey @philipphofmann, You are totally right. After investigation on our side, we found the boot crash was occuring **before** the Sentry SDK was initialized. 😵💫. We changed our initialization sequence...
I'm starting to think that this framework and the associated Kite Compositor app is close to a "near death experience". We do not get any responses or feedback from the...
I also would be interested in a macOS version of this library. Anyone know if a forked version for macOS is underway? Thanks
Thanks for that. Let me see how that goes. FYI: Just discovered that WKWebView class on macOS undertands commands issued by the NSFontManager and pretty much does what you are...
I've created a fork and started the port. Unfortunately this is not a high priority for now so it's moving slowly. But it's on the radar. On Fri, Feb 8,...
Looks like the switch from 6.0.2 to 6.0.3 to `.json` files for languages actually removed the `.tiny` specification which is used by the `.twitter` flavor. There is no `tiny` specifications...
I setup the `y-range` to always start at 0 and now all my values are properly displayed. Also I noticed a little clipping when the value goes from zero to...
Thanks for the explanation. Will change my code to use `DSFSparklineLineGraphView` instead. As for the clipping, I will try to create a sample project. However comparing your screenshot and mine,...
This is my init code. I"ve added a border around the graph like you did: ```swift self.activitySpark.wantsLayer = true self.activityDataSource = DSFSparkline.DataSource(windowSize: 30, range: 0.0...2.0) self.activityDataSource.zeroLineValue = 0.0 self.activitySpark.dataSource =...