macOS: move instance update info to third row

This commit is contained in:
Peter Steinberger
2025-12-18 09:36:07 +01:00
parent fceab511b3
commit 24009ed00f
3 changed files with 103 additions and 34 deletions

View File

@@ -31,7 +31,11 @@ enum DeviceModelCatalog {
return DevicePresentation(title: title, symbol: symbol)
}
static func symbol(deviceFamily familyRaw: String, modelIdentifier modelIdentifierRaw: String, friendlyName: String?) -> String? {
static func symbol(
deviceFamily familyRaw: String,
modelIdentifier modelIdentifierRaw: String,
friendlyName: String?) -> String?
{
let family = familyRaw.trimmingCharacters(in: .whitespacesAndNewlines)
let modelIdentifier = modelIdentifierRaw.trimmingCharacters(in: .whitespacesAndNewlines)
@@ -80,7 +84,7 @@ enum DeviceModelCatalog {
case "mac":
return "laptopcomputer"
case "android":
return "logo.android"
return "android"
case "linux":
return "cpu"
default: