Brandon
Brandon
The code (that I've contributed) is pretty gnarly in its current form (hackathon type of stuff). But we'd love for people to offer comments / criticism and code if they'd...
@Lukasa, thanks for pointing that out! @FredericJacobs, sounds good and understood. Hopefully it can make its way into the Insecure API in the future. Thanks for the quick responses!
I had completely overlooked _CryptoExtras. Maybe if / when the Insecure ChaCha20 Counter extension gets implemented, it could be tucked away in _CryptoExtras with a not-so-public API and all of...
Hey @Lukasa, I followed your advice, did some digging, and found the BoringSSL function required to support this change. I implemented a rough PR #169 that I'd appreciate your feedback...
We had a retain cycle between our MPLEX Multiplexer and its backing `Connection`, preventing `Connection`s from being deallocated (this has been addressed in https://github.com/swift-libp2p/swift-libp2p-mplex/pull/3 and #18). The same test as...
Hey @minchopm! Thanks for putting this request together. I agree on multiple fronts here, swift-libp2p's current functionality is fairly limited, and that's partly due to missing key transport packages like...
Hey, you can fake light/dark mode support using this theme in the meantime... ``` swift ChatTheme( colors: .init( grayStatus: .secondary, inputLightContextBackground: .primary.opacity(0.1), // Send / Textfield background mainBackground: Color(UIColor.systemBackground), //...
Hey @fred-bowker, you could set the `ChatTheme`s `mainBG` to `.clear` and place an `Image` in the `ChatView`s `.background()` modifier. ``` swift ChatView( ... ) .chatTheme(colors: .init(mainBG: .clear)) .background { AsyncImage(url:...
Hey @fred-bowker, I'm not by my computer at the moment, so I don't know the correct syntax but you could prevent the squishing of the Image by either placing the...
@fred-bowker, congrats on merging this in #157. I noticed a couple small things that you might want to fix: - The reply view uses the themes background color so setting...