Alexis Aubry

Results 25 comments of Alexis Aubry

This message is shown because Foundation requires that libcurl has a version 3 ABI, but libcurl built from source has a version 4 ABI. This shouldn't be a problem because...

@matthijs2704 Maybe we could add this solution directly into `CurlUpdater`?

@JohnSundell That sounds like a great solution 👍 I think it's important to let the user choose the most appropriate tool for its needs. Plus that would not complicate Marathon...

One solution could be to create a small daemon that uses the Kernel Queues API to listen to file changes in the background. 🌎 From the [Documentation](https://developer.apple.com/library/content/documentation/Darwin/Conceptual/FSEvents_ProgGuide/KernelQueues/KernelQueues.html#//apple_ref/doc/uid/TP40005289-CH5-SW2): > The kernel...

If you use the `BLTNPageItem`, you can access the `image` property and change the image from there.

Hi there, what version are you using? Does the issue reproduce with `5.0.0-rc.2`?

I cannot reproduce the issue. If you could provide more details about how you present the bulletin it would be really helpful!

@rdunlocked18 can you please share: - if you use the Objective-C or Swift version - what version of iOS you can reproduce this on - a code sample that reproduces...

@rdunlocked18 Ah okay - so the issue here is that you don’t keep a reference to the bulletin manager. The object gets deallocated when the table view delegate method returns....

You can have an optional variable on the class that’s presenting it: ```swift var bulletinManager: BLTNManager? ``` and set it in did tap table view cell after you create it:...