fix(macos): expand onboarding window height

This commit is contained in:
Peter Steinberger
2026-01-03 13:31:23 +01:00
parent bb54e60179
commit f11b352089
3 changed files with 4 additions and 5 deletions

View File

@@ -14,8 +14,7 @@
- Telegram: chunk block-stream replies to avoid “message is too long” errors (#124) — thanks @mukhtharcm. - Telegram: chunk block-stream replies to avoid “message is too long” errors (#124) — thanks @mukhtharcm.
- Agent tools: scope the Discord tool to Discord surface runs. - Agent tools: scope the Discord tool to Discord surface runs.
- Agent tools: format verbose tool summaries without brackets, with unique emojis and `tool: detail` style. - Agent tools: format verbose tool summaries without brackets, with unique emojis and `tool: detail` style.
- Thinking: default to low for reasoning-capable models when no /think or config default is set. - macOS onboarding: increase window height so the permissions page fits without scrolling.
- Logging: decouple file log levels from console verbosity; verbose-only details are captured when `logging.level` is debug/trace.
### Docs ### Docs
- Skills: add Sheets/Docs examples to gog skill (#128) — thanks @mbelinky. - Skills: add Sheets/Docs examples to gog skill (#128) — thanks @mbelinky.

View File

@@ -31,7 +31,7 @@ final class OnboardingController {
let hosting = NSHostingController(rootView: OnboardingView()) let hosting = NSHostingController(rootView: OnboardingView())
let window = NSWindow(contentViewController: hosting) let window = NSWindow(contentViewController: hosting)
window.title = UIStrings.welcomeTitle window.title = UIStrings.welcomeTitle
window.setContentSize(NSSize(width: 630, height: 644)) window.setContentSize(NSSize(width: 630, height: 684))
window.styleMask = [.titled, .closable, .fullSizeContentView] window.styleMask = [.titled, .closable, .fullSizeContentView]
window.titlebarAppearsTransparent = true window.titlebarAppearsTransparent = true
window.titleVisibility = .hidden window.titleVisibility = .hidden
@@ -92,7 +92,7 @@ struct OnboardingView: View {
var permissionMonitor: PermissionMonitor var permissionMonitor: PermissionMonitor
let pageWidth: CGFloat = 630 let pageWidth: CGFloat = 630
let contentHeight: CGFloat = 420 let contentHeight: CGFloat = 460
let connectionPageIndex = 1 let connectionPageIndex = 1
let anthropicAuthPageIndex = 2 let anthropicAuthPageIndex = 2
let onboardingChatPageIndex = 8 let onboardingChatPageIndex = 8

View File

@@ -27,7 +27,7 @@ extension OnboardingView {
Spacer(minLength: 0) Spacer(minLength: 0)
self.navigationBar self.navigationBar
} }
.frame(width: self.pageWidth, height: 644) .frame(width: self.pageWidth, height: 684)
.background(Color(NSColor.windowBackgroundColor)) .background(Color(NSColor.windowBackgroundColor))
.onAppear { .onAppear {
self.currentPage = 0 self.currentPage = 0