macos: increment restorable state version

This commit is contained in:
Mitchell Hashimoto
2023-12-26 14:45:39 -08:00
parent 98041940f0
commit 2aa7f12417

View File

@ -4,7 +4,7 @@ import Cocoa
class TerminalRestorableState: Codable {
static let selfKey = "state"
static let versionKey = "version"
static let version: Int = 1
static let version: Int = 2
let focusedSurface: String?
let surfaceTree: Ghostty.SplitNode?