Rename app from oAI to Confab

"oAI" reads as easily confused with OpenAI, both visually and in
casual conversation. Renamed to "Confab" throughout: Xcode
target/scheme/bundle ID (com.oai.Confab), Info.plist and Help Book
identity, all user-facing UI text, internal Log subsystem and color
identifiers, localization catalogs (6 languages, including a proper
reworded/retranslated Intel-deprecation notice), Help Book HTML
content, and docs (README/DEVELOPMENT/PRIVACY/SECURITY).

Deliberately cosmetic-only: the on-disk data folder
(~/Library/Application Support/oAI/), database/backup filenames,
Keychain service identifiers, and EncryptionService's key-derivation
inputs are all left untouched so existing conversations, settings,
and stored API keys survive the update with zero migration and no
re-entering credentials. Verified live: a real signed build
successfully decrypted a stored API key and loaded an existing
conversation database after the bundle ID change.

Also includes a small already-completed, previously uncommitted
model-release-date feature (ModelInfo/OpenRouterModels/
OpenRouterProvider/ModelInfoView) that happened to share several
files with this rename.

Gitignored on this branch and updated on disk but not part of this
commit: CLAUDE.md, RELEASE_NOTES.md, and the build*.sh scripts.
This commit is contained in:
2026-08-02 14:58:14 +02:00
parent ae3de3d927
commit 76b58e6fdc
121 changed files with 987 additions and 692 deletions
+15 -15
View File
@@ -1,17 +1,17 @@
//
// MessageRow.swift
// oAI
// Confab
//
// Individual message display
//
// SPDX-License-Identifier: PolyForm-Noncommercial-1.0.0
// Copyright (C) 2026 Rune Olsen
//
// This file is part of oAI.
// This file is part of Confab.
//
// oAI is licensed under the PolyForm Noncommercial License 1.0.0.
// Confab is licensed under the PolyForm Noncommercial License 1.0.0.
// You may use, study, modify, and share it for any noncommercial
// purpose. Commercial use including selling oAI or any part of
// purpose. Commercial use including selling Confab or any part of
// it, standalone or bundled into another product or service
// requires a separate commercial license from the copyright holder.
//
@@ -76,7 +76,7 @@ struct MessageRow: View {
Button(action: toggleStar) {
Image(systemName: isStarred ? "star.fill" : "star")
.font(.system(size: 11))
.foregroundColor(isStarred ? .yellow : .oaiSecondary)
.foregroundColor(isStarred ? .yellow : .confabSecondary)
}
.buttonStyle(.plain)
.transition(.opacity)
@@ -94,7 +94,7 @@ struct MessageRow: View {
.font(.system(size: 11))
}
}
.foregroundColor(showCopied ? .green : .oaiSecondary)
.foregroundColor(showCopied ? .green : .confabSecondary)
}
.buttonStyle(.plain)
.transition(.opacity)
@@ -103,7 +103,7 @@ struct MessageRow: View {
Text(message.timestamp, style: .time)
.font(.caption2)
.foregroundColor(.oaiSecondary)
.foregroundColor(.confabSecondary)
}
// Thinking / reasoning block (collapsible)
@@ -146,7 +146,7 @@ struct MessageRow: View {
.font(.caption)
Text(attachments[index].path)
.font(.caption)
.foregroundColor(.oaiSecondary)
.foregroundColor(.confabSecondary)
}
}
}
@@ -180,7 +180,7 @@ struct MessageRow: View {
}
}
.font(.caption2)
.foregroundColor(.oaiSecondary)
.foregroundColor(.confabSecondary)
}
}
.frame(maxWidth: .infinity, alignment: .leading)
@@ -400,18 +400,18 @@ struct MessageRow: View {
if isErrorMessage {
HStack(alignment: .top, spacing: 8) {
Image(systemName: "exclamationmark.triangle.fill")
.foregroundColor(.oaiError)
.foregroundColor(.confabError)
.font(.system(size: settings.dialogTextSize))
Text(message.content)
.font(.system(size: settings.dialogTextSize))
.foregroundColor(.oaiPrimary)
.foregroundColor(.confabPrimary)
.frame(maxWidth: .infinity, alignment: .leading)
.textSelection(.enabled)
}
} else {
Text(message.content)
.font(.system(size: settings.dialogTextSize))
.foregroundColor(.oaiPrimary)
.foregroundColor(.confabPrimary)
.frame(maxWidth: .infinity, alignment: .leading)
.textSelection(.enabled)
}
@@ -419,7 +419,7 @@ struct MessageRow: View {
// User messages: preserve line breaks as-is (plain text, not markdown)
Text(message.content)
.font(.system(size: settings.dialogTextSize))
.foregroundColor(.oaiPrimary)
.foregroundColor(.confabPrimary)
.lineSpacing(4)
.frame(maxWidth: .infinity, alignment: .leading)
.textSelection(.enabled)
@@ -434,7 +434,7 @@ struct MessageRow: View {
private var messageBorderColor: Color {
if isErrorMessage {
return .oaiError.opacity(0.5)
return .confabError.opacity(0.5)
}
return Color.messageColor(for: message.role).opacity(0.3)
}
@@ -571,5 +571,5 @@ struct GeneratedImagesView: View {
MessageRow(message: Message.mockSystem)
}
.padding()
.background(Color.oaiBackground)
.background(Color.confabBackground)
}