Jeff Verkoeyen
Jeff Verkoeyen
Ah: so the intent of this issue is to allow the *installation* repo to contain the plist file that configures the server’s behavior. The server would then, on any given...
Reopening assuming the above isn’t what landed.
This also means fewer deploys to the swift server in case we want to tweak behavior :)
The flip side of this is that we should then also re-label an issue as "needs actionability review" if the issue is reopened.
I took at stab at this, first by attempting to add a button to the context menu with a keyboard shortcut here: https://github.com/mierau/hotline/blob/93841e378308f959566e1411a7cba6a2602db2e8/Hotline/macOS/TrackerView.swift#L70-L89 like so: ```swift Button { connect(to: item)...
Also I found https://steipete.com/posts/fixing-keyboardshortcut-in-swiftui/ which seemed relevant at first but likely isn't :)
Adding ```swift Button("Connect") { print("Foo") } .keyboardShortcut(.downArrow, modifiers: .command) ``` to the server command menu group works as expected, but now I'm not sure how to wire this up to...
Got it working. PR inbound!
On run I get the following crash too: "In order to use CloudKit, your process must have a com.apple.developer.icloud-services entitlement. The value of this entitlement must be an array that...
Ah just removing the identifier got me running! ```diff diff --git a/Hotline/Hotline.entitlements b/Hotline/Hotline.entitlements index e15d27d..0ac3dd4 100644 --- a/Hotline/Hotline.entitlements +++ b/Hotline/Hotline.entitlements @@ -7,9 +7,7 @@ com.apple.developer.aps-environment development com.apple.developer.icloud-container-identifiers - - iCloud.co.goodmake.hotline...