Target to macOS 13.0

This commit is contained in:
KrishKrosh
2025-07-26 21:48:33 -04:00
parent a65bb1e03d
commit fbc780ef62
4 changed files with 11 additions and 8 deletions
+1 -1
View File
@@ -287,7 +287,7 @@ jobs:
3. Run the app and follow the setup instructions
## Requirements
- macOS 13.0 or later
- macOS 13.0 or later (Ventura or newer)
- MacBook with Force Touch trackpad (2015 or newer MacBook Pro, 2016 or newer MacBook)
## Usage
+1 -1
View File
@@ -22,7 +22,7 @@ The key insight is that trackpad pressure events are only generated when there's
## Requirements
- **macOS 13.0+** (for Open Multi-Touch Support library compatibility)
- **macOS 13.0+** (Ventura or later)
- **MacBook with Force Touch trackpad** (2015 or newer MacBook Pro, 2016 or newer MacBook)
- **App Sandbox disabled** (required for low-level trackpad access)
- **Xcode 16.0+** and **Swift 6.0+** (for development)
+4 -4
View File
@@ -254,7 +254,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 13.5;
MACOSX_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
@@ -313,7 +313,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 13.5;
MACOSX_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = NO;
@@ -342,7 +342,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 14.6;
MACOSX_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 1.0;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.krishkrosh.trackweight;
@@ -373,7 +373,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 14.6;
MACOSX_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 1.0;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = com.krishkrosh.trackweight;
+5 -2
View File
@@ -62,8 +62,11 @@ struct HomeView: View {
.padding(.vertical, 20)
.background(
RoundedRectangle(cornerRadius: 15)
.fill(Color.orange.opacity(0.05))
.stroke(Color.orange.opacity(0.2), lineWidth: 1)
.foregroundColor(Color.orange.opacity(0.05))
.overlay(
RoundedRectangle(cornerRadius: 15)
.stroke(Color.orange.opacity(0.2), lineWidth: 1)
)
)
.frame(maxWidth: 500)
}