Release v1.23.0 (#31)
* Rename cmuxterm to cmux across entire codebase - Rename GitHub repos: manaflow-ai/cmuxterm -> manaflow-ai/cmux, manaflow-ai/homebrew-cmuxterm -> manaflow-ai/homebrew-cmux - Rename bundle IDs: com.cmuxterm.app -> com.cmux.app - Rename CLI: CLI/cmuxterm.swift -> CLI/cmux.swift - Rename homebrew submodule: homebrew-cmuxterm -> homebrew-cmux - Update all socket paths: /tmp/cmuxterm*.sock -> /tmp/cmux*.sock - Update all GitHub URLs, DMG names, Sparkle URLs - Update all source files, scripts, tests, docs, CI workflows * Bump version to 1.23.0
This commit is contained in:
parent
9ba1d02b2b
commit
9817d131f8
70 changed files with 466 additions and 450 deletions
|
|
@ -4,7 +4,7 @@ import AppKit
|
|||
final class UpdateLogStore {
|
||||
static let shared = UpdateLogStore()
|
||||
|
||||
private let queue = DispatchQueue(label: "cmuxterm.update.log")
|
||||
private let queue = DispatchQueue(label: "cmux.update.log")
|
||||
private var entries: [String] = []
|
||||
private let maxEntries = 200
|
||||
private let maxFileSize: UInt64 = 256 * 1024 // 256 KB
|
||||
|
|
@ -16,7 +16,7 @@ final class UpdateLogStore {
|
|||
formatter.formatOptions = [.withInternetDateTime, .withFractionalSeconds]
|
||||
let logsDir = FileManager.default.urls(for: .libraryDirectory, in: .userDomainMask).first
|
||||
?? FileManager.default.temporaryDirectory
|
||||
logURL = logsDir.appendingPathComponent("Logs/cmuxterm-update.log")
|
||||
logURL = logsDir.appendingPathComponent("Logs/cmux-update.log")
|
||||
ensureLogFile()
|
||||
}
|
||||
|
||||
|
|
@ -84,7 +84,7 @@ final class UpdateLogStore {
|
|||
final class FocusLogStore {
|
||||
static let shared = FocusLogStore()
|
||||
|
||||
private let queue = DispatchQueue(label: "cmuxterm.focus.log")
|
||||
private let queue = DispatchQueue(label: "cmux.focus.log")
|
||||
private var entries: [String] = []
|
||||
private let maxEntries = 400
|
||||
private let maxFileSize: UInt64 = 256 * 1024 // 256 KB
|
||||
|
|
@ -96,7 +96,7 @@ final class FocusLogStore {
|
|||
formatter.formatOptions = [.withInternetDateTime, .withFractionalSeconds]
|
||||
let logsDir = FileManager.default.urls(for: .libraryDirectory, in: .userDomainMask).first
|
||||
?? FileManager.default.temporaryDirectory
|
||||
logURL = logsDir.appendingPathComponent("Logs/cmuxterm-focus.log")
|
||||
logURL = logsDir.appendingPathComponent("Logs/cmux-focus.log")
|
||||
ensureLogFile()
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue