Merge pull request #607 from wes-davis/fix/launch-at-login-persistence
fix Mac app Launch at Login
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
- macOS: avoid clearing Launch at Login during app initialization. (#607) — thanks @wes-davis
|
||||||
- macOS: add node bridge heartbeat pings to detect half-open sockets and reconnect cleanly. (#572) — thanks @ngutman
|
- macOS: add node bridge heartbeat pings to detect half-open sockets and reconnect cleanly. (#572) — thanks @ngutman
|
||||||
- Node bridge: harden keepalive + heartbeat handling (TCP keepalive, better disconnects, and keepalive config tests). (#577) — thanks @steipete
|
- Node bridge: harden keepalive + heartbeat handling (TCP keepalive, better disconnects, and keepalive config tests). (#577) — thanks @steipete
|
||||||
- Control UI: improve mobile responsiveness. (#558) — thanks @carlulsoe
|
- Control UI: improve mobile responsiveness. (#558) — thanks @carlulsoe
|
||||||
|
|||||||
@@ -29,7 +29,10 @@ final class AppState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var launchAtLogin: Bool {
|
var launchAtLogin: Bool {
|
||||||
didSet { self.ifNotPreview { Task { AppStateStore.updateLaunchAtLogin(enabled: self.launchAtLogin) } } }
|
didSet {
|
||||||
|
guard !self.isInitializing else { return }
|
||||||
|
self.ifNotPreview { Task { AppStateStore.updateLaunchAtLogin(enabled: self.launchAtLogin) } }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var onboardingSeen: Bool {
|
var onboardingSeen: Bool {
|
||||||
|
|||||||
Reference in New Issue
Block a user