From 697873c0455a86fe8e9eabfe6030dc679bc183c3 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 2 Oct 2018 08:34:41 -0400 Subject: [PATCH 1/2] Xcode suggested changes --- Tusker.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tusker.xcodeproj/project.pbxproj b/Tusker.xcodeproj/project.pbxproj index b94336f3..b24f4575 100644 --- a/Tusker.xcodeproj/project.pbxproj +++ b/Tusker.xcodeproj/project.pbxproj @@ -1180,7 +1180,7 @@ 04496BD1216252E5001F1B23 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; @@ -1208,7 +1208,7 @@ 04496BD2216252E5001F1B23 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; From 589af9782d6c7cfde13c8d02418c0e977ebedca4 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 2 Oct 2018 08:37:04 -0400 Subject: [PATCH 2/2] Fix timestamps not being displayed for conversation main status --- Tusker/Views/Status/ConversationMainStatusTableViewCell.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Tusker/Views/Status/ConversationMainStatusTableViewCell.swift b/Tusker/Views/Status/ConversationMainStatusTableViewCell.swift index 868e4d26..06db6f9c 100644 --- a/Tusker/Views/Status/ConversationMainStatusTableViewCell.swift +++ b/Tusker/Views/Status/ConversationMainStatusTableViewCell.swift @@ -83,6 +83,7 @@ class ConversationMainStatusTableViewCell: UITableViewCell, PreferencesAdaptive self.avatarURL = nil } } + updateTimestamp() attachmentsView.subviews.forEach { $0.removeFromSuperview() } let attachments = status.attachments.filter({ $0.kind == .image })