|
|
@@ -2143,7 +2143,7 @@ final class DashboardView: NSView, NSTextFieldDelegate, NSSharingServicePickerDe
|
|
2143
|
2143
|
|
|
2144
|
2144
|
private func installAssistantBubble(text: String, jobs: [JobListing]?, into host: NSView) {
|
|
2145
|
2145
|
let avatar = makeAssistantAvatarView()
|
|
2146
|
|
- let nameLabel = NSTextField(labelWithString: "AI Job Finder")
|
|
|
2146
|
+ let nameLabel = NSTextField(labelWithString: AppMarketingLinks.appDisplayName)
|
|
2147
|
2147
|
nameLabel.font = .systemFont(ofSize: 11, weight: .semibold)
|
|
2148
|
2148
|
nameLabel.textColor = Theme.secondaryText
|
|
2149
|
2149
|
nameLabel.alignment = .left
|
|
|
@@ -2240,7 +2240,7 @@ final class DashboardView: NSView, NSTextFieldDelegate, NSSharingServicePickerDe
|
|
2240
|
2240
|
let icon = NSImageView()
|
|
2241
|
2241
|
icon.translatesAutoresizingMaskIntoConstraints = false
|
|
2242
|
2242
|
icon.symbolConfiguration = NSImage.SymbolConfiguration(pointSize: 15, weight: .semibold)
|
|
2243
|
|
- icon.image = NSImage(systemSymbolName: "sparkles", accessibilityDescription: "AI Job Finder")
|
|
|
2243
|
+ icon.image = NSImage(systemSymbolName: "sparkles", accessibilityDescription: AppMarketingLinks.appDisplayName)
|
|
2244
|
2244
|
icon.contentTintColor = Theme.brandBlue
|
|
2245
|
2245
|
|
|
2246
|
2246
|
view.addSubview(icon)
|
|
|
@@ -2362,12 +2362,11 @@ final class DashboardView: NSView, NSTextFieldDelegate, NSSharingServicePickerDe
|
|
2362
|
2362
|
$0.removeFromSuperview()
|
|
2363
|
2363
|
}
|
|
2364
|
2364
|
|
|
2365
|
|
- let brand = NSTextField(labelWithString: "Indeed AI\nJob Finder")
|
|
|
2365
|
+ let brand = NSTextField(labelWithString: AppMarketingLinks.appDisplayName)
|
|
2366
|
2366
|
brand.font = .systemFont(ofSize: 18, weight: .bold)
|
|
2367
|
2367
|
brand.textColor = Theme.brandBlue
|
|
2368
|
2368
|
brand.alignment = .left
|
|
2369
|
2369
|
brand.maximumNumberOfLines = 2
|
|
2370
|
|
- // Tight multiline height in the sidebar stack (zero width makes intrinsic height unreliable).
|
|
2371
|
2370
|
brand.preferredMaxLayoutWidth = 194
|
|
2372
|
2371
|
sidebar.addArrangedSubview(brand)
|
|
2373
|
2372
|
sidebar.setCustomSpacing(10, after: brand)
|