Skip to content

Commit

Permalink
update for new version release (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzchut authored Dec 27, 2023
1 parent 7f4fb62 commit b324bbf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Logger.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 53;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -1052,7 +1052,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 1.0.3;
MARKETING_VERSION = 1.0.4;
PRODUCT_BUNDLE_IDENTIFIER = com.applicaster.logger;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -1082,7 +1082,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 1.0.3;
MARKETING_VERSION = 1.0.4;
PRODUCT_BUNDLE_IDENTIFIER = com.applicaster.logger;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
6 changes: 3 additions & 3 deletions Logger/Extensions/List+Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
// Created by Anton Kononenko on 9/21/21.
//

import Introspect
import SwiftUIIntrospect
import SwiftUI

extension List {
/// List on macOS uses an opaque background with no option for
/// removing/changing it. listRowBackground() doesn't work either.
/// This workaround works because List is backed by NSTableView.
func setBackgroundColor(color: NSColor) -> some View {
return introspectTableView { tableView in
return introspect(.table, on: .macOS(.v12, .v13, .v14)) { tableView in
tableView.backgroundColor = color
tableView.enclosingScrollView!.drawsBackground = false
tableView.enclosingScrollView?.drawsBackground = false
}
}
}
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Uncomment the next line to define a global platform for your project
platform :macos, '11.0'
platform :macos, '13.0'

target 'Logger' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'Introspect'
pod 'SwiftUIIntrospect', '~> 1.1.1'

target 'LoggerTests' do
inherit! :search_paths
Expand Down
10 changes: 5 additions & 5 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
PODS:
- Introspect (0.12.0)
- SwiftUIIntrospect (1.1.1)

DEPENDENCIES:
- Introspect
- SwiftUIIntrospect (~> 1.1.1)

SPEC REPOS:
trunk:
- Introspect
- SwiftUIIntrospect

SPEC CHECKSUMS:
Introspect: b66b675de8a85d9ef832f3a710d8e3c7db186884
SwiftUIIntrospect: db5290a3492424eb4afcab77cebcd4595de3bd71

PODFILE CHECKSUM: 391f7779f320f1a34e93eb0cf2f2d1edc08a2289
PODFILE CHECKSUM: 307485bc7f4c91f5dd3299eca5a5c51494fb13ef

COCOAPODS: 1.11.2

0 comments on commit b324bbf

Please sign in to comment.