Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: updates for new version release #19

Merged
merged 1 commit into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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