Rename app to cmuxterm

This commit is contained in:
Lawrence Chen 2026-01-28 02:38:24 -08:00
parent 6d3bbb1577
commit 3877dc2d98
20 changed files with 97 additions and 94 deletions

View file

@ -216,13 +216,13 @@ class UpdateViewModel: ObservableObject {
if let networkError = networkError(from: nsError) {
switch networkError.code {
case NSURLErrorNotConnectedToInternet:
return "cmux cant reach the update server. Check your internet connection and try again."
return "cmuxterm cant reach the update server. Check your internet connection and try again."
case NSURLErrorTimedOut:
return "The update server took too long to respond. Try again in a moment."
case NSURLErrorCannotFindHost:
return "The update server cant be found. Check your connection or try again later."
case NSURLErrorCannotConnectToHost:
return "cmux couldnt connect to the update server. Check your connection or try again later."
return "cmuxterm couldnt connect to the update server. Check your connection or try again later."
case NSURLErrorNetworkConnectionLost:
return "The network connection was lost while checking for updates. Try again."
case NSURLErrorSecureConnectionFailed,
@ -238,7 +238,7 @@ class UpdateViewModel: ObservableObject {
if nsError.domain == SUSparkleErrorDomain {
switch nsError.code {
case 2001:
return "cmux couldnt download the update feed. Check your connection and try again."
return "cmuxterm couldnt download the update feed. Check your connection and try again."
case 1000, 1002:
return "The update feed could not be read. Please try again later."
case 4:
@ -248,7 +248,7 @@ class UpdateViewModel: ObservableObject {
case 1, 2, 3001, 3002:
return "The updates signature could not be verified. Please try again later."
case 1003, 1005:
return "Move cmux into Applications and relaunch to enable updates."
return "Move cmuxterm into Applications and relaunch to enable updates."
default:
break
}
@ -437,7 +437,7 @@ enum UpdateState: Equatable {
if let semver = Self.extractSemanticVersion(from: version) {
let tag = semver.hasPrefix("v") ? semver : "v\(semver)"
if let url = URL(string: "https://github.com/manaflow-ai/GhosttyTabs/releases/tag/\(tag)") {
if let url = URL(string: "https://github.com/manaflow-ai/cmuxterm/releases/tag/\(tag)") {
self = .tagged(url)
return
}
@ -447,7 +447,7 @@ enum UpdateState: Equatable {
return nil
}
if let url = URL(string: "https://github.com/manaflow-ai/GhosttyTabs/commit/\(newHash)") {
if let url = URL(string: "https://github.com/manaflow-ai/cmuxterm/commit/\(newHash)") {
self = .commit(url)
} else {
return nil