From 507d4785aa9a41d0874414b2d34ef5fafebbbb31 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Wed, 8 Jun 2022 18:36:24 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Version=205.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PHP Monitor.xcodeproj/project.pbxproj | 8 ++++---- phpmon/Domain/DomainList/Cells/DomainListPhpCell.swift | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/PHP Monitor.xcodeproj/project.pbxproj b/PHP Monitor.xcodeproj/project.pbxproj index 0935573..1060549 100644 --- a/PHP Monitor.xcodeproj/project.pbxproj +++ b/PHP Monitor.xcodeproj/project.pbxproj @@ -1520,7 +1520,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 786; + CURRENT_PROJECT_VERSION = 787; DEBUG = YES; DEVELOPMENT_TEAM = 8M54J5J787; ENABLE_HARDENED_RUNTIME = YES; @@ -1530,7 +1530,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 5.3; + MARKETING_VERSION = 5.3.1; PRODUCT_BUNDLE_IDENTIFIER = com.nicoverbruggen.phpmon; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -1546,7 +1546,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 786; + CURRENT_PROJECT_VERSION = 787; DEBUG = NO; DEVELOPMENT_TEAM = 8M54J5J787; ENABLE_HARDENED_RUNTIME = YES; @@ -1556,7 +1556,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 5.3; + MARKETING_VERSION = 5.3.1; PRODUCT_BUNDLE_IDENTIFIER = com.nicoverbruggen.phpmon; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/phpmon/Domain/DomainList/Cells/DomainListPhpCell.swift b/phpmon/Domain/DomainList/Cells/DomainListPhpCell.swift index c758fec..3734150 100644 --- a/phpmon/Domain/DomainList/Cells/DomainListPhpCell.swift +++ b/phpmon/Domain/DomainList/Cells/DomainListPhpCell.swift @@ -20,6 +20,9 @@ class DomainListPhpCell: NSTableCellView, DomainListCellProtocol { func populateCell(with site: ValetSite) { self.site = site + buttonPhpVersion.isHidden = false + imageViewPhpVersionOK.isHidden = false + buttonPhpVersion.title = " PHP \(site.servingPhpVersion)" imageViewPhpVersionOK.toolTip = nil @@ -33,9 +36,6 @@ class DomainListPhpCell: NSTableCellView, DomainListCellProtocol { imageViewPhpVersionOK.image = NSImage(named: "Checkmark") imageViewPhpVersionOK.toolTip = "domain_list.tooltips.checkmark".localized(site.composerPhp) } - - buttonPhpVersion.isHidden = false - imageViewPhpVersionOK.isHidden = false } func populateCell(with proxy: ValetProxy) {