From d0737274baa3f58b8501e4b9f5c8338c3f7cbf7f Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 11 Jul 2024 14:37:26 -0500 Subject: [PATCH 1/2] Only show the last tag element of a nested tag as the title --- VinOutlineKit/Sources/VinOutlineKit/DocumentContainer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VinOutlineKit/Sources/VinOutlineKit/DocumentContainer.swift b/VinOutlineKit/Sources/VinOutlineKit/DocumentContainer.swift index bc7426ce..e53c9c82 100644 --- a/VinOutlineKit/Sources/VinOutlineKit/DocumentContainer.swift +++ b/VinOutlineKit/Sources/VinOutlineKit/DocumentContainer.swift @@ -48,7 +48,7 @@ public extension Array where Element == DocumentContainer { } var title: String { - ListFormatter.localizedString(byJoining: self.compactMap({ $0.name }).sorted()) + ListFormatter.localizedString(byJoining: self.compactMap({ $0.partialName }).sorted()) } } From 6276a7983f48b583f353c4f98a95a4b15e5e1752 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 11 Jul 2024 14:42:36 -0500 Subject: [PATCH 2/2] Bump build and version number --- xcconfig/Zavala_target_common.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xcconfig/Zavala_target_common.xcconfig b/xcconfig/Zavala_target_common.xcconfig index d9c8fab9..3d560a31 100644 --- a/xcconfig/Zavala_target_common.xcconfig +++ b/xcconfig/Zavala_target_common.xcconfig @@ -1,3 +1,3 @@ -MARKETING_VERSION = 2.7 -CURRENT_PROJECT_VERSION = 109 +MARKETING_VERSION = 2.7.1 +CURRENT_PROJECT_VERSION = 110 SWIFT_OBJC_BRIDGING_HEADER = AppKitPlugin/BridgingHeader.h