Malcolm Hall
Malcolm Hall
Hi orta, hope you had a nice time in SF! After doing a few hours research into getting my pod lib to work with a built-in git submodule it appears...
Fixed heading tags, now it's actually readable ;-)
Because un-pausing the fetched datasource reloads the table the selection is lost so there is no deselect animation. There are a few options to fix it: 1. Don't pause the...
Just thought I'd share an idea that if you used `UIViewControllerRepresentable` instead of `UIViewRepresentable` you could handle disappearing without having to swizzle and you wouldn't need to search for nearest...
I noticed a `NFetchRequest` object is leaked here: https://github.com/AlanQuatermain/AQUI/blob/e1ced4a69915556a9af4c15791bb83eccc33e5b8/Sources/AQUI/MutableFetchRequest.swift#L72 Which will happen every time a `View` containing this property wrapper is re-init.
Fixed syntax mistakes including: Using `var` instead of `let`. Using `@Binding` instead of `let` when only read is required. Using `Task.detached` to update main actor state instead of `Task`. Happy...
Hi Dave, sorry to let you know I noticed a leak in your `Fetch` DynamicProperty. Every time a View is re-init that contains `@Fetch` a new `FetchObserver` object is init...
https://github.com/thomergil/opnsense-ipsec-vpn?tab=readme-ov-file#create-ipsec-vpn-configure-mobile-clients Provide a DNS server list to clients option has moved somewhere and the DNS list has moved to VPN: IPsec: Mobile & Advanced Settings, attr tab, DNS
When `Date.FormatStyle` is init with nils for date and time styles, an empty string is not returned like the note in the code comment below states: https://github.com/swiftlang/swift-foundation/blob/94a9456634323b3435c5eb6d83e9206359a7b2d0/Sources/FoundationInternationalization/Formatting/Date/DateFormatStyle.swift#L262-L263 *Example:* ``` let...